 :root {
   --ink: #1d1e22;
   --soft-ink: #3f424a;
   --accent: #d96f32;
   --accent-dark: #a84c1a;
   --mist: #f5f1ec;
   --sun: #ffe3b4;
   --sage: #d9e2d0;
   --sky: #d8e5f6;
   --line: #e2d9cf;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #fffdf9;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .site-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   padding: 26px 8vw 16px;
   position: relative;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.9rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-bottom: 2px solid var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 30px 8vw 40px;
   position: relative;
 }
 
 .hero-card {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: var(--mist);
   padding: 28px;
   border-radius: 12px;
   max-width: 620px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
 }
 
 .hero-card h1 {
   font-size: 2.6rem;
   margin: 0;
   line-height: 1.2;
 }
 
 .hero-visual {
   align-self: flex-end;
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 440px;
   margin-right: -3vw;
 }
 
 .hero-visual img {
   border-radius: 18px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
 }
 
 .hero-visual span {
   font-size: 0.85rem;
   color: var(--soft-ink);
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 20px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
   z-index: 10;
 }
 
 .section {
   padding: 46px 8vw;
 }
 
 .section-tight {
   padding: 24px 8vw 52px;
 }
 
 .asym-wrap {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .asym-panel {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--sky);
   padding: 24px;
   border-radius: 14px;
 }
 
 .asym-panel.alt {
   align-self: flex-end;
   background: var(--sage);
   margin-right: -5vw;
 }
 
 .split-row {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .split-row.reverse {
   flex-direction: column-reverse;
 }
 
 .split-card {
   flex: 1;
   background: #fff;
   border: 1px solid var(--line);
   padding: 22px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .split-card.highlight {
   background: var(--sun);
   border: none;
 }
 
 .quote-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .quote {
   padding: 20px;
   border-left: 4px solid var(--accent);
   background: #fff;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .price-card {
   border: 1px solid var(--line);
   padding: 20px;
   border-radius: 16px;
   background: #fff;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price-card strong {
   font-size: 1.6rem;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 20px;
   background: var(--mist);
   padding: 26px;
   border-radius: 18px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 button,
 .button-link {
   padding: 12px 18px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   max-width: fit-content;
 }
 
 .button-link.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 2px solid var(--accent-dark);
 }
 
 .inline-cta {
   color: var(--accent-dark);
   font-weight: 600;
   border-bottom: 2px solid var(--accent-dark);
 }
 
 .media-block {
   display: flex;
   flex-direction: column;
   gap: 14px;
   background: #fff;
   border-radius: 18px;
   padding: 22px;
   box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
 }
 
 .footer {
   background: #111217;
   color: #f2f2f2;
   padding: 36px 8vw;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: #f2f2f2;
   font-size: 0.9rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fff;
   border-top: 1px solid var(--line);
   padding: 14px 6vw;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 9;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .legal-card {
   padding: 18px;
   background: #fff;
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .contact-card {
   background: var(--mist);
   padding: 18px;
   border-radius: 14px;
 }
 
 .shadow-layer {
   background: linear-gradient(135deg, #fff7ec, #f8f9ff);
 }
 
 @media (min-width: 768px) {
   .hero {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .hero-card {
     flex: 1.1;
   }
 
   .hero-visual {
     flex: 0.9;
   }
 
   .split-row {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split-row.reverse {
     flex-direction: row-reverse;
   }
 
   .quote-row,
   .pricing-grid {
     flex-direction: row;
   }
 
   .price-card,
   .quote {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
