 :root {
   color-scheme: light;
   --ink: #1c1f23;
   --muted: #5a6470;
   --accent: #1f5b7a;
   --accent-dark: #17465d;
   --sand: #f4f1ec;
   --sky: #e7eef2;
   --stone: #d9d7d1;
   --shadow: 0 16px 40px rgba(20, 25, 30, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 280px;
   padding: 32px 24px;
   background: var(--sand);
   display: flex;
   flex-direction: column;
   gap: 24px;
   border-right: 1px solid #e2ded7;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: lowercase;
 }
 
 .ad-label {
   font-size: 13px;
   color: var(--muted);
   background: #fff6d8;
   padding: 10px 12px;
   border-radius: 10px;
 }
 
 .sidebar nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-weight: 600;
 }
 
 .sidebar-cta {
   margin-top: auto;
 }
 
 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .section {
   padding: 64px 72px;
   position: relative;
 }
 
 .section.alt {
   background: var(--sky);
 }
 
 .section.compact {
   padding: 40px 72px;
 }
 
 .hero {
   display: flex;
   gap: 40px;
   align-items: center;
 }
 
 .hero-content {
   flex: 1;
 }
 
 .hero h1 {
   font-size: 40px;
   margin-bottom: 16px;
 }
 
 .hero p {
   font-size: 18px;
   color: var(--muted);
 }
 
 .image-frame {
   background: var(--stone);
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }

.frame-sand-1 {
  background: #d7d6d2;
}

.frame-sand-2 {
  background: #d1d7da;
}

.frame-sand-3 {
  background: #d9d2cb;
}

.frame-sand-4 {
  background: #cfd4d8;
}

.frame-sand-5 {
  background: #d1d6ce;
}
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .inline-image {
   max-width: 420px;
   height: 280px;
 }
 
 .hero-image {
   width: 360px;
   height: 420px;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: flex-start;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1;
 }
 
 .cards {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .card {
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   flex: 1 1 260px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .price {
   font-size: 18px;
   font-weight: 700;
   color: var(--accent);
 }
 
 .tagline {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 12px;
   color: var(--muted);
 }
 
 .bg-process {
   background-image: url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .bg-process::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(18, 23, 28, 0.62);
 }
 
 .bg-process .content {
   position: relative;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus {
   background: var(--sky);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 20px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .quote {
   padding: 24px;
   border-left: 3px solid var(--accent);
   background: #fff;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #c9d2d9;
   font-size: 15px;
 }
 
 .form-grid {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .form-grid > div {
   flex: 1 1 240px;
 }
 
 footer {
   background: var(--sand);
   padding: 32px 72px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #fff;
   padding: 12px 16px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: flex;
   gap: 12px;
   align-items: center;
   z-index: 10;
 }
 
 .sticky-cta span {
   font-size: 14px;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   max-width: 360px;
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 @media (max-width: 960px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     border-right: none;
     border-bottom: 1px solid #e2ded7;
   }
 
   .sidebar nav {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .sidebar-cta {
     margin-top: 0;
   }
 
   .section {
     padding: 48px 28px;
   }
 
   footer {
     padding: 32px 28px;
   }
 }
