 :root {
   --bg: #f6f2ed;
   --ink: #1d1b19;
   --muted: #5c5854;
   --accent: #274060;
   --accent-light: #e6ecf4;
   --warm: #d28f65;
   --white: #ffffff;
   --soft: #fdfbf8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92vw);
   margin: 0 auto;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 0;
   border-bottom: 1px solid rgba(29, 27, 25, 0.08);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 .hero {
   padding: 48px 0 36px;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1 1 320px;
   background: var(--white);
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 15px 30px rgba(29, 27, 25, 0.08);
 }
 
 .panel.soft {
   background: var(--soft);
 }
 
 .panel.accent {
   background: var(--accent-light);
 }
 
 .section {
   padding: 52px 0;
 }
 
 .section.alt {
   background: var(--white);
 }
 
 .section.warm {
   background: #f4e6db;
 }
 
 .eyebrow {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .button.secondary {
   background: var(--warm);
 }
 
 .button.ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .card-list {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--white);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid rgba(29, 27, 25, 0.06);
 }
 
 .card img {
   border-radius: 12px;
   margin-bottom: 14px;
 }
 
 .pricing {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .testimonial {
   padding: 18px;
   border-left: 3px solid var(--warm);
   background: #fff5ec;
   margin-top: 12px;
 }
 
 .form-section {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-card {
   background: var(--white);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid rgba(29, 27, 25, 0.08);
 }
 
 .service-options {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .service-option {
   flex: 1 1 220px;
   border: 1px solid rgba(29, 27, 25, 0.15);
   border-radius: 14px;
   padding: 14px;
   cursor: pointer;
   background: #fff;
 }
 
 .service-option input {
   margin-right: 8px;
 }
 
 .service-option.active {
   border-color: var(--accent);
   box-shadow: 0 10px 20px rgba(39, 64, 96, 0.12);
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 input,
 textarea,
 select {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid rgba(29, 27, 25, 0.2);
   font-size: 1rem;
 }
 
 .small {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .footer {
   padding: 40px 0;
   background: #141312;
   color: #f1efe9;
 }
 
 .footer a {
   color: #f1efe9;
 }
 
 .footer .links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 20;
   background: var(--warm);
   color: var(--white);
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 18px 30px rgba(210, 143, 101, 0.35);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--white);
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
   max-width: 320px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .hide {
   display: none;
 }
 
 .page-title {
   font-size: 2.2rem;
   margin-bottom: 8px;
 }
 
 .two-col {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .two-col > div {
   flex: 1 1 280px;
 }
 
 @media (max-width: 720px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
