 :root {
   color-scheme: light;
   --ink: #1d1a22;
   --muted: #5b5563;
   --accent: #2f6fed;
   --accent-dark: #244fba;
   --soft: #f4f1f7;
   --warm: #fff2e6;
   --cool: #e9f1ff;
   --line: #d7d1df;
   --radius: 24px;
   --shadow: 0 20px 50px rgba(29, 26, 34, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow: hidden;
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 .split-nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 28px 0 12px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 999px;
   background: transparent;
   transition: background 0.2s ease;
 }
 
 .nav-links a:hover {
   background: var(--soft);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 48px 0 60px;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 60% 10% -10% 40%;
   background: var(--cool);
   border-radius: 40px;
   z-index: -1;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-title {
   font-size: clamp(2.1rem, 4vw, 3.2rem);
   line-height: 1.1;
   margin: 0;
 }
 
 .hero-subtitle {
   color: var(--muted);
   margin: 0;
   max-width: 520px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .button:hover {
   transform: translateY(-1px);
   background: var(--accent-dark);
 }
 
 .button.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 0.85rem;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--soft);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.offset {
   background: var(--warm);
 }
 
 .section.tight {
   padding: 40px 0;
 }
 
 .asym-row {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .asym-row .panel {
   background: #ffffff;
   border-radius: var(--radius);
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .asym-row .panel.shift {
   margin-left: clamp(0px, 6vw, 80px);
 }
 
 .asym-row .panel.shift-right {
   margin-right: clamp(0px, 6vw, 80px);
 }
 
 .headline {
   font-size: clamp(1.5rem, 2.8vw, 2.3rem);
   margin-bottom: 16px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: #ffffff;
   border-radius: var(--radius);
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   width: 64px;
 }
 
 .card strong {
   font-size: 1.1rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding-left: 0;
   list-style: none;
 }
 
 .list li {
   background: #ffffff;
   padding: 14px 16px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .quote {
   font-style: italic;
   background: var(--soft);
   border-radius: 20px;
   padding: 18px;
 }
 
 .pricing-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .price-card {
   border-radius: var(--radius);
   padding: 24px;
   background: #ffffff;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .price {
   font-size: 1.6rem;
   font-weight: 700;
 }
 
 .price-note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-step span {
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-shell {
   background: #ffffff;
   border-radius: var(--radius);
   padding: 24px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font: inherit;
 }
 
 .form-status {
   font-size: 0.9rem;
   color: #a13c3c;
   min-height: 20px;
 }
 
 .footer {
   background: #101018;
   color: #f8f5ff;
   padding: 40px 0 50px;
 }
 
 .footer a {
   color: #f8f5ff;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: var(--shadow);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 20px;
   padding: 16px 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .subtle-link {
   text-decoration: underline;
   color: var(--accent-dark);
 }
 
 .gallery-strip {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .gallery-strip img {
   border-radius: 18px;
 }
 
 .contact-card {
   background: #ffffff;
   border-radius: var(--radius);
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .legal {
   max-width: 760px;
 }
 
 @media (min-width: 860px) {
   .hero {
     flex-direction: row;
     align-items: center;
     gap: 48px;
   }
 
   .hero-content {
     flex: 1.1;
   }
 
   .hero-media {
     flex: 0.9;
   }
 
   .asym-row {
     flex-direction: row;
     align-items: stretch;
   }
 
   .asym-row .panel {
     flex: 1;
   }
 
   .card-row {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .pricing-row {
     flex-direction: row;
   }
 
   .price-card {
     flex: 1;
   }
 
   .gallery-strip {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     gap: 18px;
     flex-wrap: wrap;
   }
 }
