 :root {
   --ink: #1b1d1f;
   --muted: #5a5f66;
   --sand: #f4f1ed;
   --mist: #eef1f5;
   --sea: #1f5b72;
   --leaf: #4d6b5c;
   --sun: #f1c27d;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--sea);
   text-decoration: none;
 }
 
 header {
   padding: 28px 6vw 10px;
   background: var(--mist);
 }
 
 .header-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-size: 1.5rem;
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .ad-label {
   font-size: 0.95rem;
   background: #ffffff;
   border: 1px solid #d7dce1;
   padding: 6px 12px;
   border-radius: 999px;
 }
 
 .site-nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   margin-top: 16px;
 }
 
 .site-nav a {
   font-size: 0.95rem;
   color: var(--ink);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .section {
   padding: 42px 6vw;
 }
 
 .section-muted {
   background: var(--mist);
 }
 
 .section-sand {
   background: var(--sand);
 }
 
 .cta-row {
   margin-top: 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .hero {
   background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-color: #2b3d4a;
   color: #ffffff;
 }
 
 .hero .section-tag {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.75rem;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content {
   flex: 1 1 0;
 }
 
 .split-media {
   flex: 1 1 0;
 }
 
 .image-frame {
   background-color: var(--sand);
   padding: 8px;
   border-radius: 18px;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--sun);
   color: var(--ink);
   padding: 6px 14px;
   border-radius: 999px;
   font-size: 0.9rem;
   font-weight: 600;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   background: var(--sea);
   color: #ffffff;
   font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: transparent;
   color: var(--sea);
   border: 1px solid var(--sea);
 }
 
 .pricing-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 14px 18px;
   background: var(--mist);
   border-radius: 14px;
 }
 
 .price-item span {
   color: var(--muted);
 }
 
 .form-card {
   background: #ffffff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cdd4da;
   font-size: 1rem;
 }
 
 .inline-cta {
   font-weight: 600;
   text-decoration: underline;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--leaf);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   z-index: 4;
   font-weight: 600;
 }
 
 .footer {
   background: #13191f;
   color: #f2f4f6;
   padding: 40px 6vw;
 }
 
 .footer a {
   color: #f2f4f6;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   margin: 16px 0 0;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
   max-width: 320px;
   z-index: 5;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .note {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
