 :root {
   --bg: #f6f3ef;
   --bg-alt: #eef2f5;
   --ink: #1a1e24;
   --muted: #5a6473;
   --accent: #0f62fe;
   --accent-dark: #0a3ea3;
   --card: #ffffff;
   --line: #d7dde5;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   color: var(--accent-dark);
 }
 
 header {
   padding: 28px 6vw 12px;
 }
 
 .top-nav {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 260px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .hero {
   padding: 8px 6vw 40px;
 }
 
 .split {
   display: flex;
   align-items: stretch;
   gap: 42px;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-column {
   flex: 1;
   min-width: 280px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 3.5vw, 3.2rem);
   margin-top: 0;
 }
 
 .hero p {
   font-size: 1.05rem;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   margin-top: 18px;
   flex-wrap: wrap;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   padding: 50px 6vw;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }

 .section.bg-insight {
   background-color: #1d2430;
   background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #f3f6fb;
 }

 .section.bg-insight a {
   color: #cfe1ff;
 }
 
 .section h2 {
   margin-top: 0;
 }
 
 .image-frame {
   background: #dfe6ee;
   border-radius: 18px;
   overflow: hidden;
   min-height: 260px;
 }

 .bg-ice {
   background: #dce5f1;
 }

 .bg-sky {
   background: #e1e7ea;
 }

 .bg-slate {
   background: #dae3ee;
 }

 .bg-sand {
   background: #e8e4df;
 }

 .bg-charcoal {
   background: #2c3442;
 }

 .bg-stone {
   background: #e4e0d9;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-card {
   background: var(--card);
   padding: 16px 18px;
   border-radius: 14px;
   border: 1px solid var(--line);
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 14px;
 }
 
 .service-card span {
   color: var(--muted);
   font-size: 0.92rem;
 }

 .card-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 18px;
 }

 .card-mini {
   flex: 1;
   min-width: 180px;
   background: #f0f4f8;
   border: 1px solid var(--line);
   border-radius: 14px;
   overflow: hidden;
 }

 .card-mini img {
   width: 100%;
   height: 120px;
   object-fit: cover;
   display: block;
 }

 .card-mini .card-body {
   padding: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--ink);
 }
 
 .inline-note {
   background: #fff4d6;
   padding: 10px 14px;
   border-radius: 12px;
   font-size: 0.95rem;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 14px 16px;
 }
 
 .testimonial {
   font-style: italic;
   border-left: 3px solid var(--accent);
   padding-left: 12px;
   margin: 14px 0;
 }
 
 .form-box {
   background: var(--card);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-weight: 600;
 }
 
 select,
 input,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 0.95rem;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .footer {
   padding: 32px 6vw 40px;
   background: #10131a;
   color: #e6e9ee;
 }
 
 .footer a {
   color: #b5c7ff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 12px;
 }
 
 .disclaimer {
   font-size: 0.9rem;
   color: #cfd6df;
   margin-top: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 24px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 8px 14px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   display: flex;
   align-items: center;
   gap: 10px;
   z-index: 20;
 }
 
 .sticky-cta a {
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid var(--line);
   padding: 16px 6vw;
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .hidden {
   display: none;
 }
 
 .contact-card {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
 }
 
 .legal-section {
   max-width: 900px;
   margin: 0 auto;
 }
 
 @media (max-width: 920px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     justify-content: center;
   }
 }
