 :root {
   color-scheme: light;
   --ink: #1a1d22;
   --muted: #5a6472;
   --brand: #1c5b8f;
   --brand-soft: #e6f1fb;
   --accent: #f28b5b;
   --cream: #f7f4ef;
   --line: #dbe1ea;
   --shadow: 0 22px 60px rgba(15, 28, 45, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .top-nav {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   padding: 1.5rem 6vw;
   gap: 1rem;
   background: #ffffff;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   text-decoration: none;
   padding-bottom: 0.2rem;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   padding: 4rem 6vw 3rem;
   background: linear-gradient(135deg, var(--brand-soft), #ffffff);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.4rem);
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.9rem 1.6rem;
   border-radius: 999px;
   border: none;
   background: var(--brand);
   color: #ffffff;
   text-decoration: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .section {
   padding: 3.5rem 6vw;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .section.soft {
   background: var(--cream);
 }
 
 .section.story {
   background: url("assets/texture.svg") center/cover no-repeat;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
 }
 
 .card {
   flex: 1 1 220px;
   background: #ffffff;
   padding: 1.5rem;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card img {
   width: 48px;
   height: 48px;
 }
 
 .quote {
   padding: 1.5rem;
   border-left: 4px solid var(--accent);
   background: #fff;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .pricing .card {
   border: 1px solid var(--line);
   box-shadow: none;
 }
 
 .pricing .price {
   font-size: 1.6rem;
   font-weight: 700;
 }
 
 .form-wrapper {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   padding: 2rem;
   border-radius: 24px;
   background: #ffffff;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 0.85rem 1rem;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .input-error {
   border-color: var(--accent);
 }
 
 .meta-row {
   display: flex;
   flex-direction: column;
   gap: 0.35rem;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: sticky;
   top: 1rem;
   align-self: flex-end;
   background: #ffffff;
   border-radius: 999px;
   padding: 0.4rem 0.6rem;
   box-shadow: var(--shadow);
 }
 
 .sticky-cta a {
   display: inline-flex;
   padding: 0.6rem 1.2rem;
   text-decoration: none;
   color: var(--brand);
   font-weight: 600;
 }
 
 .footer {
   margin-top: auto;
   padding: 2.5rem 6vw;
   background: #10141b;
   color: #f0f2f5;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   font-size: 0.9rem;
 }
 
 .footer-links a {
   color: #f0f2f5;
   text-decoration: none;
 }
 
 .cookie-banner {
   position: fixed;
   right: 1rem;
   bottom: 1rem;
   background: #ffffff;
   border-radius: 16px;
   padding: 1rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   max-width: 280px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.5rem;
 }
 
 .cookie-actions button {
   flex: 1;
   padding: 0.5rem;
   border-radius: 999px;
   border: 1px solid var(--line);
   background: #ffffff;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: var(--brand);
   border-color: var(--brand);
   color: #ffffff;
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .split,
   .split.reverse {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-content,
   .split > div {
     flex: 1;
   }
 
   .form-wrapper {
     flex-direction: row;
     align-items: stretch;
   }
 
   .form-wrapper > div {
     flex: 1;
   }
 }
