  html {
    scroll-behavior: smooth;
  }

  :root {
    --ink: #0A0A0B;
    --ink2: #3A3A3C;
    --smoke: #F4F2EE;
    --white: #FFFFFF;
    --gold: #C8961E;
    --gold-light: #F5E5B5;
    --gold-dark: #8B6410;
    --teal: #0F6E56;
    --teal-light: #E1F5EE;
    --teal-mid: #1D9E75;
    --accent: #D85A30;
    --border: rgba(10,10,11,0.1);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 5%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.25rem;
    color: var(--ink); text-decoration: none;
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--gold); }
  .nav-logo-img { height: 28px; width: auto; display: block; }
  .nav-logo { display: flex; align-items: center; }

  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.875rem; font-weight: 500;
    color: var(--ink2); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }

  .nav-cta {
    background: var(--ink); color: var(--white);
    border: none; border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--teal); transform: translateY(-1px); }

  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 0.4rem; color: var(--ink);
  }
  .nav-toggle svg { display: block; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
    background: var(--smoke);
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .hero-photo-col {
    position: relative;
    display: flex; align-items: flex-start; justify-content: center;
    align-self: start;
  }

  .hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
  }

  .hero-photo-frame::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 32px 32px 0 32px;
    background: linear-gradient(160deg, rgba(200,150,30,0.18) 0%, rgba(15,110,86,0.12) 100%);
    transform: translate(12px, 12px);
    z-index: 0;
  }

  .hero-photo-frame img {
    position: relative; z-index: 1;
    width: 100%;
    border-radius: 32px 32px 0 32px;
    display: block;
    object-fit: cover;
    object-position: top center;
    filter: contrast(1.04) brightness(1.02);
  }

  .hero-photo-badge {
    position: absolute; z-index: 2;
    bottom: 2rem; left: -1.5rem;
    background: var(--ink);
    color: white;
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    font-size: 0.8rem; font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex; flex-direction: column; gap: 0.15rem;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .hero-photo-badge strong {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
  }

  .hero-photo-badge span { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo-col { order: -1; max-width: 320px; margin: 0 auto; }
    .hero-photo-badge { left: 0; bottom: 1rem; }
    .services-pillars { grid-template-columns: 1fr; gap: 2rem; }
  }

  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(10,10,11,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,10,11,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hero-blob {
    position: absolute; right: -10%; top: 10%;
    width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    background: radial-gradient(circle at 40% 40%, #C8961E22, #0F6E5618, transparent 70%);
    animation: blobmorph 12s ease-in-out infinite alternate;
    pointer-events: none;
  }

  @keyframes blobmorph {
    0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
    50%  { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
    100% { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
  }

  .hero-content { position: relative; max-width: 820px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light); color: var(--teal);
    border: 1px solid rgba(15,110,86,0.2);
    border-radius: 50px; padding: 0.4rem 1rem;
    font-size: 0.8rem; font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal-mid);
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease 0.1s both;
  }

  .hero-title .name-line {
    display: block;
    max-width: 11ch;
    text-wrap: balance;
  }

  .hero-title .role-line {
    display: block;
    max-width: 34ch;
    font-size: clamp(1.4rem, 2.6vw, 2.05rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-top: 0.6rem;
    text-wrap: balance;
  }

  .hero-title .highlight {
    color: var(--gold);
    position: relative;
  }

  .hero-title .highlight::after {
    content: '';
    position: absolute; bottom: 2px; left: 0; right: 0;
    height: 3px; background: var(--gold);
    border-radius: 2px; opacity: 0.35;
  }

  .hero-title .role-line .highlight::after {
    height: 2px; bottom: 1px;
  }

  .hero-sub {
    font-size: 1.15rem; color: var(--ink2);
    max-width: 520px; margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeSlideUp 0.6s ease 0.2s both;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeSlideUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    background: var(--teal); color: var(--white);
    border: none; border-radius: 50px;
    padding: 0.85rem 2rem;
    font-family: var(--font-body); font-size: 1rem; font-weight: 500;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(15,110,86,0.25);
  }
  .btn-primary:hover { background: #0a5c45; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,110,86,0.35); }

  .btn-outline {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-family: var(--font-body); font-size: 1rem; font-weight: 500;
    cursor: pointer; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; margin: 4rem auto 0; max-width: 1100px;
    animation: fadeSlideUp 0.6s ease 0.4s both;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    position: relative;
  }

  .stat-item { text-align: center; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--ink); letter-spacing: -1px;
    display: block;
  }
  .stat-num span { color: var(--gold); }
  .stat-label { font-size: 0.8rem; color: var(--ink2); font-weight: 400; }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 6rem 5%; }
  .section-label {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -1px;
    line-height: 1.1; color: var(--ink);
    margin-bottom: 1rem;
  }
  .section-sub { color: var(--ink2); max-width: 560px; font-size: 1.05rem; }

  /* ── LOGOS TICKER ── */
  #logos {
    padding: 2.5rem 0;
    background: var(--ink);
    overflow: hidden;
  }
  .logos-track {
    display: flex; gap: 3rem;
    animation: ticker 20s linear infinite;
    width: max-content;
  }
  .logo-tag {
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 1px; color: rgba(255,255,255,0.5);
    white-space: nowrap; padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── METRICS STRIP ── */
  #metrics {
    background: linear-gradient(135deg, var(--teal) 0%, #085041 100%);
    padding: 4rem 5%;
    color: white;
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1100px; margin: 0 auto;
  }
  .metric-card {
    text-align: center; padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    transition: transform 0.2s, background 0.2s;
  }
  .metric-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
  .metric-big {
    font-family: var(--font-display);
    font-size: 1.9rem; font-weight: 800;
    color: var(--gold-light);
    display: block; margin-bottom: 0.25rem;
  }
  .metric-desc { font-size: 0.85rem; opacity: 0.8; }

  /* ── ABOUT ── */
  #about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    padding: 7rem 5%;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: var(--smoke);
    border-radius: 24px; padding: 2.5rem;
    position: relative; overflow: hidden;
  }
  .about-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: var(--gold-light); opacity: 0.5;
  }

  .about-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
    color: white; margin-bottom: 1.2rem; position: relative;
    overflow: hidden;
  }
  .about-avatar img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  }

  .about-name {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800; color: var(--ink);
    letter-spacing: -0.5px; margin-bottom: 0.25rem;
  }

  .about-role { font-size: 0.875rem; color: var(--ink2); margin-bottom: 1.5rem; }

  .skill-chips {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
  }

  .chip {
    background: white; border: 1px solid var(--border);
    border-radius: 50px; padding: 0.3rem 0.85rem;
    font-size: 0.75rem; color: var(--ink2); font-weight: 500;
  }

  .floating-badge {
    position: absolute; bottom: -20px; right: 10%;
    background: var(--ink); color: white;
    border-radius: 14px; padding: 0.8rem 1.2rem;
    font-size: 0.8rem; font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .floating-badge strong { font-family: var(--font-display); font-size: 1.1rem; }

  .about-text h2 { margin-bottom: 1.25rem; }
  .about-text p { color: var(--ink2); margin-bottom: 1.25rem; font-size: 1.02rem; }

  .cert-list {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
  }
  .cert-badge {
    background: var(--teal-light); color: var(--teal);
    border: 1px solid rgba(15,110,86,0.2);
    border-radius: 8px; padding: 0.35rem 0.8rem;
    font-size: 0.75rem; font-weight: 600;
    text-decoration: none; display: inline-block;
  }

  /* ── SERVICES ── */
  #services { background: var(--smoke); }
  .services-header { margin-bottom: 3.5rem; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
  }
  .services-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
  }
  .pillar-label {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: var(--teal); letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .pillar-label span { font-size: 1.2rem; }
  .pillar-cards { display: flex; flex-direction: column; gap: 1.5rem; }

  .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--teal); border-radius: 20px 20px 0 0;
    transform: scaleX(0); transition: transform 0.25s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
  }

  .service-title {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700;
    color: var(--ink); margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
  }

  .service-desc { color: var(--ink2); font-size: 0.9rem; line-height: 1.7; }

  /* ── CASE STUDIES ── */
  #case-studies { background: var(--white); }
  .cases-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
  }

  .case-card {
    border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none; color: inherit;
    display: block;
  }
  .case-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.09); }

  .case-thumb {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
    position: relative; overflow: hidden;
  }

  .case-thumb-1 { background: linear-gradient(135deg, #0F6E56, #1D9E75); color: rgba(255,255,255,0.15); }
  .case-thumb-2 { background: linear-gradient(135deg, #C8961E, #EF9F27); color: rgba(255,255,255,0.15); }
  .case-thumb-3 { background: linear-gradient(135deg, #185FA5, #378ADD); color: rgba(255,255,255,0.15); }

  .case-tag {
    position: absolute; top: 1rem; left: 1rem;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    color: white; border-radius: 50px;
    padding: 0.3rem 0.8rem; font-size: 0.75rem; font-weight: 600;
  }

  .case-result {
    position: absolute; bottom: 1rem; right: 1rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: var(--gold-light); border-radius: 10px;
    padding: 0.5rem 1rem;
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  }

  .case-body { padding: 1.5rem; }
  .case-category { font-size: 0.75rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
  .case-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
  .case-desc { font-size: 0.875rem; color: var(--ink2); }

  /* ── TOOLS ── */
  #tools { background: #1A1A2E; color: white; }
  .tools-header { margin-bottom: 3.5rem; }
  .tools-header .section-label { color: var(--gold); }
  .tools-header .section-title { color: white; }
  .tools-header .section-sub { color: rgba(255,255,255,0.6); }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
  }

  .tool-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 2rem;
    background: rgba(255,255,255,0.04);
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
  }
  .tool-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); border-color: rgba(200,150,30,0.4); }

  .tool-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; margin-bottom: 1rem;
  }

  .tool-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(200,150,30,0.15); border: 1px solid rgba(200,150,30,0.3);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  }

  .tool-badge {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    padding: 0.25rem 0.65rem; border-radius: 50px;
  }
  .tool-badge.free { background: rgba(29,158,117,0.2); color: #5DCAA5; border: 1px solid rgba(29,158,117,0.3); }
  .tool-badge.pro  { background: rgba(200,150,30,0.2); color: var(--gold-light); border: 1px solid rgba(200,150,30,0.3); }

  .tool-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
  .tool-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 1.25rem; }

  .tool-features { list-style: none; margin-bottom: 1.5rem; }
  .tool-features li {
    font-size: 0.82rem; color: rgba(255,255,255,0.55);
    padding: 0.25rem 0; display: flex; align-items: center; gap: 0.5rem;
  }
  .tool-features li::before { content: '→'; color: var(--teal-mid); font-weight: 700; }

  .tool-cta {
    display: flex; gap: 0.75rem;
  }

  .tool-btn {
    flex: 1; text-align: center; border-radius: 10px;
    padding: 0.65rem; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all 0.2s;
    border: none;
  }
  .tool-btn.try { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
  .tool-btn.try:hover { background: rgba(255,255,255,0.15); }
  .tool-btn.upgrade { background: var(--gold); color: var(--gold-dark); font-weight: 700; }
  .tool-btn.upgrade:hover { background: var(--gold-light); }

  /* ── BLOG ── */
  #blog { background: var(--smoke); }
  .blog-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
  }

  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  .blog-card {
    background: white; border-radius: 20px;
    overflow: hidden; border: 1px solid var(--border);
    text-decoration: none; color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
  .blog-card.featured .blog-img { height: 240px; }
  .blog-img { height: 160px; background: var(--smoke); position: relative; overflow: hidden; }
  .blog-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
    color: rgba(255,255,255,0.2);
  }
  .bimg-1 { background: linear-gradient(135deg, #0a5c45, #0F6E56); }
  .bimg-2 { background: linear-gradient(135deg, #8B6410, #C8961E); }
  .bimg-3 { background: linear-gradient(135deg, #3A3A3C, #0A0A0B); }

  .post-tag {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.25rem 0.7rem; border-radius: 50px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  }
  .tag-ec   { background: var(--teal-light); color: var(--teal); }
  .tag-ppc  { background: var(--gold-light); color: var(--gold-dark); }
  .tag-tool { background: rgba(10,10,11,0.1); color: var(--ink2); }

  .blog-body { padding: 1.25rem; flex: 1; }
  .post-meta { font-size: 0.75rem; color: var(--ink2); margin-bottom: 0.5rem; }
  .post-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 0.5rem; }
  .featured .post-title { font-size: 1.25rem; }
  .post-excerpt { font-size: 0.82rem; color: var(--ink2); line-height: 1.6; }

  /* ── CTA ── */
  #contact {
    background: var(--white);
    text-align: center; padding: 8rem 5%;
    position: relative; overflow: hidden;
  }
  .contact-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(15,110,86,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-inner { position: relative; max-width: 640px; margin: 0 auto; }
  #contact .section-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }
  #contact .section-sub { margin: 1.25rem auto 2.5rem; text-align: center; }

  .contact-chips {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 3rem;
  }
  .contact-chip {
    background: var(--smoke); border: 1px solid var(--border);
    border-radius: 50px; padding: 0.5rem 1.1rem;
    font-size: 0.82rem; color: var(--ink2); display: flex; align-items: center; gap: 0.4rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.5);
    padding: 3rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo {
    font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
    color: white; text-decoration: none;
  }
  .footer-logo span { color: var(--gold); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-links a:hover { color: white; }
  .footer-copy { font-size: 0.8rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #about { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { order: -1; }
    .floating-badge { bottom: -16px; }

    .nav-toggle { display: block; }
    nav .nav-links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
      padding: 0.5rem 5% 1rem;
    }
    nav.nav-open .nav-links { display: flex; }
    nav .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
    nav .nav-links a:last-child { border-bottom: none; }
  }

  @media (max-width: 640px) {
    .hero-stats { gap: 1.5rem; }
    #metrics { padding: 3rem 5%; }
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--smoke); }
  .testimonials-header { margin-bottom: 3.5rem; text-align: center; }
  .testimonials-header .section-label,
  .testimonials-header .section-sub { margin-left: auto; margin-right: auto; }
  .testimonials-header .section-sub { text-align: center; }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
  }
  .testi-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 2rem;
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
  .testi-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .testi-quote { color: var(--ink); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.5rem; flex-grow: 1; }
  .testi-quote::before { content: '“'; }
  .testi-quote::after { content: '”'; }
  .testi-person { display: flex; align-items: center; gap: 0.85rem; }
  .testi-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--teal); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1rem; flex-shrink: 0;
  }
  .testi-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--ink); }
  .testi-role { font-size: 0.8rem; color: var(--ink2); }

  /* ── LEAD MAGNET + NEWSLETTER ── */
  #grow { background: var(--ink); color: #fff; }
  .grow-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  }
  .grow-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 2.5rem;
  }
  .grow-card .section-label { color: var(--gold); }
  .grow-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.7rem; letter-spacing: -0.5px; line-height: 1.15;
    color: #fff; margin-bottom: 1rem;
  }
  .grow-text { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 1.75rem; }
  .grow-list { list-style: none; margin-bottom: 1.75rem; }
  .grow-list li {
    color: rgba(255,255,255,0.8); font-size: 0.95rem;
    padding-left: 1.6rem; position: relative; margin-bottom: 0.65rem;
  }
  .grow-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
  .grow-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .grow-form input {
    flex: 1; min-width: 200px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px; padding: 0.85rem 1.4rem;
    color: #fff; font-family: var(--font-body); font-size: 0.95rem;
  }
  .grow-form input::placeholder { color: rgba(255,255,255,0.4); }
  .grow-form input:focus { outline: none; border-color: var(--gold); }
  .grow-form button {
    background: var(--gold); color: #3a2a06;
    border: none; border-radius: 50px;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: transform 0.15s, background 0.2s; white-space: nowrap;
  }
  .grow-form button:hover { transform: translateY(-2px); background: var(--gold-light); }
  .grow-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.9rem; }
  .grow-success { color: var(--teal-light); font-size: 0.95rem; margin-top: 1rem; display: none; }
  @media (max-width: 860px) { .grow-inner { grid-template-columns: 1fr; gap: 2rem; } }

  /* ── Single Post / Case Study Content Styling ───────────────── */
  .post-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
  }
  .post-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2rem 0 0.75rem;
  }
  .post-content p { margin: 0 0 1.25rem; }
  .post-content ul, .post-content ol { margin: 0 0 1.25rem; padding-left: 1.4rem; }
  .post-content li { margin-bottom: 0.6rem; }
  .post-content strong { color: var(--ink); font-weight: 700; }
  .post-content a { color: var(--teal); text-decoration: underline; }
  .post-content img { width: 100%; border-radius: 12px; margin: 1.5rem 0; display: block; }
  .post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 0.25rem 0 0.25rem 1.25rem;
    margin: 1.75rem 0;
    font-style: italic;
    color: #555;
  }

  /* Snapshot box — wrap snapshot facts in a <div class="snapshot-box"> in the post editor */
  .snapshot-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    background: var(--smoke);
    border-radius: 16px;
    padding: 1.75rem;
    margin: 0 0 2.5rem;
  }
  .snapshot-box .snap-item { text-align: left; }
  .snapshot-box .snap-label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px;
    color: #999; margin-bottom: 0.3rem; display: block;
  }
  .snapshot-box .snap-value {
    font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink);
  }

  /* Stat callouts — for embedding result numbers inline in the post body */
  .stat-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
  }
  .stat-callouts .stat-item {
    background: var(--ink); border-radius: 14px; padding: 1.25rem; text-align: center;
  }
  .stat-callouts .stat-number {
    font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--gold-light);
  }
  .stat-callouts .stat-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem;
  }

  /* ── BRAND MARQUEE (grayscale partner-logo carousel) ── */
  .brand-marquee-wrap {
    background: var(--smoke);
    padding: 3rem 0;
    overflow: hidden;
  }
  .brand-marquee-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 5%;
  }
  .brand-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brand-marquee-scroll 38s linear infinite;
  }
  .brand-marquee-wrap:hover .brand-marquee-track {
    animation-play-state: paused;
  }
  @keyframes brand-marquee-scroll {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  .brand-logo-card {
    flex: 0 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.75rem;
    margin: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    min-width: 140px;
  }
  .brand-logo-card img {
    max-height: 32px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  .brand-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
  .brand-logo-card.brand-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink2);
    letter-spacing: -0.02em;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  .brand-logo-card.brand-logo-text:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--teal);
  }
  @media (max-width: 768px) {
    .brand-logo-card { height: 52px; min-width: 110px; padding: 0.75rem 1.25rem; }
    .brand-logo-card img { max-height: 24px; max-width: 100px; }
  }
