 :root {
   --ink: #101114;
   --muted: #5c6470;
   --accent: #1f6feb;
   --accent-soft: #e7f0ff;
   --warm: #f6efe8;
   --cool: #eef4f5;
   --paper: #ffffff;
   --shadow: 0 20px 60px rgba(15, 18, 25, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 24px;
   padding: 24px 6vw 10px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.2px;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   align-items: center;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav a {
   padding: 6px 0;
   border-bottom: 2px solid transparent;
 }
 
 .nav a:hover {
   border-bottom-color: var(--accent);
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   border: 1px solid #d6dbe3;
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 40px 6vw 70px;
 }
 
 .hero-layout {
   display: flex;
   gap: 28px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .hero-copy {
   flex: 1 1 360px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-visual {
   flex: 1 1 420px;
   border-radius: 26px;
   overflow: hidden;
   position: relative;
   min-height: 360px;
   background-color: #d4dce7;
   box-shadow: var(--shadow);
 }
 
 .hero-visual img {
   width: 100%;
   height: 100%;
 }
 
 .hero-tag {
   font-size: 0.95rem;
   color: var(--muted);
   text-transform: uppercase;
   letter-spacing: 1px;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .btn {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn:hover {
   background: #1357c6;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn-outline:hover {
   background: var(--accent-soft);
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: underline;
   font-weight: 600;
 }
 
 .inline-link:hover {
   color: #0e52bf;
 }
 
 .section {
   padding: 70px 6vw;
   position: relative;
 }
 
 .section.soft {
   background: var(--cool);
 }
 
 .section.warm {
   background: var(--warm);
 }
 
.section.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a3140;
  color: #f8fafc;
}

.section.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 18, 0.65);
}

.section.bg-insight > * {
  position: relative;
  z-index: 1;
}

.section.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e6edf3;
}

.section.bg-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.section.bg-contrast > * {
  position: relative;
  z-index: 1;
}

 .offset-blocks {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .offset-block {
   flex: 1 1 320px;
   background: var(--paper);
   border-radius: 22px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .offset-block.shift {
   transform: translateY(24px);
 }
 
 .offset-block img {
   border-radius: 16px;
   height: 200px;
 }
 
 .story-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .story-column {
   flex: 1 1 280px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .quote-card {
   background: #111827;
   color: #f8fafc;
   padding: 22px;
   border-radius: 18px;
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 26px;
 }
 
 .service-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   align-items: stretch;
 }
 
 .service-card {
   flex: 1 1 260px;
   background: var(--paper);
   border-radius: 18px;
   box-shadow: var(--shadow);
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card img {
   height: 160px;
 }
 
 .service-body {
   padding: 18px 20px 22px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   flex: 1;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .process-step {
   display: flex;
   gap: 20px;
   align-items: flex-start;
   flex-wrap: wrap;
 }
 
 .step-number {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-wrap {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
   align-items: stretch;
 }
 
 .form-panel {
   flex: 1 1 360px;
   background: var(--paper);
   border-radius: 20px;
   padding: 26px;
   box-shadow: var(--shadow);
 }
 
 .form-panel form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #d4dae4;
   font-family: inherit;
 }
 
 textarea {
   resize: vertical;
   min-height: 120px;
 }
 
 .side-visual {
   flex: 1 1 280px;
   border-radius: 20px;
   background-color: #dfe6ee;
   overflow: hidden;
   min-height: 320px;
   position: relative;
 }
 
 .side-visual img {
   width: 100%;
   height: 100%;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 22px;
   z-index: 10;
   background: #111827;
   color: #fff;
   border-radius: 999px;
   padding: 12px 18px;
   border: none;
   cursor: pointer;
   box-shadow: var(--shadow);
 }
 
 .sticky-cta:hover {
   background: #0b1220;
 }
 
 .footer {
   padding: 50px 6vw;
   background: #0f172a;
   color: #e2e8f0;
 }
 
 .footer-columns {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .footer a {
   color: #e2e8f0;
 }
 
 .policy-list {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #0f172a;
   color: #e2e8f0;
   padding: 18px 20px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 360px;
   z-index: 20;
 }
 
 .banner-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .banner button {
   padding: 8px 14px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
 }
 
 .banner .accept {
   background: #22c55e;
   color: #0b1220;
 }
 
 .banner .reject {
   background: #e2e8f0;
   color: #0f172a;
 }
 
 .banner button:hover {
   opacity: 0.9;
 }
 
 .page-header {
   padding: 40px 6vw;
   background: var(--cool);
 }
 
 .page-content {
   padding: 50px 6vw;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .contact-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: var(--paper);
   padding: 22px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .legal-section {
   background: #fff;
   border-radius: 18px;
   padding: 22px;
   box-shadow: var(--shadow);
 }
 
 .reference-list a {
   color: var(--accent);
 }
 
 .references {
   font-size: 0.95rem;
 }
 
 @media (max-width: 880px) {
   .topbar {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
