 :root {
   --color-ink: #2a1e24;
   --color-ink-soft: #5a4650;
   --color-blush: #f7e9ed;
   --color-rose: #e7c6d1;
   --color-plum: #5a2b3e;
   --color-gold: #c49a61;
   --color-cream: #fffaf7;
   --color-white: #ffffff;
   --shadow-soft: 0 12px 30px rgba(42, 30, 36, 0.08);
   --shadow-card: 0 8px 20px rgba(42, 30, 36, 0.1);
   --radius-sm: 10px;
   --radius-md: 18px;
   --radius-lg: 28px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--color-ink);
   background: var(--color-cream);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.tight {
   padding: 40px 0;
 }
 
 .section.alt {
   background: var(--color-blush);
 }
 
 .section.dark {
   background: var(--color-plum);
   color: var(--color-white);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.14em;
   font-size: 0.72rem;
   color: var(--color-gold);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3,
 h4 {
   font-family: "Playfair Display", "Times New Roman", serif;
   font-weight: 600;
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   margin-bottom: 16px;
 }
 
 h2 {
   font-size: clamp(1.8rem, 3vw, 2.4rem);
   margin-bottom: 18px;
 }
 
 h3 {
   font-size: 1.4rem;
   margin-bottom: 10px;
 }
 
 p {
   margin-bottom: 14px;
   color: var(--color-ink-soft);
 }
 
 .hero {
   padding: 80px 0 70px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--color-white);
   border-radius: var(--radius-lg);
   padding: 28px;
   box-shadow: var(--shadow-soft);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-highlights {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .highlight {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   background: var(--color-blush);
   padding: 16px;
   border-radius: var(--radius-md);
 }
 
 .highlight img {
   width: 36px;
   height: 36px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   background: var(--color-plum);
   color: var(--color-white);
   border-radius: 999px;
   font-weight: 600;
   border: 2px solid transparent;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .button:hover,
 .button:focus {
   transform: translateY(-1px);
   box-shadow: var(--shadow-card);
 }
 
 .button.secondary {
   background: transparent;
   color: var(--color-plum);
   border-color: var(--color-plum);
 }
 
 .button.ghost {
   background: transparent;
   color: var(--color-ink);
   border-color: transparent;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 40;
   background: var(--color-white);
   box-shadow: 0 4px 14px rgba(42, 30, 36, 0.06);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-family: "Playfair Display", serif;
   font-size: 1.3rem;
   font-weight: 600;
   color: var(--color-plum);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--color-rose);
   border-radius: 999px;
   padding: 10px 16px;
   font-weight: 600;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 10px;
   background: var(--color-white);
   border-radius: var(--radius-md);
   padding: 18px;
   box-shadow: var(--shadow-soft);
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .nav-links a {
   padding: 6px 0;
   font-weight: 500;
 }
 
 .pill {
   display: inline-flex;
   padding: 4px 10px;
   border-radius: 999px;
   background: var(--color-rose);
   color: var(--color-plum);
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--color-white);
   border-radius: var(--radius-md);
   padding: 22px;
   box-shadow: var(--shadow-card);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--color-plum);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature img {
   width: 28px;
   height: 28px;
 }
 
 .quote-panel {
   background: var(--color-plum);
   color: var(--color-white);
   padding: 30px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-soft);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--color-white);
   padding: 18px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-card);
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .stat strong {
   font-size: 1.6rem;
   color: var(--color-plum);
 }
 
 .testimonial {
   background: var(--color-white);
   border-left: 4px solid var(--color-gold);
   padding: 20px 22px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-card);
 }
 
 .testimonial span {
   display: block;
   margin-top: 10px;
   font-weight: 600;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   background: var(--color-cream);
   border: 1px solid var(--color-rose);
   border-radius: var(--radius-md);
   padding: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .card {
   border: 1px solid var(--color-rose);
   box-shadow: none;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--color-white);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-card);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 18px 20px;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 20px 18px;
   display: none;
   color: var(--color-ink-soft);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .faq-item.open .faq-question span {
   transform: rotate(180deg);
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .badge {
   padding: 10px 14px;
   border-radius: 999px;
   border: 1px solid var(--color-rose);
   background: var(--color-white);
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 .footer {
   background: var(--color-ink);
   color: var(--color-white);
   padding: 40px 0 24px;
 }
 
 .footer a {
   color: var(--color-white);
   opacity: 0.9;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer small {
   color: rgba(255, 255, 255, 0.7);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--color-white);
   border-radius: var(--radius-md);
   padding: 18px;
   box-shadow: var(--shadow-card);
   z-index: 60;
   display: none;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(42, 30, 36, 0.35);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 70;
   padding: 20px;
 }
 
 .modal-overlay.show {
   display: flex;
 }
 
 .modal {
   background: var(--color-white);
   border-radius: var(--radius-md);
   padding: 24px;
   max-width: 520px;
   width: 100%;
   box-shadow: var(--shadow-soft);
 }
 
 .modal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   margin-bottom: 10px;
 }
 
 .modal-close {
   border: none;
   background: transparent;
   font-size: 1.4rem;
   cursor: pointer;
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 14px;
 }
 
 .checkbox-row {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-top: 10px;
 }
 
 .contact-info {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .info-block {
   background: var(--color-white);
   border-radius: var(--radius-md);
   padding: 18px;
   box-shadow: var(--shadow-card);
 }
 
 .inline-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   list-style: none;
   padding-left: 0;
 }
 
 .inline-list li {
   margin: 0;
 }
 
 .text-light {
   color: var(--color-blush);
 }
 
 .text-muted-light {
   color: rgba(255, 255, 255, 0.8);
 }
 
 .footer-note {
   margin-top: 18px;
 }
 
 @media (min-width: 768px) {
   .hero-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card,
   .hero-highlights {
     flex: 1;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     gap: 18px;
     padding: 0;
     box-shadow: none;
     background: transparent;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card-grid .card {
     flex: 1 1 calc(33.33% - 20px);
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > * {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(33.33% - 16px);
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison .card {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 
   .cookie-actions,
   .modal-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .inline-list {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 18px;
   }
 }
