:root {
  --brand: #d65a43;
  --brand-dark: #a83f2d;
  --ink: #343133;
  --muted: #6f6a6c;
  --line: #e9e5e2;
  --paper: #fffaf6;
  --soft: #f5f7fa;
  --blue: #2e7dff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(52, 49, 51, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 218px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(214, 90, 67, 0.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #fffaf6 0%, #ffffff 55%, #f6f8fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -140px -180px auto;
  width: 420px;
  height: 420px;
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  transform: rotate(45deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 50px;
  align-items: center;
  min-height: 650px;
  padding: 74px 0;
}

.eyebrow {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy p {
  margin-top: 20px;
  max-width: 620px;
  font-size: 1.06rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.proof-item {
  border-left: 3px solid var(--brand);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
}

.proof-item strong {
  display: block;
  font-size: 1.4rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(310px, calc(100% - 44px));
  padding: 16px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 34px rgba(52, 49, 51, 0.16);
}

.image-badge strong {
  display: block;
  line-height: 1.25;
}

.image-badge span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
}

.section.paper {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 4px #f6d6ce;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(52, 49, 51, 0.06);
}

.card .icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
  background: #fff0ec;
  border-radius: 8px;
  font-weight: 900;
}

.card p {
  margin-top: 10px;
  font-size: 0.96rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.quote p {
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--brand);
  font-style: normal;
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq p {
  margin-top: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: stretch;
}

.contact-box {
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.contact-box p,
.contact-box a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-items {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-items strong {
  display: block;
  color: var(--white);
}

.form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.map {
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  padding: 86px 0;
  background: linear-gradient(120deg, var(--paper), #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #2c292b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 6px;
  padding: 8px;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .nav-actions .btn { display: none; }

  .hero-grid,
  .split,
  .process-grid,
  .contact-panel,
  .section-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 70px;
  }

  .cards,
  .testimonials,
  .faq {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 172px;
  }

  .section {
    padding: 66px 0;
  }

  .hero-proof,
  .cards,
  .testimonials,
  .faq,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* @vn-deploy:1780330336655 */
