 :root {
   --ink: #1c1f24;
   --muted: #5b6673;
   --paper: #f6f2ee;
   --mist: #eef1f4;
   --accent: #2b6cb0;
   --accent-dark: #1f4e85;
   --soft: #f1e8de;
   --line: #d6dbe1;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
 }

.cover-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent-dark);
 }
 
 header {
   padding: 28px 6vw 12px;
 }
 
 .top-bar {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   font-size: 0.95rem;
 }
 
 .nav {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .nav a {
   padding: 6px 0;
 }
 
 .ad-label {
   font-size: 0.82rem;
   color: var(--muted);
   border: 1px solid var(--line);
   padding: 6px 10px;
   border-radius: 999px;
   background: #ffffff;
 }
 
 .page-wrap {
   display: flex;
   flex-direction: column;
   gap: 80px;
 }
 
 .section {
   padding: 0 6vw;
 }
 
 .section-soft {
   background: var(--paper);
   padding: 48px 6vw;
 }
 
 .section-mist {
   background: var(--mist);
   padding: 48px 6vw;
 }

.bg-clarity {
  background-image: url("https://images.unsplash.com/photo-1512314889357-e157c22f938d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-clarity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.72);
}

.bg-clarity .overlay {
  position: relative;
  z-index: 1;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 36, 0.68);
}

.bg-focus .overlay {
  position: relative;
  z-index: 1;
}
 
 .asym {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .asym.reverse {
   flex-direction: row-reverse;
 }
 
 .asym .text {
   flex: 1 1 320px;
   min-width: 260px;
 }
 
 .asym .media {
   flex: 1 1 340px;
   min-width: 280px;
   background-color: #dfe6ee;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 18px 40px rgba(28, 31, 36, 0.12);
 }
 
 .hero {
   padding-top: 16px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 3.5vw, 3.4rem);
   line-height: 1.1;
   margin-bottom: 16px;
 }
 
 .hero p {
   font-size: 1.1rem;
   color: var(--muted);
   margin-bottom: 24px;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   transition: background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   color: #ffffff;
 }
 
 .btn.outline {
   background: transparent;
   color: var(--accent);
 }
 
 .btn.outline:hover,
 .btn.outline:focus {
   background: rgba(43, 108, 176, 0.12);
 }
 
 .float-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 10;
 }
 
 .float-cta a {
   box-shadow: 0 12px 30px rgba(28, 31, 36, 0.25);
 }
 
 .offset-block {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 32px;
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--line);
   box-shadow: 0 14px 32px rgba(28, 31, 36, 0.08);
 }
 
 .card-row {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   min-width: 210px;
   background: #ffffff;
   border-radius: 14px;
   border: 1px solid var(--line);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 18px;
 }
 
 .card .media {
   background-color: #e6edf4;
   border-radius: 12px;
   overflow: hidden;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .tag {
   font-size: 0.82rem;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 .pricing {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .price-card {
   flex: 1 1 240px;
   min-width: 220px;
   padding: 20px;
   background: #ffffff;
   border-radius: 14px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-size: 1.4rem;
   font-weight: 700;
 }
 
 .split-stack {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
   display: block;
   margin-bottom: 6px;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-card {
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 24px;
   box-shadow: 0 18px 34px rgba(28, 31, 36, 0.1);
 }
 
 .inline-link {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 footer {
   padding: 48px 6vw;
   background: #0f1720;
   color: #d5dbe2;
 }
 
 footer a {
   color: #d5dbe2;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 .footer-col {
   flex: 1 1 220px;
   min-width: 200px;
 }
 
 .disclaimer {
   font-size: 0.92rem;
   color: #b7c0ca;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   bottom: 16px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   max-width: 360px;
   box-shadow: 0 14px 30px rgba(28, 31, 36, 0.14);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
   flex-wrap: wrap;
 }
 
 .cookie-actions button {
   border-radius: 999px;
   border: 1px solid var(--accent);
   padding: 8px 14px;
   font-weight: 600;
   background: var(--accent);
   color: #ffffff;
   cursor: pointer;
 }
 
 .cookie-actions button.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .spacer {
   height: 10px;
 }
