 :root {
   --bg: #0f0f14;
   --surface: #171825;
   --surface-light: #23253a;
   --accent: #d4a373;
   --accent-soft: #ead2b8;
   --text: #f5f2ee;
   --muted: #b7b2ad;
   --ink: #101018;
   --highlight: #f5e9db;
   --shadow: rgba(10, 11, 20, 0.2);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   background: #0b0c12;
   color: var(--text);
   line-height: 1.6;
 }

 img,
 svg {
   max-width: 100%;
   height: auto;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 .nav-minimal {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 24px 0;
   gap: 16px;
 }

 .nav-minimal__logo {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   font-size: 1rem;
 }

 .nav-minimal__links {
   display: flex;
   gap: 16px;
   font-size: 0.9rem;
 }

 .nav-minimal__links a {
   color: var(--muted);
 }

 .hero {
   padding: 48px 24px 64px;
 }

 .hero__wrap {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }

 .hero__title {
   font-size: clamp(2.6rem, 6vw, 4rem);
   line-height: 1.05;
   margin: 0 0 16px;
 }

 .hero__lead {
   font-size: 1.1rem;
   color: var(--muted);
   margin: 0 0 24px;
 }

 .hero__cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--accent);
   color: var(--ink);
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
 }

 .hero__panel {
   background: var(--surface);
   border-radius: 24px;
   padding: 24px;
   box-shadow: 0 18px 40px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .section {
   padding: 56px 24px;
 }

 .section--alt {
   background: var(--surface);
 }

 .section--accent {
   background: var(--accent-soft);
   color: var(--ink);
 }

 .section--light {
   background: var(--highlight);
   color: var(--ink);
 }

 .section__title {
   font-size: 1.8rem;
   margin: 0 0 16px;
 }

 .section__kicker {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 0.75rem;
   color: var(--muted);
 }

 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .split__content {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .split__aside {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface-light);
   border-radius: 20px;
   padding: 20px;
 }

 .storyline {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .storyline__item {
   background: #1a1b2a;
   border-radius: 20px;
   padding: 20px;
 }

 .quote-strip {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .quote {
   background: #151624;
   border-left: 3px solid var(--accent);
   padding: 18px 20px;
   border-radius: 16px;
 }

 .benefits {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .benefit-card {
   background: var(--surface-light);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .pricing {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .pricing__cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .service-card {
   background: #121320;
   border-radius: 20px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 8px;
   border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .service-card__price {
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--accent);
 }

 .form-section {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .service-select {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .service-select__option {
   background: #171826;
   border-radius: 16px;
   padding: 16px;
   border: 1px solid transparent;
   display: flex;
   align-items: center;
   gap: 12px;
   cursor: pointer;
 }

 .service-select__option.is-selected {
   border-color: var(--accent);
   background: #211d2f;
 }

 .form-card {
   background: #121320;
   border-radius: 20px;
   padding: 24px;
 }

 .form-card form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .field {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .field input,
 .field select,
 .field textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #2d2f45;
   background: #0e0f18;
   color: var(--text);
   font-size: 1rem;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
   font-size: 1rem;
 }

 .btn--primary {
   background: var(--accent);
   color: var(--ink);
 }

 .btn--ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }

 .btn--dark {
   background: var(--ink);
   color: var(--text);
 }

 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }

 .sticky-cta {
   position: fixed;
   right: 16px;
   bottom: 16px;
   background: var(--accent);
   color: var(--ink);
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   z-index: 10;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
 }

 .footer {
   padding: 40px 24px;
   background: #0a0b11;
   color: var(--muted);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .footer__links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }

 .footer__links a {
   color: var(--muted);
 }

 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #11121b;
   color: var(--text);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }

 .cookie-banner__actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }

 .page-head {
   padding: 48px 24px 24px;
 }

 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .info-card {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .legal {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .legal h2 {
   margin: 0 0 8px;
 }

 .back-link {
   color: var(--accent);
   text-decoration: underline;
 }

 @media (min-width: 768px) {
   .hero__wrap,
   .split,
   .pricing__cards,
   .benefits,
   .quote-strip,
   .info-grid {
     flex-direction: row;
   }

   .hero__wrap {
     align-items: center;
     gap: 48px;
   }

   .hero__panel,
   .split__aside,
   .benefit-card,
   .service-card,
   .info-card {
     flex: 1;
   }

   .split__content {
     flex: 1.2;
   }

   .pricing__cards {
     flex-wrap: wrap;
   }

   .service-card {
     flex: 1 1 calc(50% - 16px);
   }

   .form-section {
     flex-direction: row;
     align-items: flex-start;
   }

   .form-card {
     flex: 1;
   }

   .service-select {
     flex: 1;
   }

   .benefit-card,
   .quote {
     flex: 1;
   }
 }
