 :root {
   color-scheme: light;
   --bg: #f9f5f2;
   --ink: #2f2a3b;
   --muted: #6b6474;
   --brand: #5b3f78;
   --brand-2: #c782a8;
   --accent: #f0c48a;
   --surface: #ffffff;
   --line: #e7dfda;
   --radius: 18px;
   --shadow: 0 14px 35px rgba(47, 42, 59, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Nunito", "Trebuchet MS", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   position: sticky;
   top: 0;
   z-index: 30;
   border-bottom: 1px solid var(--line);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
   font-size: 1.1rem;
 }
 
 .menu-toggle {
   border: 1px solid var(--line);
   background: var(--surface);
   color: var(--ink);
   padding: 10px 14px;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .site-nav {
   display: none;
   position: fixed;
   inset: 0 0 0 auto;
   width: min(78vw, 320px);
   background: var(--surface);
   padding: 90px 24px 24px;
   box-shadow: var(--shadow);
   flex-direction: column;
   gap: 16px;
   z-index: 35;
 }
 
 .site-nav a {
   font-weight: 600;
 }
 
 .nav-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(47, 42, 59, 0.4);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease;
   z-index: 32;
 }
 
 body.nav-open .site-nav {
   display: flex;
 }
 
 body.nav-open .nav-backdrop {
   opacity: 1;
   pointer-events: auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section-alt {
   background: var(--surface);
 }
 
 .eyebrow {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   background: var(--brand);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   text-align: center;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
 }
 
 .btn-secondary {
   background: transparent;
   border: 1px solid var(--brand);
   color: var(--brand);
 }
 
 .badge {
   background: var(--accent);
   color: #473624;
   padding: 6px 12px;
   border-radius: 999px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 6px;
 }
 
 .grid-cards,
 .feature-list,
 .stats-list,
 .testimonial-list,
 .faq-list,
 .service-list,
 .comparison-list,
 .team-list,
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card,
 .feature,
 .stat-card,
 .testimonial,
 .faq-item,
 .service-card,
 .comparison-card,
 .team-card,
 .info-card {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 20px;
   box-shadow: var(--shadow);
   border: 1px solid rgba(231, 223, 218, 0.7);
 }
 
 .feature {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .icon-badge {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: rgba(91, 63, 120, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .stat-card {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .stat-value {
   font-size: 2rem;
   font-weight: 700;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
   color: var(--ink);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(91, 63, 120, 0.1);
   color: var(--brand);
   font-weight: 600;
 }
 
 .testimonial strong {
   display: block;
   margin-top: 12px;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   border: none;
   background: none;
   padding: 0;
   font-size: 1rem;
   font-weight: 700;
   color: var(--ink);
 }
 
 .faq-answer {
   margin-top: 10px;
   color: var(--muted);
 }
 
 .price {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--brand);
 }
 
 .highlight-panel {
   background: linear-gradient(135deg, rgba(91, 63, 120, 0.12), rgba(199, 130, 168, 0.15));
   padding: 24px;
   border-radius: var(--radius);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer {
   padding: 32px 0 48px;
   border-top: 1px solid var(--line);
   background: var(--surface);
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: var(--surface);
   border-top: 1px solid var(--line);
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 40;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(47, 42, 59, 0.45);
   z-index: 45;
   padding: 20px;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   padding: 24px;
   border-radius: var(--radius);
   max-width: 520px;
   width: 100%;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid var(--line);
 }
 
 .toggle-row:last-child {
   border-bottom: none;
 }
 
 .toggle-btn {
   border: 1px solid var(--line);
   background: var(--surface);
   border-radius: 999px;
   padding: 6px 14px;
   font-weight: 600;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 @media (min-width: 720px) {
   .hero-actions,
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 
   .grid-cards,
   .service-list,
   .comparison-list,
   .testimonial-list,
   .team-list,
   .info-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid-cards > * ,
   .service-list > *,
   .comparison-list > *,
   .testimonial-list > *,
   .team-list > *,
   .info-list > * {
     flex: 1 1 280px;
   }
 
   .feature-list,
   .stats-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-list > *,
   .stats-list > * {
     flex: 1 1 240px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 }
 
 @media (min-width: 900px) {
   .menu-toggle {
     display: none;
   }
 
   .site-nav {
     display: flex;
     position: static;
     flex-direction: row;
     width: auto;
     padding: 0;
     box-shadow: none;
     gap: 20px;
   }
 
   .nav-backdrop {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     padding: 36px;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
