:root {
    --primary: #343E61;
    --primary-dark: #272f4d;
    --primary-light: #4b7da2;
    --primary-pale: #eef1f8;
    --accent: #a28169;
    --accent-dark: #8b6d58;
    --accent-pale: #f5efe9;
    --gray-50: #f4f7ff;
    --gray-100: #eef1f8;
    --gray-200: #dde3ef;
    --gray-300: #c8cedf;
    --gray-600: #5a6282;
    --gray-800: #2c3350;
    --text: #1a1f35;
    --white: #fff;
    --green: #22a06b;
    --star: #f5b400;
    --shadow-sm: 0 1px 2px rgba(26,31,53,0.06), 0 1px 3px rgba(26,31,53,0.04);
    --shadow-md: 0 4px 12px rgba(26,31,53,0.06), 0 2px 4px rgba(26,31,53,0.04);
    --shadow-lg: 0 12px 32px rgba(26,31,53,0.10), 0 4px 8px rgba(26,31,53,0.05);
    /* ─── COMPAT TOKENS for shared subpage templates ─── */
    --amber: var(--accent);
    --amber-light: var(--accent-dark);
    --amber-pale: var(--accent-pale);
    --green-mid: var(--primary-dark);
    --green-light: var(--primary-light);
    --green-pale: var(--primary-pale);
    --gray-900: var(--gray-800);
    --shadow-sm: 0 1px 2px rgba(26,31,53,0.06), 0 1px 3px rgba(26,31,53,0.04);
    --logo-bg-1: #343E61;
    --logo-bg-2: #4b7da2;
    --logo-fg: #ffffff;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  /* === A11Y: Focus-Visible === */
  *:focus { outline: none; }
  *:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
  }
  button:focus-visible, a:focus-visible {
    box-shadow: 0 0 0 3px rgba(162,129,105,0.4);
  }

  /* === A11Y: Mobile Tap-Target ≥44px === */
  @media (max-width: 900px) {
    .nav-link, .btn, .footer-links a, .hero-actions a, button { min-height: 44px; }
  }

  /* === A11Y: Contrast-Boost — gray-600 war 5a6282 auf weiß → AA pass aber knapp; auf grauem BG fail === */
  .footer p, .footer .footer-links a { color: rgba(255,255,255,0.92); }
  .meta, .small-text { color: var(--gray-800); }
  body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
    transition: transform .15s, box-shadow .15s, background .15s;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(162,129,105,0.3); }
  .btn-primary:hover { background: var(--accent-dark); }
  .btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 11px 22px; }
  .btn-outline:hover { background: var(--primary); color: var(--white); }
  .btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
  .btn-outline-white { border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 11px 22px; }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

  /* ─── NAV ─── */
  .nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo-img { height: 44px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { padding: 8px 14px; border-radius: 7px; font-weight: 600; font-size: 0.92rem; color: var(--gray-800); }
  .nav-links a:hover { background: var(--primary-pale); color: var(--primary); }
  .nav-links a.active { background: var(--primary-pale); color: var(--primary); }
  .nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 9px 18px !important; box-shadow: 0 2px 8px rgba(162,129,105,0.25); }
  .nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #f0f3fb 0%, #eaeefb 100%);
    overflow: hidden;
    padding: 56px 0 40px;
  }
  .hero::before {
    content: ""; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(162,129,105,0.18), transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; position: relative; }

  /* ─── Burger menu (≤480px only) ─── */
  .nav-burger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 40px; height: 40px; flex-shrink: 0;
    background: none; border: none; cursor: pointer; padding: 8px;
    border-radius: 8px; transition: background .15s;
  }
  .nav-burger:hover { background: var(--gray-100); }
  .nav-burger span {
    display: block; width: 20px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, width .2s ease;
    transform-origin: center;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 640px) {
    .nav-burger { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: calc(100% + 10px); left: 12px; right: 12px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(26,31,53,0.13), 0 2px 8px rgba(26,31,53,0.07);
      flex-direction: column;
      padding: 10px;
      gap: 2px;
      z-index: 300;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 13px 16px; border-radius: 10px;
      font-size: 0.95rem; font-weight: 700; color: var(--text);
      transition: background .15s; display: block !important;
      border-bottom: none !important;
    }
    .nav-links a:hover, .nav-links a.active { background: var(--gray-50); color: var(--primary); }
    .nav-links .nav-cta {
      background: var(--accent) !important; color: var(--white) !important;
      border-radius: 10px !important; padding: 13px 16px !important;
      margin-top: 6px; text-align: center; box-shadow: 0 2px 8px rgba(162,129,105,0.3);
    }
    .nav-links .nav-cta:hover { background: var(--accent-dark) !important; }
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 99px;
    padding: 6px 14px; font-size: 0.82rem; font-weight: 700; color: var(--primary);
    margin-bottom: 18px; box-shadow: var(--shadow-sm);
  }
  .hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34,160,107,0.2); animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
  .hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--text);
  }
  .hero h1 span { color: var(--primary); position: relative; }
  .hero h1 span::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
    background: rgba(162,129,105,0.3); z-index: -1; border-radius: 2px;
  }
  .hero p.lead { font-size: 1.1rem; color: var(--gray-600); max-width: 540px; margin-bottom: 26px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

  /* Social Proof Block in hero */
  .hero-proof {
    display: flex; align-items: center; gap: 20px; padding: 16px 20px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 12px; box-shadow: var(--shadow-md);
    max-width: 540px;
  }
  .hero-proof-stars { color: var(--star); font-size: 0.95rem; letter-spacing: 1px; }
  .hero-proof-stars-row { display: flex; align-items: center; gap: 6px; }
  .hero-proof-rating { font-weight: 800; font-size: 1.1rem; color: var(--text); }
  .hero-proof-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.4; }
  .hero-proof-text strong { color: var(--text); font-weight: 700; }
  .hero-proof-divider { width: 1px; height: 38px; background: var(--gray-200); }
  .hero-proof-avatars { display: flex; }
  .hero-proof-avatar {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    margin-left: -8px; display: grid; place-items: center; color: var(--white);
    font-weight: 700; font-size: 0.78rem;
  }
  .hero-proof-avatar:first-child { margin-left: 0; }
  .hero-proof-avatar:nth-child(2) { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
  .hero-proof-avatar:nth-child(3) { background: linear-gradient(135deg, var(--primary-light), #6c9bc4); }
  .hero-proof-avatar:nth-child(4) { background: var(--primary-pale); color: var(--primary); }

  /* Hero image */
  .hero-image { position: relative; }
  .hero-image-frame {
    position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-lg);
  }
  .hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
    box-shadow: var(--shadow-lg);
    background-image:
      repeating-linear-gradient(45deg, rgba(52,62,97,0.04) 0 12px, transparent 12px 24px),
      linear-gradient(135deg, var(--primary-pale), var(--gray-100));
  }
  .hero-image-frame::after {
    content: "TEAM-FOTO\A vor Ort"; white-space: pre;
    position: absolute; inset: 0; display: grid; place-items: center;
    font-family: 'Courier New', monospace; font-size: 0.85rem; color: var(--gray-600);
    text-align: center; line-height: 1.6; letter-spacing: 0.05em;
  }
  .hero-floater {
    position: absolute; background: var(--white); border-radius: 12px;
    padding: 14px 16px; box-shadow: var(--shadow-lg); display: flex; gap: 12px;
    align-items: center; max-width: 240px;
  }
  .hero-floater-1 { top: 24px; left: -28px; }
  .hero-floater-2 { bottom: 24px; right: -28px; }
  .hero-floater-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--primary-pale); color: var(--primary); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
  .hero-floater-2 .hero-floater-icon { background: var(--accent-pale); color: var(--accent); }
  .hero-floater-title { font-weight: 700; font-size: 0.85rem; color: var(--text); }
  .hero-floater-sub { font-size: 0.75rem; color: var(--gray-600); }

  /* ─── TRUST BAR ─── */
  .trust-bar { background: var(--primary); color: var(--white); padding: 20px 0; }
  .trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
  .trust-item { display: flex; align-items: center; gap: 12px; }
  .trust-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.12); display: grid; place-items: center; flex-shrink: 0; font-size: 1.1rem; }
  .trust-text { font-weight: 700; font-size: 0.95rem; }
  .trust-sub { font-size: 0.78rem; opacity: 0.7; font-weight: 500; }

  /* ─── SECTIONS ─── */
  .section { padding: 80px 0; }
  .section-gray { background: var(--gray-50); }
  .section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
  .section-label {
    display: inline-block; font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 10px;
  }
  .section h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--text);
    margin-bottom: 12px;
  }
  .section-sub { font-size: 1.05rem; color: var(--gray-600); }

  /* ─── SERVICES ─── */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .service-card {
    background: var(--white); border-radius: 14px; overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex; flex-direction: column;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
  .service-card-img {
    height: 250px; background: var(--primary-pale); position: relative; overflow: hidden;
  }
  .service-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
  .service-card:hover .service-card-img img { transform: scale(1.06); }
  .service-card-tag {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 4px 10px; border-radius: 99px; font-size: 0.7rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .tag-b2b { background: var(--primary); color: var(--white); }
  .tag-privat { background: var(--accent); color: var(--white); }
  .tag-mixed { background: var(--white); color: var(--primary); border: 1px solid var(--gray-200); }
  .service-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
  .service-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; color: var(--text); }
  .service-card-target { font-size: 0.82rem; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
  .service-card-text { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; flex: 1; }
  .service-card-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: auto; align-self: flex-start;
    background: var(--primary); color: var(--white) !important;
    padding: 9px 18px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 700;
    transition: background .15s, gap .15s;
  }
  .service-card-link:hover { background: var(--primary-dark); gap: 12px; }

  /* ─── REVIEWS ─── */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .review-card {
    background: var(--white); border-radius: 14px; padding: 26px;
    border: 1px solid var(--gray-200);
  }
  .review-stars { color: var(--star); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 12px; }
  .review-text { font-size: 0.96rem; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
  .review-author { display: flex; align-items: center; gap: 10px; }
  .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: grid; place-items: center; color: var(--white); font-weight: 700; font-size: 0.85rem; }
  .review-name { font-weight: 700; font-size: 0.9rem; }
  .review-meta { font-size: 0.78rem; color: var(--gray-600); }

  /* ─── PROCESS / PROMISE ─── */
  .promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .promise-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px;
    padding: 22px; text-align: left;
  }
  .promise-num {
    width: 44px; height: 44px; border-radius: 10px; background: var(--primary-pale); font-size: 1.3rem; line-height: 1;
    display: grid; place-items: center; font-weight: 800; margin-bottom: 14px;
  }
  .promise-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
  .promise-card p { font-size: 0.88rem; color: var(--gray-600); }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); padding: 64px 0; text-align: center;
    border-top: 4px solid var(--accent);
  }
  .cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; color: var(--white); }
  .cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 26px; max-width: 600px; margin-left: auto; margin-right: auto; }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  .footer { background: var(--gray-800); color: rgba(255,255,255,0.7); padding: 56px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; margin-bottom: 32px; }
  .footer-logo-wrap { display: inline-block; background: var(--white); border-radius: 8px; padding: 6px 10px; margin-bottom: 4px; }
  .footer-logo-img { height: 38px; width: auto; display: block; }
  .footer-social { display: flex; flex-direction: row; gap: 10px; margin-top: 16px; }
  .footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.1); transition: background .15s; flex-shrink: 0; }
  .footer-social a:hover { background: rgba(255,255,255,0.2); }
  .footer-social img { width: 22px !important; height: 22px !important; max-width: 22px !important; max-height: 22px !important; object-fit: contain; border-radius: 3px; display: block; }
  .footer-brand p { font-size: 0.92rem; line-height: 1.7; margin-top: 12px; max-width: 300px; }
  .footer h4 { color: var(--white); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
  .footer-col a, .footer-contact-item { display: block; padding: 4px 0; font-size: 0.92rem; color: rgba(255,255,255,0.6); }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

  /* ─── MOBILE STICKY CTA ─── */
  .mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    background: var(--white); border-top: 1px solid var(--gray-200);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
    padding: 10px 12px;
    display: none;
    grid-template-columns: 1fr 1fr; gap: 8px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-cta a {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  }
  .mobile-cta-call { background: var(--primary-pale); color: var(--primary); }
  .mobile-cta-quote { background: var(--accent); color: var(--white); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @keyframes shine { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
  @keyframes drawLine { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }
  @keyframes countIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
  @keyframes slideRight { from { transform: translateX(-12px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
  @keyframes bubble { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .reveal-delay-4 { transition-delay: .32s; }

  .hero-floater { animation: float 4s ease-in-out infinite; }
  .hero-floater-2 { animation-delay: 1.5s; }
  .hero h1 { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) both; }
  .hero p.lead { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) .12s both; }
  .hero-actions { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) .22s both; }
  .hero-proof { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) .32s both; }
  .hero-image-frame { animation: fadeIn 1.1s .15s both; }
  .hero-floater-1 { animation: bubble .6s .6s both, float 4s ease-in-out 1.2s infinite; }
  .hero-floater-2 { animation: bubble .6s .9s both, float 4s ease-in-out 2s infinite; }
  .hero-eyebrow { animation: slideRight .6s ease both; }

  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    background-size: 200% 100%; background-position: -200% 0;
    transition: background-position .8s;
  }
  .btn-primary:hover::before { background-position: 200% 0; }

  .service-card { position: relative; cursor: pointer; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; }
  .service-card:hover { transform: translateY(-6px) scale(1.01); }
  .service-card-link::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
  }

  .promise-num { transition: transform .3s; }
  .promise-card:hover .promise-num { transform: scale(1.1) rotate(-6deg); background: var(--primary); color: var(--white); }

  .review-card { transition: transform .3s, box-shadow .3s; }
  .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

  .nav-cta { position: relative; overflow: hidden; }
  .nav-cta::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    background-size: 200% 100%; background-position: -200% 0;
    transition: background-position .8s;
  }
  .nav-cta:hover::before { background-position: 200% 0; }

  .trust-icon { transition: transform .3s; }
  .trust-item:hover .trust-icon { transform: rotate(-8deg) scale(1.08); }

  .cta-banner h2 { animation: fadeUp .8s ease both; animation-timeline: view(); animation-range: entry 0% cover 30%; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-image { max-width: 480px; margin: 0 auto; }
    .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .hero { padding: 36px 0 24px; }
    .hero p.lead { font-size: 1rem; }
    .hero-proof { flex-wrap: wrap; gap: 14px; padding: 14px; }
    .hero-proof-divider { display: none; }
    .hero-floater { display: none; }
    .section { padding: 56px 0; }
    .services-grid, .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .mobile-cta { display: grid; }
    body { padding-bottom: 80px; }
  }

  /* ─── SUBPAGE COMPAT: shared template overrides for V-B ─── */
  /* Hero on subpages uses dark gradient — keep V-B light and clean */
  .hero {
    background: linear-gradient(135deg, #f0f3fb 0%, #eaeefb 100%) !important;
    color: var(--text) !important;
  }
  .hero h1, .hero p.lead { color: var(--text) !important; }
  .hero p.lead { color: var(--gray-600) !important; }
  .hero h1 span { color: var(--accent) !important; }
  .hero-eyebrow {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    color: var(--primary) !important;
  }
  .hero .btn-outline {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
  }
  .hero .btn-outline:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
  }

  /* Section dark + label color */
  .section-label { color: var(--accent); }

  /* Service card bits */
  .service-card-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--accent-pale); color: var(--accent);
    display: grid; place-items: center; font-size: 1.15rem;
    margin-bottom: 14px;
  }

  /* About + checklist */
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 980px) { .about-inner { grid-template-columns: auto; } }
  @media (max-width: 480px) { .about-inner { grid-template-columns: auto; } }
  .about-img-frame { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
  .about-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .about-content h2 { margin-bottom: 14px; }
  .about-content p.lead { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 22px; line-height: 1.7; }
  .check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--gray-600); list-style: none; }
  .check-list li::before {
    content: '✓'; color: var(--white); background: var(--green);
    width: 22px; height: 22px; border-radius: 50%;
    display: inline-grid; place-items: center; font-size: 0.75rem; font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
  }
  ul { list-style: none; }

  /* Buttons used on subpages */
  .btn-outline-dark { border: 2px solid var(--primary); color: var(--primary); padding: 11px 22px; }
  .btn-outline-dark:hover { background: var(--primary); color: var(--white); }
  .btn-white { background: var(--white); color: var(--primary); }

  /* Reveal animations imported from V-A subpage shell */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes bubble { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

  /* Subpage hero compatibility */
  .hero-image-frame::after { content: none !important; }
  .hero-image-frame { background: var(--gray-100); }

  /* Footer brand text color override (V-B logo text was dark) */
  .footer .nav-logo { color: var(--white); }
  .footer .nav-logo-text { color: var(--white) !important; }


  /* ─── LOGO ─── */
  :root { --logo-bg-1: #4b7da2; --logo-bg-2: #343E61; --logo-fg: #ffffff; }
  .nav-logo { display: flex; align-items: center; gap: 12px; color: var(--primary); font-weight: 800; }
  .nav-logo-mark { width: 44px; height: 44px; border-radius: 11px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 8px rgba(52,62,97,0.2); }
  .nav-logo-mark svg { display: block; width: 100%; height: 100%; }
  .nav-logo-textwrap { display: flex; flex-direction: column; line-height: 1.15; }
  .nav-logo-text { font-weight: 800; font-size: 1rem; letter-spacing: -0.015em; color: var(--primary); }
  .nav-logo-sub { font-size: 0.7rem; opacity: 0.7; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; color: var(--gray-600); }
  .footer .nav-logo, .footer .nav-logo-text, .footer .nav-logo-sub { color: var(--white) !important; opacity: 1; }
  .footer .nav-logo-sub { opacity: 0.7; }

  /* ─── STORY / FOUNDER QUOTE (EMOTIONAL) ─── */
  .story-section { background: linear-gradient(135deg, var(--accent-pale) 0%, var(--primary-pale) 100%); padding: 80px 0; position: relative; overflow: hidden; }
  .story-section::before { content: ""; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(162,129,105,0.18), transparent 70%); border-radius: 50%; }
  .story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; position: relative; }
  .story-portrait { position: relative; }
  .story-portrait-frame { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--white); transform: rotate(-2deg); transition: transform .4s; }
  .story-portrait:hover .story-portrait-frame { transform: rotate(0deg) scale(1.02); }
  .story-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
  .story-portrait-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--white); border-radius: 14px; padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex; gap: 12px; align-items: center;
  }
  .story-portrait-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: grid; place-items: center; color: var(--white); font-size: 1.1rem; }
  .story-portrait-badge-text { font-size: 0.78rem; line-height: 1.3; }
  .story-portrait-badge-text strong { display: block; font-size: 0.92rem; font-weight: 800; color: var(--text); }

  .story-quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: 0.8; color: var(--accent); opacity: 0.3; margin-bottom: 8px; }
  .story-quote { font-size: 1.6rem; font-weight: 600; line-height: 1.4; letter-spacing: -0.015em; color: var(--text); margin-bottom: 24px; max-width: 540px; }
  .story-quote em { color: var(--accent); font-style: normal; font-weight: 700; }
  .story-attribution { display: flex; align-items: center; gap: 14px; }
  .story-attribution-line { width: 40px; height: 2px; background: var(--accent); }
  .story-attribution-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text); }
  .story-attribution-text span { font-size: 0.85rem; color: var(--gray-600); }

  /* PULL QUOTE between sections */
  .pull-quote { padding: 60px 0; text-align: center; background: var(--white); }
  .pull-quote-text { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 600; line-height: 1.4; letter-spacing: -0.015em; max-width: 820px; margin: 0 auto 18px; color: var(--text); }
  .pull-quote-text em { color: var(--accent); font-style: normal; font-weight: 700; }
  .pull-quote-author { display: inline-flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--gray-600); }
  .pull-quote-stars { color: var(--star); letter-spacing: 1px; }

  @media (max-width: 980px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-portrait { max-width: 360px; margin: 0 auto; }
  }

  /* ─── POWERED BY BAR ─── */
  .powered-by-bar {
    background: var(--accent);
    text-align: center;
    padding: 14px 24px; margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
  }
  .powered-by-bar a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 700; transition: color .15s; }
  .powered-by-bar a:hover { color: var(--white); }
  .powered-by-bar .pb-sep { margin: 0 10px; color: #fff; opacity: 1; }
  .powered-by-bar .pb-brand { color: #fff; font-weight: 800; }
