:root {
  --plum: #7a2c72;
  --grape: #8d3d82;
  --rose: #d8799d;
  --ink: #1f2130;
  --muted: #666b7a;
  --line: #e7e9ef;
  --paper: #ffffff;
  --soft: #f7f4f7;
  --blue: #2e7dff;
  --gold: #d79b1e;
  --shadow: 0 18px 45px rgba(31, 33, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.topbar {
  background: #2c1730;
  color: #fff;
  font-size: 0.86rem;
}

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

.topbar .container {
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar a {
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(231, 233, 239, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 6px;
  color: #38394a;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--plum);
  background: #fbf0f6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  box-shadow: 0 12px 24px rgba(122, 44, 114, 0.2);
}

.btn-secondary {
  color: var(--plum);
  background: #fff;
  border-color: #e6c9dc;
}

.btn-blue {
  color: #fff;
  background: var(--blue);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 710px;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 43%, rgba(255, 255, 255, 0.1) 72%),
    url("../images/generated-hero-image.png") center right / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(650px, 100%);
  padding: 74px 0;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.trust-card,
.card,
.service-card,
.contact-card,
.testimonial,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-card {
  padding: 22px;
  box-shadow: var(--shadow);
}

.trust-card strong {
  display: block;
  color: var(--plum);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head .lead {
  margin-bottom: 0;
}

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

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.checks li {
  position: relative;
  padding-left: 30px;
  color: #373948;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px #e2bad2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  font-weight: 900;
}

.service-card p,
.testimonial p,
.faq-content,
.contact-card p,
.footer p {
  color: var(--muted);
}

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

.process .card {
  padding: 26px;
  counter-increment: step;
}

.process .card::before {
  content: "0" counter(step);
  display: block;
  color: var(--rose);
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 18px;
}

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

.testimonial {
  padding: 24px;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--plum);
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--plum);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-content {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.open .faq-content {
  display: block;
}

.page-hero {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(122, 44, 114, 0.94), rgba(216, 121, 157, 0.88)),
    url("../images/generated-services-image.png") center / cover no-repeat;
  color: #fff;
}

.page-hero .lead,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.contact-card {
  padding: 26px;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  height: 100%;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

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

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

.map-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 244, 247, 0.92), rgba(255, 255, 255, 0.9)),
    url("../images/generated-quality-image.png") center / cover no-repeat;
  border: 1px solid var(--line);
}

.map-box {
  width: min(520px, 100%);
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.cta-band {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(135deg, #2c1730, var(--plum));
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.footer {
  padding: 58px 0 26px;
  background: #17111b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer img {
  width: 190px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

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

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

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

  .nav-links a {
    padding: 13px 14px;
  }

  .trust-row,
  .service-grid,
  .process,
  .testimonial-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.32) 100%),
      url("../images/generated-hero-image.png") center right / cover no-repeat;
  }
}

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

  .topbar .container {
    justify-content: center;
    text-align: center;
    padding: 8px 0;
  }

  .brand img {
    width: 168px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 58px 0 94px;
  }

  .hero-actions,
  .section-actions,
  .cta-band .container,
  .footer-bottom,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .service-grid,
  .process,
  .testimonial-grid,
  .values-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    margin-top: -42px;
  }

  .section {
    padding: 68px 0;
  }

  .image-frame img {
    min-height: 300px;
  }

  .page-hero {
    padding: 64px 0;
  }
}
/* @vn-deploy:1780326784843 */
