 :root {
   --ink: #1f2328;
   --muted: #4a5568;
   --accent: #2962ff;
   --accent-soft: #e6edff;
   --sand: #f5f1ea;
   --sky: #e9f4ff;
   --stone: #f7f7f7;
   --deep: #0f172a;
   --gold: #c9a227;
   --radius: 22px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 6vw;
   border-bottom: 1px solid #e6e6e6;
   background: #fff;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
   text-transform: lowercase;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav a:hover {
   border-color: var(--accent);
 }
 
 .split-section {
   display: flex;
   flex-direction: column;
   gap: 32px;
   padding: 60px 6vw;
 }
 
 .split-section.alt {
   background: var(--sand);
 }
 
 .split-section.sky {
   background: var(--sky);
 }
 
 .split-section.stone {
   background: var(--stone);
 }
 
 .split-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split-row {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split-row.reverse {
   flex-direction: column-reverse;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.78rem;
   letter-spacing: 2px;
   color: var(--muted);
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0;
 }
 
 h1 {
   font-size: clamp(2.6rem, 4vw, 3.6rem);
 }
 
 h2 {
   font-size: clamp(2rem, 3vw, 2.7rem);
 }
 
 h3 {
   font-size: 1.4rem;
 }
 
 p {
   margin: 0;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
   font-weight: 600;
   transition: 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn.gold {
   background: var(--gold);
   border-color: var(--gold);
   color: #1c1c1c;
 }
 
 .btn:hover {
   transform: translateY(-1px);
 }
 
 .inline-link {
   color: var(--accent);
   border-bottom: 1px solid currentColor;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   border-radius: var(--radius);
   background: #fff;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
 }
 
 .card strong {
   font-size: 1.2rem;
 }
 
 .badge {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--accent-soft);
   color: var(--accent);
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .service-price {
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .form-wrapper {
   background: #fff;
   padding: 28px;
   border-radius: var(--radius);
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-size: 0.95rem;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #d7d7d7;
   font-size: 1rem;
 }
 
 .form-note {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .split-media {
   border-radius: var(--radius);
   overflow: hidden;
 }
 
 .split-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .metrics {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .metric {
   display: flex;
   justify-content: space-between;
   border-bottom: 1px solid #dcdcdc;
   padding-bottom: 10px;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 18px;
   background: #fff;
   border-radius: 18px;
   box-shadow: inset 0 0 0 1px #ececec;
 }
 
 .footer {
   margin-top: auto;
   padding: 32px 6vw 48px;
   background: var(--deep);
   color: #fff;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .footer a {
   color: #fff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 18px;
   font-size: 0.92rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: #fff;
   padding: 14px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 12px 24px rgba(41, 98, 255, 0.3);
   z-index: 999;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   display: none;
   gap: 16px;
   box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
   z-index: 998;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .image-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .split-tag {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.95rem;
 }
 
 .split-tag span {
   width: 10px;
   height: 10px;
   border-radius: 999px;
   background: var(--accent);
 }
 
 .hero-backdrop {
   background: url("hero.svg") center/cover no-repeat;
   border-radius: var(--radius);
   padding: 40px;
   color: #fff;
   min-height: 320px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
 }
 
 @media (min-width: 900px) {
   .split-section {
     flex-direction: column;
   }
 
   .split-row,
   .split-row.reverse {
     flex-direction: row;
     align-items: center;
   }
 
   .split-row.reverse {
     flex-direction: row-reverse;
   }
 
   .split-content,
   .split-media {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
   }
 
   .metrics {
     flex-direction: row;
   }
 
   .metric {
     flex: 1;
     border-bottom: none;
     border-right: 1px solid #dcdcdc;
     padding-right: 12px;
   }
 
   .metric:last-child {
     border-right: none;
   }
 
   .cookie-banner {
     left: auto;
     max-width: 520px;
   }
 }
