 :root {
   --ink: #1c1f26;
   --muted: #5a6472;
   --accent: #0f6b6b;
   --accent-soft: #e4f1f0;
   --warm: #f7f2eb;
   --cool: #eef2f8;
   --sun: #f6f0d6;
   --line: #d8dee7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", system-ui, sans-serif;
   color: var(--ink);
   background: #fbfbfd;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 22px 0 10px;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-disclosure {
   font-size: 12px;
   background: var(--sun);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   font-size: 14px;
   color: var(--muted);
 }
 
 .hero {
   padding: 40px 0 60px;
 }
 
 .asym-row {
   display: flex;
   gap: 32px;
   align-items: center;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .hero-copy {
   flex: 1.05;
 }
 
 .hero-media {
   flex: 1;
   position: relative;
 }
 
 .hero-card {
   position: absolute;
   right: -18px;
   bottom: -24px;
   background: #ffffff;
   border-radius: 18px;
   padding: 16px 18px;
   box-shadow: 0 18px 40px rgba(16, 36, 54, 0.15);
   max-width: 220px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--accent-soft);
   color: var(--accent);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 13px;
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(32px, 4vw, 48px);
   margin: 14px 0 12px;
 }
 
 h2 {
   font-size: clamp(26px, 3vw, 36px);
   margin: 0 0 12px;
 }
 
 h3 {
   font-size: 20px;
   margin: 0 0 10px;
 }
 
 .lead {
   color: #a6a8ab;
   font-size: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 70px 0;
 }
 
 .section.alt {
   background: var(--warm);
 }
 
 .section.cool {
   background: var(--cool);
 }
 
 .section.sun {
   background: var(--sun);
 }
 
 .section.background-tech {
   background-color: #1b2632;
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
 }
 
 .background-tech .overlay {
   background: rgba(10, 16, 24, 0.7);
   padding: 32px;
   border-radius: 22px;
 }
 
 .section-title {
   max-width: 640px;
 }
 
 .split-stack {
   display: flex;
   gap: 32px;
 }
 
 .stack-col {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 12px 30px rgba(16, 36, 54, 0.08);
 }
 
 .card.muted {
   background: #f9fafc;
   border: 1px solid var(--line);
   box-shadow: none;
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .inline-link {
   text-decoration: underline;
   font-weight: 600;
   color: var(--accent);
 }
 
 .media-frame {
   border-radius: 20px;
   overflow: hidden;
   background: #dfe6ef;
 }
 
 .media-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .stat {
   flex: 1;
   min-width: 180px;
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .pricing-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .price-card {
   flex: 1;
   min-width: 220px;
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .price {
   font-size: 22px;
   font-weight: 700;
 }
 
 .form-card {
   background: #ffffff;
   border-radius: 22px;
   padding: 26px;
   box-shadow: 0 16px 36px rgba(16, 36, 54, 0.12);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 select,
 input,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 15px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   padding: 40px 0 70px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 12px 0 20px;
 }
 
 .disclaimer {
   font-size: 13px;
   color: #6a7280;
   background: #f4f6fa;
   padding: 16px;
   border-radius: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 50;
 }
 
 .sticky-cta a {
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   display: inline-flex;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 16px;
   box-shadow: 0 20px 45px rgba(16, 36, 54, 0.18);
   padding: 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   z-index: 60;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .hidden {
   display: none;
 }
 
 .page-hero {
   padding: 50px 0 40px;
 }
 
 .page-hero .asym-row {
   align-items: flex-start;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .legal-block {
   background: #ffffff;
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 @media (max-width: 920px) {
   .asym-row,
   .split-stack {
     flex-direction: column;
   }
 
   .hero-card {
     position: static;
     margin-top: 16px;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
