  :root {
    --black: #1e1e1e;
    --white: #f5f5f5;
    --off: #efefef;
    --muted: #5e5e5e;
    --border: #e0e0e0;
    --accent: #2e2e2e;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  @keyframes breathe-bg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(135deg, #fdfdfd 0%, #f9f9f9 25%, #fbfbfb 50%, #f8f8f8 75%, #fdfdfd 100%);
    background-size: 400% 400%;
    animation: breathe-bg 15s ease-in-out infinite;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245,245,245,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border);
    padding: 0 clamp(16px, 4vw, 48px);
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    text-decoration: none;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-logo-img {
    height: 120px;
    width: auto;
    display: block;
    border-radius: 0;
  }
  .nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #1e1e1e;
    background: transparent;
    line-height: 1;
    transform: scaleY(1.2);
    transform-origin: center;
    display: inline-block;
    white-space: nowrap;
  }
  .nav-links { display: flex; gap: 32px; margin-right: 36px; }
  .nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--black); }
  /* ── BUTTON FLOW ANIMATION ── */
  @keyframes btn-shimmer {
    from { transform: translateX(-100%) skewX(-15deg); }
    to   { transform: translateX(250%)  skewX(-15deg); }
  }
  @keyframes btn-fill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  .nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 4px 20px 4px 4px;
    border-radius: 100px;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    gap: 12px;
    transition: box-shadow 0.45s ease, padding 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-cta-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #1e1e1e;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-cta-icon svg {
    width: 13px; height: 13px;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-cta-text {
    white-space: nowrap;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-cta:hover {
    padding: 4px 4px 4px 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }
  .nav-cta:hover .nav-cta-icon {
    transform: translateX(calc(100% + 12px + 20px - 4px));
  }
  .nav-cta:hover .nav-cta-icon svg {
    transform: rotate(45deg);
  }
  .nav-cta:hover .nav-cta-text {
    transform: translateX(calc(-36px - 12px));
  }

  /* ── SECTIONS ── */
  section { padding: clamp(40px, 6vw, 80px) clamp(16px, 5vw, 80px); }
  .container { max-width: 1320px; margin: 0 auto; width: 100%; }
  .section-num {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-num::after {
    content: '';
    display: block;
    width: 32px;
    height: 0.5px;
    background: var(--border);
  }

  /* ── SHADER CANVAS ── */
  #shader-hero {
    position: relative;
    border-bottom: 0.5px solid var(--border);
    overflow: hidden;
    background: #F8F0E3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
    min-height: 560px;
  }
  #shader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  #shader-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
  }
  #shader-hero .container {
    position: relative;
    z-index: 2;
    padding-top: clamp(72px, 10vh, 110px);
    padding-bottom: clamp(8px, 2vh, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    justify-content: center;
  }
  /* Overlay so text stays readable over mountain scene */
  #shader-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(200,200,200,0.82) 0%,
      rgba(200,200,200,0.30) 50%,
      rgba(200,200,200,0.05) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* ── HERO (light mode) ── */
  #shader-hero .hero-eyebrow {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
  }
  #shader-hero .hero-dot { background: #22c55e; }
  #shader-hero h1 { color: #0a0a0a; text-shadow: none; }

  /* Hero h1 — all black */
  .h1-highlight { color: #0a0a0a; }
  .h1-highlight em { color: #0a0a0a; font-style: italic; text-shadow: none; }
  #shader-hero .hero-sub { color: #1a1a1a; }
  #shader-hero .hero-note { color: #3a3a3a; }
  #shader-hero .btn-primary {
    background: linear-gradient(to right, #3a3a3a 50%, #0a0a0a 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
  }
  #shader-hero .btn-primary:hover {
    background-position: left center;
    box-shadow: 0 4px 28px rgba(0,0,0,0.35);
  }
  #shader-hero .ticker-label { color: #0a0a0a; font-weight: 600; }
  #shader-hero .ticker-wrap::before { background: linear-gradient(to right, rgba(200,200,200,0.95) 0%, transparent 100%); }
  #shader-hero .ticker-wrap::after  { background: linear-gradient(to left,  rgba(200,200,200,0.95) 0%, transparent 100%); }
  #shader-hero .ticker-item { color: #0a0a0a; font-weight: 600; letter-spacing: 0.04em; }

  /* ── HERO ── */
  #hero {
    padding-top: 120px;
    padding-bottom: 56px;
    border-bottom: 0.5px solid var(--border);
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--off);
    border: 0.5px solid var(--border);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: clamp(10px, 1.5vh, 16px);
  }
  .hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; }
  h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--black);
    max-width: 780px;
    margin-bottom: clamp(10px, 1.5vh, 16px);
  }
  h1 em {
    font-style: italic;
    color: var(--muted);
  }
  .hero-sub {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--muted);
    font-weight: 400;
    max-width: 560px;
    margin-bottom: clamp(14px, 2vh, 24px);
    line-height: 1.6;
    text-align: center;
  }
  .hero-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: clamp(12px, 2vh, 24px); }
  .hero-note { margin-top: 8px; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    justify-content: center;
    background: linear-gradient(to right, #3a3a3a 50%, var(--black) 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--white);
    padding: 13px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
  }
  .btn-primary:hover {
    background-position: left center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .btn-primary svg { width: 13px; height: 13px; }
  .hero-note { font-size: 12px; color: var(--muted); }

  /* ── LOGO TICKER ── */
  .ticker-section {
    width: 100%;
    padding: clamp(8px, 1.5vh, 16px) 0;
    position: relative;
    z-index: 2;
    text-align: center;
    flex-shrink: 0;
  }
  .ticker-label {
    font-size: 11px;
    color: var(--black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .ticker-wrap { overflow: hidden; position: relative; z-index: 2; }
  .ticker-wrap::before, .ticker-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px; z-index: 10;
    pointer-events: none;
  }
  .ticker-wrap::before { left: 0; background: linear-gradient(to right, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 40%, transparent 100%); }
  .ticker-wrap::after { right: 0; background: linear-gradient(to left, rgba(245,245,245,1) 0%, rgba(245,245,245,0.95) 40%, transparent 100%); }
  .ticker-track {
    display: flex; gap: 56px; align-items: center;
    width: max-content;
    will-change: transform;
  }
  .ticker-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s;
  }

  /* ── INTRO (01) ── */
  #intro {
    background: var(--off);
    border-bottom: 0.5px solid var(--border);
  }
  .intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
  }
  .intro-left h2 {
    margin-bottom: 32px;
  }
  .intro-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
  }
  .intro-stat-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 24px;
  }
  .intro-stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.1;
  }
  .intro-stat-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
  }
  h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }
  .intro-body {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
    font-weight: 400;
  }
  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 0;
  }
  .stat {
    padding: 20px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 12px;
  }
  .stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label { font-size: 12px; color: var(--muted); }

  /* ── BLOG (02) ── */
  #blog { border-bottom: 0.5px solid var(--border); }
  .blog-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 36px;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .blog-card {
    border: 0.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
    background: var(--white);
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  }
  .blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--off);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-tag {
    position: absolute; bottom: 12px; left: 12px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
  }
  .blog-body { padding: 20px; }
  .blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
  .blog-title {
    font-family: 'Instrument Serif', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }
  .blog-arrow {
    margin-top: 16px;
    display: flex; align-items: center; gap: 6px;
    font-size: 12px;
    color: var(--muted);
  }
  .blog-arrow svg { width: 12px; height: 12px; }

  /* ── SERVICES (02) ── */
  #services {
    border-bottom: 0.5px solid var(--border);
  }
  .services-header { margin-bottom: 36px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 0.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .service-card {
    background: var(--white);
    padding: 28px;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    transition: background 0.2s;
  }
  .service-card:hover { background: var(--off); }
  .service-card:nth-child(3n) { border-right: none; }
  .service-card:nth-child(n+4) { border-bottom: none; }
  .service-icon {
    width: 36px; height: 36px;
    border: 0.5px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--off);
  }
  .service-icon svg { width: 16px; height: 16px; color: var(--muted); }
  .service-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .service-list { list-style: none; }
  .service-list li {
    font-size: 13px;
    color: var(--muted);
    padding: 3px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .service-list li::before {
    content: '';
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
  }


  /* ── TEAM PHOTOS ── */
  .team-card {
    cursor: pointer;
  }
  .team-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }
  .team-img, .team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
  }
  .team-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .team-card:hover .team-img,
  .team-card:hover .team-avatar { transform: scale(1.04); }
  .team-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58,58,58,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
  }
  .team-hover-overlay svg { width: 12px; height: 12px; }
  .team-card:hover .team-hover-overlay { opacity: 1; }

  /* ── TEAM PROFILE MODAL ── */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(58,58,58,0.45);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
  }
  .modal-backdrop .modal-box {
    background: var(--white);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: translateY(16px);
    transition: transform 0.25s ease;
    display: block;
    grid-template-columns: unset;
    border: 0.5px solid var(--border);
  }
  .modal-backdrop.active .modal-box { transform: translateY(0); }
  .modal-backdrop .modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    font-size: 22px; color: var(--muted);
    cursor: pointer; z-index: 2;
    line-height: 1;
    transition: color 0.2s;
    width: auto; height: auto;
    border-radius: 0;
  }
  .modal-backdrop .modal-close:hover { color: var(--black); background: none; }
  .modal-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
  .modal-inner .modal-left {
    background: var(--off);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-right: 0.5px solid var(--border);
  }
  .modal-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: var(--off);
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .modal-name-block { text-align: center; }
  .modal-name { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
  .modal-role { font-size: 12px; color: var(--muted); }
  .modal-inner .modal-right { padding: 48px 40px; overflow-y: auto; max-height: 700px; }
  .modal-bio { font-size: 14px; color: var(--muted); line-height: 1.8; font-weight: 300; }
  .modal-bio span { display: block; margin-bottom: 16px; }
  .modal-bio span:last-child { margin-bottom: 0; }

  @media (max-width: 600px) {
    .modal-inner { grid-template-columns: 1fr; }
    .modal-inner .modal-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 24px; flex-direction: row; }
    .modal-photo { width: 80px; height: 80px; }
    .modal-name-block { text-align: left; }
    .modal-inner .modal-right { padding: 24px; }
  }

  /* ── TEAM (04) ── */
  #team { border-bottom: none; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
  }
  .team-card {
    border: 0.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
  }
  .team-photo-wrap {
    aspect-ratio: 1/1;
  }
  .team-info { padding: 12px 16px 14px; }
  .team-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
  .team-role { font-size: 11px; color: var(--muted); margin-bottom: 0; }
  .team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

  /* ── PROCESS (04) ── */
  #process {
    border-bottom: 0.5px solid var(--border);
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
    border: 0.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .process-step {
    padding: 28px 24px;
    border-right: 0.5px solid var(--border);
    background: var(--white);
    position: relative;
  }
  .process-step:last-child { border-right: none; }
  .step-num {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--border);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

  /* ── RESULTS (03) ── */
  #results {
    background: var(--off);
    border-bottom: 0.5px solid var(--border);
  }
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
  }
  .result-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    padding: 32px;
  }
  .result-metric {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--black);
  }
  .result-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
  }
  .result-detail {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .result-client {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
  }

  /* ── TESTIMONIALS (05) ── */
  #testimonials {
    background: var(--off);
    border-bottom: 0.5px solid var(--border);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
  }
  .testimonial-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .testimonial-quote {
    font-size: 14px;
    color: var(--black);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    padding-top: 24px;
  }
  .testimonial-quote::before {
    content: '\201C';
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    color: var(--border);
    position: absolute;
    top: -8px;
    left: 0;
    line-height: 1;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    flex-shrink: 0;
  }
  .testimonial-name {
    font-size: 13px;
    font-weight: 600;
  }
  .testimonial-company {
    font-size: 12px;
    color: var(--muted);
  }

  /* ── FAQ (07) ── */
  #faq {
    background: var(--off);
    border-bottom: 0.5px solid var(--border);
    margin-top: 80px;
    border-top: 0.5px solid var(--border);
  }
  .faq-list {
    margin-top: 36px;
    max-width: 720px;
  }
  .faq-item {
    border-bottom: 0.5px solid var(--border);
    padding: 20px 0;
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-question {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    gap: 16px;
  }
  .faq-toggle {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    color: var(--muted);
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
  }
  .faq-item.active .faq-toggle { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 12px;
  }
  .faq-answer p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 400;
  }

  /* ── FINAL CTA ── */
  #cta { border-bottom: 0.5px solid var(--border); }
  .cta-box {
    background: var(--off);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.03) 0%, transparent 70%);
  }
  .cta-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--white);
    border: 0.5px solid var(--border);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
  }
  .cta-box h2 {
    color: var(--black);
    font-size: clamp(28px, 4vw, 48px);
    max-width: 540px;
    margin: 0 auto 16px;
    position: relative;
  }
  .cta-sub {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 36px;
    font-weight: 400;
    position: relative;
  }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(to right, #3a3a3a 50%, var(--black) 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
  }
  .btn-white:hover {
    background-position: left center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .btn-white svg { width: 13px; height: 13px; }

  /* ── CTA FORM ── */
  .cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    text-align: left;
    position: relative;
  }
  .cta-box h2 { margin: 0 0 16px; text-align: left; }
  .cta-sub { text-align: left; margin-bottom: 28px; }
  .cta-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cta-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
  }
  .cta-perks li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--black); }

  .cta-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.01em;
  }
  .form-optional { color: var(--muted); font-weight: 400; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235e5e5e' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    padding-right: 36px;
    cursor: pointer;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #b0b0b0; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--black); }

  .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(to right, #3a3a3a 50%, var(--black) 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 4px;
  }
  .btn-submit:hover {
    background-position: left center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .btn-submit svg { width: 13px; height: 13px; }

  .form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
  }

  .form-success[hidden] {
    display: none !important;
  }

  .form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 48px 24px;
  }
  .form-success svg { width: 48px; height: 48px; color: var(--black); }
  .form-success h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-weight: 400;
  }
  .form-success p { font-size: 15px; color: var(--muted); max-width: 280px; }

  @media (max-width: 900px) {
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .modal-box {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s ease;
  }
  .modal-overlay.is-open .modal-box {
    transform: translateY(0);
  }
  .modal-left {
    padding: 48px 40px;
    border-right: 0.5px solid var(--border);
    display: flex; flex-direction: column; gap: 0;
  }
  .modal-left .cta-tag { margin-bottom: 20px; }
  .modal-left h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .modal-left .cta-sub { margin-bottom: 28px; }
  .modal-right { padding: 48px 40px; }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: 0.5px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 10;
  }
  .modal-close:hover { background: var(--off); }
  .modal-close svg { width: 12px; height: 12px; }

  @media (max-width: 720px) {
    .modal-box { grid-template-columns: 1fr; }
    .modal-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 36px 24px 28px; }
    .modal-right { padding: 28px 24px 36px; }
  }

  /* ── FOOTER ── */
  footer {
    padding: 48px 48px;
    border-top: 0.5px solid var(--border);
  }
  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-brand { max-width: 220px; }
  .footer-logo {
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
  }
  .footer-logo-img {
    height: 30px;
    width: auto;
    display: block;
    border-radius: 0;
  }
  .footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #1e1e1e;
    background: transparent;
    line-height: 1;
    transform: scaleY(1.2);
    transform-origin: center;
    display: inline-block;
    white-space: nowrap;
  }
  .footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.5; font-weight: 300; }
  .footer-links { display: flex; gap: 60px; }
  .footer-col h5 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .footer-col a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--black); }
  .footer-bottom {
    max-width: 1320px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 0.5px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy { font-size: 12px; color: var(--muted); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }
  .fade-up:nth-child(1) { animation-delay: 0.1s; }
  .fade-up:nth-child(2) { animation-delay: 0.2s; }
  .fade-up:nth-child(3) { animation-delay: 0.3s; }
  .fade-up:nth-child(4) { animation-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    footer { padding: 40px 20px; }
    #shader-hero { height: 100dvh; min-height: 560px; }
    #shader-hero .container { padding-top: 72px; padding-bottom: 16px; }
    .intro-grid, .blog-grid, .services-grid, .team-grid, .results-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; }
    h1 { font-size: clamp(28px, 7vw, 42px); }
    .hero-sub { font-size: 15px; margin-bottom: 24px; }
    .hero-actions { margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
    .cta-box { padding: 40px 20px; }
    .nav-links { display: none; }
  }

  @media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { flex-direction: column; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

/* ── BLOG POST READER MODAL ─────────────────────────────── */
.pr-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,20,20,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.pr-overlay.open {
  opacity: 1;
  visibility: visible;
}
.pr-sheet {
  background: #fafafa;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  overflow: hidden;
  flex-shrink: 0;
  transform: translateY(32px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.pr-overlay.open .pr-sheet {
  transform: translateY(0) scale(1);
}
.pr-banner {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pr-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pr-x {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(250,250,250,0.88);
  border: 0.5px solid rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.18s;
}
.pr-x:hover { background: #fff; }
.pr-x svg { width: 13px; height: 13px; }
.pr-content { padding: 36px 64px 44px; }
.pr-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  border: 0.5px solid var(--border);
  font-size: 11px; font-weight: 500;
  color: var(--muted);
  margin-bottom: 14px;
}
.pr-readtime { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pr-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--black);
}
.pr-lede {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  border-left: 3px solid #d4d4d4;
  padding-left: 18px;
  margin-bottom: 30px;
  font-style: italic;
}
.pr-body { font-size: 15px; line-height: 1.85; color: #2c2c2c; }
.pr-body p { margin-bottom: 18px; }
.pr-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 21px; font-weight: 400;
  letter-spacing: -0.01em;
  margin: 30px 0 12px;
  color: var(--black);
}
.pr-body ul { padding-left: 22px; margin-bottom: 18px; }
.pr-body ul li { margin-bottom: 8px; }
.pr-divider { height: 0.5px; background: var(--border); margin: 28px 0; }
.pr-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px 26px;
  border-top: 0.5px solid var(--border);
  gap: 16px;
}
.pr-foot-note { font-size: 13px; color: var(--muted); }
.pr-close-btn {
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.pr-close-btn:hover { opacity: 0.7; }
@media (max-width: 600px) {
  .pr-content { padding: 24px 22px 36px; }
  .pr-foot { padding: 14px 22px 22px; flex-direction: column; align-items: flex-start; }
  .pr-banner { height: 160px; }
}

/* ── LEGAL MODALS (Privacy Policy / Terms) ──────────────── */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.legal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px 48px 40px;
  position: relative;
}
.legal-box h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 4px;
}
.legal-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}
.legal-box h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 8px;
}
.legal-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.legal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.legal-close:hover { color: var(--black); }
@media (max-width: 600px) {
  .legal-box { padding: 36px 24px 28px; }
  .legal-box h2 { font-size: 22px; }
}
