@font-face {
  font-family: "Editorial Sans";
  src: local("Arial");
  font-display: swap;
}

:root {
  --font-heading: "Editorial Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #111827;
  --body: #374151;
  --muted: #6b7280;
  --purple: #3f285b;
  --purple-dark: #160d22;
  --purple-mid: #8664ad;
  --acid: #e4f50f;
  --cream: #fbfaf7;
  --mist: #f8f5fc;
  --line: rgba(63, 40, 91, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--body);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-weight: 800;
}

h1 {
  font-size: clamp(35px, 9vw, 76px);
}

h2 {
  font-size: clamp(28px, 6vw, 54px);
}

h3,
h4 {
  font-size: clamp(20px, 3.5vw, 28px);
}

p,
li,
td,
th,
a,
button,
input,
textarea {
  font-size: 16px;
}

.site-shell {
  background:
    radial-gradient(circle at 10% 0%, rgba(228, 245, 15, 0.14), transparent 27rem),
    radial-gradient(circle at 96% 8%, rgba(134, 100, 173, 0.24), transparent 28rem),
    var(--cream);
}

.container-edit {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--purple-dark);
  background: var(--acid);
  border: 2px solid var(--purple-dark);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--purple);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.desktop-nav {
  display: none !important;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--purple);
}

.header-phone {
  display: none !important;
}

.hamburger {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 49;
  padding: 24px 16px 32px;
  background: rgba(22, 13, 34, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel a {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary,
.btn-secondary,
.btn-phone,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary,
.sticky-call {
  color: #111827 !important;
  background: var(--acid);
  border: 2px solid var(--purple-dark);
  box-shadow: 7px 7px 0 var(--purple-dark);
}

.btn-primary:hover,
.sticky-call:hover {
  color: #111827 !important;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--purple-dark);
}

.btn-secondary,
.btn-phone {
  color: #ffffff !important;
  background: var(--purple);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover,
.btn-phone:hover {
  color: #ffffff !important;
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.mobile-menu-phone {
  margin-top: 16px;
  width: 100%;
  color: #111827 !important;
  background: var(--acid);
}

.hero-section {
  position: relative;
  padding: 32px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  min-height: 560px;
  border-radius: 36px;
}

.hero-copy {
  position: relative;
  padding: clamp(28px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f3edfb 0%, #ffffff 58%, #ece3f8 100%);
  border: 1px solid var(--line);
}

.hero-copy::before {
  content: "01";
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(63, 40, 91, 0.1);
  font-size: clamp(72px, 18vw, 188px);
  line-height: 1;
  font-weight: 900;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--purple-dark);
  background: rgba(228, 245, 15, 0.7);
  border: 1px solid rgba(63, 40, 91, 0.22);
  border-radius: 999px;
  font-weight: 900;
}

.stars {
  margin: 18px 0 12px;
  color: var(--acid);
  -webkit-text-stroke: 1px var(--purple-dark);
  font-size: 24px;
  letter-spacing: 0.16em;
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 24px;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero-cta-text {
  color: var(--purple-dark);
  font-size: 18px;
  font-weight: 900;
}

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

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--purple-dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  clip-path: inset(0 100% 0 0 round 36px);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media.is-visible img,
.image-mask.is-visible img {
  clip-path: inset(0 0 0 0 round 30px);
}

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 260px;
  padding: 18px;
  color: #ffffff;
  background: rgba(22, 13, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.intro-section {
  padding: 28px 0 76px;
}

.intro-card {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  background: var(--purple-dark);
  border-radius: 34px;
  color: #ffffff;
  overflow: hidden;
}

.intro-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% 42%;
  height: 260px;
  background: var(--acid);
  transform: rotate(-9deg);
  opacity: 0.92;
}

.intro-card p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.55;
}

.section {
  padding: 74px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 56px;
  justify-content: center;
  color: var(--purple-dark);
  background: var(--acid);
  border: 1px solid var(--purple-dark);
  border-radius: 999px;
  font-weight: 900;
}

.lede {
  max-width: 720px;
  color: var(--body);
  font-size: 18px;
}

.dark-section {
  color: #ffffff;
  background: var(--purple-dark);
}

.dark-section h2,
.dark-section h3,
.dark-section .lede {
  color: #ffffff;
}

.reviews-wrap {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  padding: 24px;
  min-height: 320px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
}

.review-card .stars {
  margin: 0 0 14px;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.review-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.review-card p {
  color: var(--body);
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.carousel-controls button {
  width: 52px;
  height: 52px;
  color: #111827;
  background: var(--acid);
  border: 1px solid var(--purple-dark);
  border-radius: 999px;
  font-weight: 900;
}

.split-blocks {
  display: grid;
  gap: 24px;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.split-card:nth-child(even) {
  background: var(--mist);
}

.split-text {
  padding: clamp(24px, 4vw, 42px);
}

.split-text p {
  margin-top: 12px;
}

.split-media {
  min-height: 260px;
  background: var(--purple);
}

.split-media img,
.image-mask img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-mask img {
  clip-path: inset(0 100% 0 0 round 30px);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-table {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.service-table table {
  width: 100%;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(63, 40, 91, 0.12);
}

.service-table th {
  color: var(--ink);
  background: rgba(228, 245, 15, 0.38);
  font-weight: 900;
}

.service-table tr:last-child td {
  border-bottom: 0;
}

.area-grid,
.why-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.area-card,
.why-card,
.faq-card,
.cta-panel {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
}

.dark-section .faq-card h3 {
  color: var(--ink);
}

.dark-section .faq-card p {
  color: var(--body);
}

.area-card ul,
.why-card ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--purple-dark);
  background: rgba(228, 245, 15, 0.55);
  border: 1px solid rgba(63, 40, 91, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  top: 8px;
  color: rgba(63, 40, 91, 0.08);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.why-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--purple-dark);
  background: var(--acid);
  border-radius: 18px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.cta-section {
  padding: 76px 0;
  color: #ffffff;
  background: linear-gradient(128deg, var(--purple-dark), var(--purple) 64%, var(--purple-mid));
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-panel h2,
.cta-panel p {
  color: #ffffff;
}

.site-footer {
  padding: 56px 0 92px;
  color: #ffffff;
  background: #0d0715;
}

.site-footer .brand,
.site-footer a,
.site-footer p,
.site-footer li {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  line-height: 1.6;
}

.reveal-line {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-call {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  width: calc(100% - 20px);
  min-height: 58px;
  padding-inline: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .reviews-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .why-grid,
  .area-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex !important;
  }

  .header-phone {
    display: inline-flex !important;
  }

  .hamburger,
  .mobile-panel,
  .sticky-call {
    display: none !important;
  }

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

  .hero-copy,
  .hero-media,
  .hero-media img {
    min-height: 640px;
  }

  .section-head {
    grid-template-columns: 0.3fr 1fr;
    align-items: start;
  }

  .split-card {
    grid-template-columns: 65fr 35fr;
  }

  .split-card:nth-child(even) .split-text {
    order: 2;
  }

  .split-card:nth-child(even) .split-media {
    order: 1;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-panel,
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  .area-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(35px, 12vw, 53px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .brand span:last-child {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-copy,
  .hero-media,
  .hero-media img {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
