 :root {
   --bg: #f6f4f1;
   --bg-strong: #0f1a1f;
   --text: #1a1f24;
   --muted: #54626f;
   --accent: #2d7a6a;
   --accent-2: #d9a441;
   --card: #ffffff;
   --line: #e3e0db;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 .site-header {
   padding: 24px 0 8px;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
   text-transform: lowercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 15px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
 }
 
 .hero {
   background: var(--bg-strong);
   color: #ffffff;
   position: relative;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(9, 15, 19, 0.68);
 }
 
 .hero-inner {
   position: relative;
   z-index: 2;
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding: 120px 0 90px;
 }
 
 .hero-title {
   font-size: clamp(32px, 5vw, 54px);
   margin: 0;
   line-height: 1.2;
 }
 
 .hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid #ffffff;
 }
 
 .section {
   padding: 72px 0;
 }
 
 .section.narrow {
   padding: 56px 0;
 }
 
 .section-title {
   font-size: clamp(24px, 3vw, 36px);
   margin: 0 0 16px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .image-frame {
   background: #d6d0c8;
   padding: 12px;
   border-radius: 18px;
 }
 
 .image-frame img {
   width: 100%;
   border-radius: 14px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   padding: 10px 16px;
   background: var(--card);
   border-radius: 999px;
   border: 1px solid var(--line);
   font-size: 14px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   background: var(--card);
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--line);
   flex: 1 1 250px;
 }
 
 .card img {
   width: 100%;
   height: 170px;
   border-radius: 16px;
 }
 
 .highlight {
   background: #eaf3f1;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-dot {
   width: 10px;
   height: 10px;
   background: var(--accent-2);
   border-radius: 50%;
   margin-top: 7px;
 }
 
 .pricing-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .pricing-card {
   flex: 1 1 240px;
   background: #fffefb;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .pricing-card .price {
   font-size: 22px;
   font-weight: 700;
 }
 
 .form-panel {
   background: #ffffff;
   border-radius: 24px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 label {
   display: block;
   font-weight: 600;
   margin: 14px 0 6px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 10;
   background: var(--accent-2);
   color: #1a1f24;
   border: none;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   cursor: pointer;
 }
 
 .site-footer {
   background: #11191e;
   color: #c9d4dd;
   padding: 40px 0 64px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 18px 0;
 }
 
 .footer-links a {
   color: #c9d4dd;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: none;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 10px;
 }
 
 .banner-button {
   padding: 10px 16px;
   border-radius: 999px;
   border: 1px solid var(--line);
   background: #ffffff;
   cursor: pointer;
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-form {
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-soft {
   background: #f1eee9;
 }
 
 .bg-deep {
   background: #0f1a1f;
   color: #ffffff;
 }
 
 .page-hero {
   padding: 80px 0 60px;
 }
 
 .page-hero img {
   height: 260px;
   width: 100%;
   border-radius: 22px;
 }
 
 .page-section {
   padding: 52px 0;
 }
 
 .notice {
   background: #fff7e1;
   border-radius: 16px;
   padding: 16px;
   border: 1px solid #f0d9a7;
 }
