 :root {
   --ink: #1b1f2a;
   --muted: #4a5568;
   --accent: #2f6fed;
   --accent-dark: #1f4fb0;
   --soft: #f4f6fb;
   --warm: #f7f2ea;
   --line: #e2e8f0;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "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);
 }
 
 .site-header {
   padding: 24px 6vw 10px;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   border-bottom: 1px solid var(--line);
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
   text-transform: lowercase;
 }
 
 .site-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 320px;
 }
 
 .hero {
   padding: 70px 6vw;
   background: var(--soft);
 }
 
 .section {
   padding: 60px 6vw;
 }
 
 .section.alt {
   background: var(--warm);
 }
 
 .section.dark {
   background: #101726;
   color: #fefefe;
 }
 
 .section.dark a {
   color: #fff;
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > * {
   flex: 1 1 320px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 0.8rem;
   color: var(--muted);
   margin-bottom: 12px;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 16px;
 }
 
 h1 {
   font-size: clamp(2.2rem, 3vw, 3.4rem);
 }
 
 h2 {
   font-size: clamp(1.7rem, 2.4vw, 2.6rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--muted);
 }
 
 .section.dark p {
   color: #d2d7e2;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 24px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   border-color: var(--accent-dark);
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus {
   background: rgba(47, 111, 237, 0.1);
   color: var(--accent-dark);
 }

.button-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
 
 .card-row {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 18px;
   background: #fff;
   display: flex;
   flex-direction: column;
   gap: 12px;
   min-width: 220px;
 }
 
 .card strong {
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--ink);
 }
 
 .media {
   background: #dfe5f3;
   border-radius: 22px;
   overflow: hidden;
   min-height: 280px;
 }
 
 .media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .media.bg-hero {
   background-image: url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .media.bg-hero::after {
   content: "";
   display: block;
   padding-top: 65%;
 }
 
 .media.bg-ambient {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
   background-size: cover;
   background-position: center;
   min-height: 240px;
 }
 
 .bullet-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .bullet {
   flex: 1 1 200px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   border: 1px solid var(--line);
 }
 
 .form-panel {
   background: #fff;
   padding: 24px;
   border-radius: 20px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: #fff;
   border-radius: 999px;
   border: 1px solid var(--line);
   padding: 8px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   z-index: 10;
 }
 
 .sticky-cta button {
   border-radius: 999px;
 }
 
 .site-footer {
   padding: 40px 6vw;
   border-top: 1px solid var(--line);
   background: #f9fafc;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 16px;
 }
 
 .footer-meta {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 20;
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .notice {
   font-size: 0.92rem;
   color: var(--muted);
   max-width: 520px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(47, 111, 237, 0.12);
   color: var(--accent);
   border-radius: 999px;
   padding: 6px 12px;
   font-size: 0.85rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 0;
   margin: 0;
   list-style: none;
 }
 
 .list li {
   display: flex;
   align-items: flex-start;
   gap: 10px;
 }
 
 .list li::before {
   content: "•";
   color: var(--accent);
   margin-top: 2px;
 }
 
 @media (max-width: 820px) {
   .site-header {
     padding: 20px 5vw 8px;
   }
 
   .hero,
   .section {
     padding: 50px 5vw;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
