 :root {
   --ink: #1c2b2e;
   --muted: #4e5d62;
   --bg: #f4f6f5;
   --accent: #0f6f6c;
   --accent-2: #f2b84b;
   --surface: #ffffff;
   --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 6%;
   background: var(--surface);
   border-bottom: 1px solid #e5ecea;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .ad-label {
   padding: 6px 10px;
   background: #0f6f6c1a;
   border-radius: 999px;
   font-size: 0.8rem;
   color: var(--accent);
 }
 
 .hero {
   padding: 60px 6% 40px;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .panel {
   flex: 1;
 }
 
 .hero h1 {
   font-size: 2.8rem;
   margin: 0 0 16px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 22px;
 }
 
 .cta-btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 22px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: none;
   cursor: pointer;
 }
 
 .cta-btn.secondary {
   background: #e9f2f1;
   color: var(--accent);
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .image-frame {
   background: #d9e3e0;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 img.cover {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .section {
   padding: 50px 6%;
 }
 
 .section.alt {
   background: var(--surface);
 }

.section.has-bg {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background: #c8d7d4;
}

.section.has-bg > * {
  position: relative;
  z-index: 1;
}
 
 .section h2 {
   margin-top: 0;
   font-size: 2rem;
 }
 
 .note {
   color: var(--muted);
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price-tag {
   font-size: 1.2rem;
   font-weight: 700;
 }
 
 .badge {
   display: inline-flex;
   padding: 4px 10px;
   border-radius: 12px;
   background: #edf4f3;
   color: var(--accent);
   font-size: 0.8rem;
 }
 
 .form-wrap {
   background: var(--surface);
   padding: 30px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #cdd8d6;
   font-size: 1rem;
   font-family: inherit;
 }
 
 footer {
   padding: 40px 6%;
   background: #0f1718;
   color: #e5eded;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .footer-col a {
   color: #d9f0ee;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent-2);
   color: #2a1e03;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   z-index: 50;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--surface);
   color: var(--ink);
   padding: 18px 20px;
   border-radius: 12px;
   box-shadow: var(--shadow);
   max-width: 360px;
   z-index: 60;
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-btn {
   padding: 8px 14px;
   border-radius: 8px;
   border: none;
   cursor: pointer;
 }
 
 .cookie-btn.accept {
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-btn.reject {
   background: #e7efee;
   color: var(--accent);
 }
 
 .aside-box {
   background: #102a2b;
   color: #fff;
   padding: 24px;
   border-radius: 16px;
 }
 
 .split.tight {
   gap: 20px;
 }
 
 .centered {
   text-align: center;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   padding: 6px 12px;
   background: #e1ebea;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .notice {
   padding: 18px;
   border-radius: 14px;
   background: #f7efe2;
   color: #5a3a00;
 }
 
 @media (max-width: 920px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .hero h1 {
     font-size: 2.2rem;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
