 :root {
   --bg: #fff7f2;
   --bg-alt: #f6f1ec;
   --text: #2a2a2a;
   --muted: #5b5b5b;
   --brand: #e46a5f;
   --brand-dark: #c2554b;
   --accent: #3d7a7b;
   --line: #e6ddd6;
   --card: #ffffff;
   --shadow: 0 12px 30px rgba(30, 20, 16, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: #fff;
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 30;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.4px;
 }
 
 .site-nav {
   display: none;
   gap: 18px;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .site-nav a {
   padding: 6px 0;
   border-bottom: 2px solid transparent;
 }
 
 .site-nav a:hover,
 .site-nav a:focus {
   border-bottom-color: var(--brand);
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: #fff;
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
   cursor: pointer;
 }
 
 .mobile-nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: #fff;
   padding: 18px 24px;
   border-top: 1px solid var(--line);
   position: absolute;
   left: 0;
   right: 0;
   top: 100%;
   transform: translateY(-10px);
   opacity: 0;
   pointer-events: none;
   transition: 0.2s ease;
 }
 
 .nav-open .mobile-nav {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .nav-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.3);
   opacity: 0;
   pointer-events: none;
   transition: 0.2s ease;
   z-index: 10;
 }
 
 .nav-open .nav-backdrop {
   opacity: 1;
   pointer-events: auto;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 40px 0 72px;
 }
 
 section {
   padding: 8px 0;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--card);
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #fff1ee;
   color: var(--brand-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   border-radius: 999px;
   padding: 12px 18px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button-primary {
   background: var(--brand);
   color: #fff;
 }
 
 .button-secondary {
   background: #fff;
   border: 1px solid var(--line);
   color: var(--text);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--card);
   border-radius: 20px;
   padding: 22px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .icon-circle {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: #ffe9e5;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .highlight-panel {
   background: var(--accent);
   color: #fff;
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stats-bar {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .stat {
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .quote {
   background: #fff;
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin: 0 0 8px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .service-card {
   background: #fff;
   border-radius: 20px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .process-step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
 }
 
 .faq-question {
   width: 100%;
   border: none;
   background: transparent;
   font-weight: 600;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-answer {
   margin-top: 10px;
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .cta {
   background: #fff;
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .site-footer {
   background: #1f1f1f;
   color: #fff;
   padding: 32px 0 48px;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 40;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 50;
   padding: 18px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--bg-alt);
   padding: 12px 14px;
   border-radius: 12px;
 }
 
 .cookie-toggle button {
   border: 1px solid var(--line);
   background: #fff;
   border-radius: 999px;
   padding: 6px 14px;
   cursor: pointer;
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .info-block {
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
 }
 
 .legal {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 @media (min-width: 768px) {
   .site-nav {
     display: flex;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .mobile-nav {
     display: none;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .stats-bar {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .process {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .process-step {
     flex: 1 1 260px;
   }
 
   .cookie-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-block {
     flex: 1 1 300px;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
