:root {
  --ink: #252833;
  --muted: #666b7a;
  --primary: #f3eae8;
  --primary-deep: #d6bdb8;
  --secondary: #a0ace6;
  --secondary-deep: #6575c5;
  --cream: #fbfaf4;
  --green: #dbe7b5;
  --line: #ebe4e1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(37, 40, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

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

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

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.topbar .container,
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a,
.topbar span {
  opacity: 0.92;
}

.topbar .container {
  padding: 8px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid rgba(214, 189, 184, 0.5);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  color: #343844;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--secondary-deep);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  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 {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-deep));
  color: var(--white);
  box-shadow: 0 12px 25px rgba(101, 117, 197, 0.24);
}

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

.section {
  padding: 82px 0;
}

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

.section-tinted {
  background: linear-gradient(180deg, var(--primary), #fbfaf4);
}

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

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

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  max-width: 780px;
}

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

h3 {
  font-size: 1.22rem;
}

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

.lead {
  font-size: 1.08rem;
  max-width: 710px;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #efe8e4;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 244, 0.96) 0%, rgba(251, 250, 244, 0.84) 38%, rgba(251, 250, 244, 0.18) 72%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 690px;
  margin-top: 38px;
}

.stat {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 189, 184, 0.55);
  border-radius: var(--radius);
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
}

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

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

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214, 189, 184, 0.55);
}

.image-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--green), var(--secondary));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 100%;
  box-shadow: 0 10px 30px rgba(37, 40, 51, 0.06);
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 18px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.process-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote {
  background: var(--white);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 24px;
}

.quote strong {
  display: block;
  margin-top: 14px;
}

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

.cta-band {
  background: linear-gradient(135deg, var(--ink), #4d567e);
  color: var(--white);
  padding: 56px 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, var(--primary), #fbfaf4 62%, rgba(160, 172, 230, 0.28));
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.service-row span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--secondary-deep);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-weight: 800;
  color: var(--ink);
}

.contact-card dd {
  margin: 0 0 18px;
  color: var(--muted);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  background: #20232d;
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.85fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: 240px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px;
  border-radius: var(--radius);
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

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

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
  }

  .hero {
    min-height: 600px;
  }

  .hero::before {
    background: rgba(251, 250, 244, 0.9);
  }

  .grid-2,
  .contact-grid,
  .service-list,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .process,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .topbar .container {
    display: none;
  }

  .brand img {
    width: 210px;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.1rem;
  }

  .hero-stats,
  .cards,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    height: 310px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }
}
/* @vn-deploy:1784884085324 */
