  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { overflow-x: hidden; }

  :root {
    --bg:       #0C0C0C;
    --surface:  #161616;
    --surface2: #1a1a1a;
    --border:   #2A2A2A;
    --accent:   #D42B2B;
    --accent2:  #FF3E3E;
    --text:     #EDEAE4;
    --muted:    #808080;
    --faint:    #1E1E1E;
    --ff-display: 'Bebas Neue', sans-serif;
    --ff-body:    'Barlow', sans-serif;
    --ff-cond:    'Barlow Condensed', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 15px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent); }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 1000;
  }

  /* ── NAV ── */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 900;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    border-bottom: 1px solid var(--border);
    background: rgba(12,12,12,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-mobile-extras { display: none !important; }
  .nav-links a {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; transition: color .2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    font-family: var(--ff-cond); font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--bg); background: var(--accent); border: none;
    padding: 9px 20px; cursor: pointer; text-decoration: none;
    transition: background .2s; display: inline-block;
  }
  .nav-cta:hover { background: var(--accent2); }
  .nav-lang {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
    background: transparent; border: 1px solid var(--border);
    padding: 4px 10px; cursor: pointer; transition: all .2s;
  }
  .nav-lang:hover { border-color: var(--accent); color: var(--accent); }
  .nav-client {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
    text-decoration: none; border: 1px solid var(--border);
    padding: 7px 14px; transition: all .2s;
  }
  .nav-client:hover { border-color: var(--accent); color: var(--accent); }
  .nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  @media (max-width: 1400px) {
    .nav-client { display: none !important; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 10px; letter-spacing: 0.1em; }
  }
  /* flags CSS removed — using text-only lang switcher */

  /* Hide TranslatePress default floating switcher */
  .trp-language-switcher.trp-floating-switcher { display: none !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative; overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, #222 1px, transparent 1px);
    background-size: 32px 32px; opacity: 0.5;
  }
  #hero::after {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent);
  }
  .hero-kicker {
    font-family: var(--ff-cond); font-size: 12px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 20px; opacity: 0;
    animation: fadeUp .6s .2s forwards;
  }
  .hero-headline {
    font-family: var(--ff-display);
    font-size: clamp(68px, 9.5vw, 140px);
    line-height: 0.92; letter-spacing: 0.01em;
    text-transform: uppercase; color: var(--text);
    max-width: 16ch; opacity: 0;
    animation: fadeUp .7s .35s forwards;
  }
  .hero-headline em { font-style: normal; color: var(--accent); }
  .hero-sub {
    margin-top: 28px; font-size: 17px; font-weight: 450;
    color: #BDBDBD; max-width: 520px; line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 40px rgba(12,12,12,0.9);
    opacity: 0; animation: fadeUp .7s .5s forwards;
  }
  .hero-actions {
    margin-top: 44px; display: flex; align-items: center; gap: 24px;
    opacity: 0; animation: fadeUp .7s .65s forwards;
  }
  .hero-meta {
    position: absolute; right: 48px; bottom: 80px;
    display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
    opacity: 0; animation: fadeIn .8s .9s forwards;
    max-width: 45%;
  }
  @media (max-width: 1400px) {
    .hero-meta { display: none !important; }
  }
  .hero-meta-item {
    font-family: var(--ff-cond); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  }
  .hero-meta-item strong { color: var(--text); font-weight: 600; margin-right: 8px; }

  /* ── BUTTONS ── */
  .btn-primary {
    font-family: var(--ff-cond); font-size: 14px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--bg); background: var(--accent); border: none;
    padding: 16px 32px; cursor: pointer; text-decoration: none;
    transition: background .2s, transform .15s; display: inline-block;
  }
  .btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
  .btn-ghost {
    font-family: var(--ff-cond); font-size: 13px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    transition: color .2s;
  }
  .btn-ghost::after { content: '→'; transition: transform .2s; }
  .btn-ghost:hover { color: var(--text); }
  .btn-ghost:hover::after { transform: translateX(4px); }

  /* ── STATS BAR ── */
  #stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--surface); border-bottom: 1px solid var(--border);
  }
  .stat-block {
    padding: 36px 24px; border-right: 1px solid var(--border);
    display: flex; align-items: center; gap: 18px;
  }
  .stat-block:last-child { border-right: none; }
  .stat-num {
    font-family: var(--ff-display); font-size: 52px;
    color: var(--accent); line-height: 1;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 43, 43, 0.15);
  }
  .stat-info {}
  .stat-label {
    font-family: var(--ff-cond); font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--text);
    display: block; margin-bottom: 2px;
  }
  .stat-sub {
    font-size: 12px; color: var(--muted); line-height: 1.4;
  }

  /* ── COMMON SECTION ── */
  section { padding: 100px 48px; position: relative; }
  .section-label {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: '//'; }
  .section-label::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--accent); opacity: 0.5;
  }
  .section-title {
    font-family: var(--ff-display);
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: 0.02em; line-height: 1;
    color: var(--text); text-transform: uppercase;
  }
  .section-title span { color: var(--accent); }

  /* ── COMPLEXITY SECTION ── */
  #complexity { background: var(--bg); border-bottom: 1px solid var(--border); }
  .complexity-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-top: 56px;
  }
  .complexity-body {
    font-size: 17px; line-height: 1.8; color: var(--muted); margin-top: 20px;
  }
  .complexity-body strong { color: var(--text); font-weight: 500; }
  .complexity-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border);
  }
  .complexity-card {
    background: var(--surface); padding: 28px 24px;
    transition: background .25s; position: relative;
  }
  .complexity-card:hover { background: var(--surface2); }
  .complexity-card-icon {
    font-size: 28px; margin-bottom: 12px;
  }
  .complexity-card-title {
    font-family: var(--ff-cond); font-size: 15px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text); margin-bottom: 8px;
  }
  .complexity-card-desc {
    font-size: 13px; color: var(--muted); line-height: 1.65;
  }

  /* ── FORMATS SECTION ── */
  #formats { background: var(--surface); border-bottom: 1px solid var(--border); }
  .formats-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
  }
  .formats-intro {
    font-size: 16px; color: var(--muted); max-width: 400px; line-height: 1.7;
  }
  .formats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
  }
  .formats-tier1 {
    grid-template-columns: 1fr 1fr;
  }
  .formats-tier2 {
    grid-template-columns: 1fr 1fr;
  }
  .formats-tier2-label {
    font-family: var(--ff-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 40px;
    margin-bottom: 1px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .format-primary::before {
    width: 3px !important;
  }
  .format-card {
    background: var(--surface); padding: 36px 28px;
    transition: background .25s; cursor: default;
    position: relative; overflow: hidden;
  }
  .format-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 0; background: var(--accent); transition: width .3s ease;
  }
  .format-card:hover::before { width: 3px; }
  .format-card:hover { background: #1c1c1c; }
  .format-num {
    font-family: var(--ff-display); font-size: 40px;
    color: var(--border); line-height: 1; margin-bottom: 18px;
    transition: color .3s;
  }
  .format-card:hover .format-num { color: var(--accent); opacity: 0.5; }
  .format-title {
    font-family: var(--ff-cond); font-size: 17px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--text); margin-bottom: 12px;
  }
  .format-desc {
    font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px;
  }
  .format-tags { display: flex; flex-wrap: wrap; gap: 5px; }
  .tag {
    font-family: var(--ff-cond); font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); border: 1px solid var(--border); padding: 3px 7px;
  }

  /* ── CLIENTS ── */
  #clients { padding: 64px 48px; border-bottom: 1px solid var(--border); }
  .clients-label {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
  }
  .clients-label::before { content: '//'; color: var(--accent); }
  .clients-label::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
  }
  .clients-logos {
    display: flex; flex-wrap: wrap; align-items: center;
  }
  .client-logo {
    flex: 1; min-width: 100px;
    padding: 24px 28px; border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-display); font-size: 20px;
    letter-spacing: 0.08em; color: var(--muted);
    transition: color .25s; cursor: default; text-align: center;
    display: flex; align-items: center; justify-content: center;
    white-space: nowrap;
  }
  .client-logo:hover { color: var(--text); }
  .client-logo.small { font-size: 15px; letter-spacing: 0.05em; }

  /* ── MID CTA ── */
  #mid-cta {
    padding: 100px 48px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .mid-cta-headline {
    font-family: var(--ff-display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95; text-transform: uppercase;
    color: var(--text); margin-bottom: 24px;
  }
  .mid-cta-headline span { color: var(--accent); }
  .mid-cta-body {
    font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 36px;
    max-width: 440px;
  }
  .mid-cta-visual {
    aspect-ratio: 4/3;
    background: var(--faint);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .mid-cta-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 10px,
      rgba(212,43,43,0.03) 10px, rgba(212,43,43,0.03) 11px
    );
  }
  .mid-cta-placeholder {
    font-family: var(--ff-display);
    font-size: 96px; color: var(--border);
    letter-spacing: 0.02em; line-height: 1; text-align: center;
  }

  /* ── PROCESS ── */
  #process {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 100px 48px;
  }
  .process-intro {
    font-size: 15px; color: var(--muted); max-width: 560px;
    line-height: 1.7; margin-top: 16px; margin-bottom: 56px;
  }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
  }
  .process-step {
    background: var(--bg); padding: 40px 28px;
    border-right: none; position: relative;
  }
  .process-step-num {
    font-family: var(--ff-display); font-size: 56px;
    color: var(--border); line-height: 1; margin-bottom: 14px;
    transition: color .3s;
  }
  .process-step:hover .process-step-num { color: var(--accent); opacity: 0.4; }
  .process-step-title {
    font-family: var(--ff-cond); font-size: 16px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text); margin-bottom: 10px;
  }
  .process-step-desc {
    font-size: 13px; color: var(--muted); line-height: 1.7;
  }

  /* ── TESTIMONIALS ── */
  #testimonials {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 120px 48px;
  }
  .testimonials-grid {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
  }
  .testimonial-card {
    background: var(--surface);
    display: flex;
    transition: background .25s;
  }
  .testimonial-card:hover {
    background: var(--surface2);
  }
  .testimonial-accent {
    width: 3px;
    flex-shrink: 0;
    background: var(--accent);
    opacity: 0.35;
    transition: opacity .3s;
  }
  .testimonial-card:hover .testimonial-accent {
    opacity: 1;
  }
  .testimonial-body {
    padding: 52px 60px;
    position: relative;
    flex: 1;
  }
  .testimonial-mark {
    font-family: var(--ff-display);
    font-size: 96px;
    line-height: 0.6;
    color: var(--accent);
    opacity: 0.12;
    position: absolute;
    top: 40px;
    left: 52px;
    pointer-events: none;
  }
  .testimonial-text {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding-left: 32px;
  }
  .testimonial-text p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
    opacity: 0.82;
    font-weight: 400;
  }
  .testimonial-text p:last-child {
    margin-bottom: 0;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    padding-left: 32px;
    border-top: 1px solid var(--border);
  }
  .testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter .3s;
    flex-shrink: 0;
  }
  .testimonial-card:hover .testimonial-avatar {
    filter: grayscale(0%);
  }
  .testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .testimonial-name {
    font-family: var(--ff-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
  }
  .testimonial-role {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.01em;
    font-weight: 400;
  }

  /* ── FAQ ── */
  #faq { background: var(--surface); border-bottom: 1px solid var(--border); }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    margin-top: 56px;
  }
  .faq-item {
    background: var(--surface); padding: 32px 36px;
    transition: background .2s; cursor: pointer;
  }
  .faq-item:hover { background: var(--surface2); }
  .faq-q {
    font-family: var(--ff-cond); font-size: 16px; font-weight: 700;
    letter-spacing: 0.03em; color: var(--text); margin-bottom: 12px;
    display: flex; align-items: flex-start; gap: 12px;
    line-height: 1.3;
  }
  .faq-q::before {
    content: 'Q';
    font-family: var(--ff-display); font-size: 22px;
    color: var(--accent); line-height: 1; flex-shrink: 0;
    margin-top: 1px;
  }
  .faq-a {
    font-size: 13px; color: var(--muted); line-height: 1.75;
    padding-left: 34px;
  }

  /* ── ABOUT ── */
  #about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    background: var(--bg);
  }
  .about-body {
    font-size: 16px; line-height: 1.85; color: var(--muted);
    margin-top: 20px; margin-bottom: 32px;
  }
  .about-body strong { color: var(--text); font-weight: 500; }
  .about-creds {
    margin-top: 40px; border-top: 1px solid var(--border); padding-top: 28px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .about-cred {
    display: flex; align-items: baseline; gap: 12px; font-size: 13px;
  }
  .about-cred-label {
    font-family: var(--ff-cond); font-size: 10px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent); min-width: 90px;
  }
  .about-cred-val { color: var(--muted); }
  .about-visual {
    position: relative; height: 520px;
    border: 1px solid var(--border); overflow: hidden;
  }
  .about-visual img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: grayscale(15%) contrast(1.05);
  }
  .about-visual-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 32px;
    background: linear-gradient(to top, rgba(12,12,12,0.95) 0%, transparent 100%);
  }
  .about-visual-name {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 4px;
  }
  .about-visual-quote {
    font-size: 15px; font-weight: 300; font-style: italic;
    color: var(--text); line-height: 1.5;
  }

  /* ── FINAL CTA ── */
  #final-cta {
    background: var(--accent);
    padding: 88px 48px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
  }
  .final-cta-headline {
    font-family: var(--ff-display);
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.95; text-transform: uppercase;
    color: var(--bg); margin-bottom: 20px;
  }
  .final-cta-sub {
    font-size: 17px; color: rgba(12,12,12,0.7);
    max-width: 560px; line-height: 1.65; margin-bottom: 44px;
  }
  .btn-dark {
    font-family: var(--ff-cond); font-size: 14px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); background: var(--bg); border: none;
    padding: 18px 40px; cursor: pointer; text-decoration: none;
    display: inline-block; transition: background .2s;
  }
  .btn-dark:hover { background: #1a1a1a; }
  .final-cta-logos {
    margin-top: 56px; display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 32px; opacity: 0.35;
  }
  .final-cta-logo {
    font-family: var(--ff-display); font-size: 18px;
    letter-spacing: 0.08em; color: var(--bg);
  }

  /* ── CONTACT ── */
  #contact { background: var(--surface); border-top: 1px solid var(--border); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; margin-top: 56px;
  }
  .contact-detail {
    display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px;
  }
  .contact-detail-label {
    font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); min-width: 80px;
  }
  .contact-detail-val { font-size: 14px; color: var(--muted); }
  .contact-body {
    font-size: 15px; color: var(--muted); line-height: 1.75;
    margin-bottom: 36px; max-width: 400px;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border); margin-bottom: 1px;
  }
  .form-row.full { grid-template-columns: 1fr; }
  .form-field {
    background: var(--bg); padding: 18px 20px;
    display: flex; flex-direction: column; gap: 5px;
    transition: background .2s;
  }
  .form-field:focus-within { background: #141414; }
  .form-field label {
    font-family: var(--ff-cond); font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: transparent; border: none; outline: none;
    color: var(--text); font-family: var(--ff-body);
    font-size: 14px; font-weight: 300; resize: none; width: 100%;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--muted); }
  .form-field select option { background: var(--surface); color: var(--text); }
  .form-submit {
    margin-top: 1px; padding: 20px 36px; background: var(--accent);
    border: none; font-family: var(--ff-cond); font-size: 14px;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--bg); cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; width: 100%;
  }
  .form-submit:hover { background: var(--accent2); transform: translateY(-1px); }
  .form-submit::after { content: '→'; font-size: 18px; }

  /* ── FOOTER ── */
  .site-footer {
    border-top: 1px solid var(--border);
    padding: 28px 48px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    background: var(--bg);
  }
  .footer-legal {
    font-family: var(--ff-cond); font-size: 11px;
    letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase;
  }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a {
    font-family: var(--ff-cond); font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); text-decoration: none;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-links a svg { vertical-align: middle; }
  .footer-links a svg { fill: var(--muted); transition: fill .2s; }
  .footer-links a:hover svg { fill: var(--text); }
  .site-footer { padding-bottom: 80px; }

  /* ── ANIMATIONS ── */
  @keyframes heroZoom {
    0%   { transform: scale(1) translate(0, 0); }
    25%  { transform: scale(1.15) translate(-2%, -1%); }
    50%  { transform: scale(1.06) translate(1.2%, 0.6%); }
    75%  { transform: scale(1.18) translate(-0.8%, -1.5%); }
    100% { transform: scale(1) translate(0, 0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  .reveal {
    opacity: 0; transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  /* Mobile nav toggle */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
  .nav-toggle span { display: block; width: 28px; height: 2.5px; background: var(--text); margin: 6px 0; transition: all .3s; border-radius: 1px; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  @media (max-width: 1100px) {
    .site-nav {
      padding: 0 16px;
      height: 56px;
      border-bottom: none;
      background: rgba(12,12,12,0.85);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
    }
    .nav-toggle {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      padding: 12px;
      min-width: 48px;
      min-height: 48px;
      gap: 0;
    }
    .nav-toggle span {
      width: 26px !important;
      height: 2px !important;
      margin: 4px 0 !important;
      background: var(--text) !important;
      display: block !important;
      border-radius: 1px;
    }
    .nav-logo {
      order: -1;
    }
    .nav-right { display: none !important; }
    .nav-links {
      display: none; position: fixed; top: 56px; left: 0; right: 0;
      background: rgba(12,12,12,0.97); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
      flex-direction: column; padding: 32px 24px; gap: 24px;
      border-bottom: 1px solid var(--border); z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; letter-spacing: 0.08em; color: var(--text); }
    .nav-mobile-extras { display: block !important; }
    .nav-mobile-extras .nav-cta { font-size: 11px; padding: 10px 16px; }
    .nav-mobile-extras .nav-lang { font-size: 11px; padding: 8px 14px; }
    section, #mid-cta, #process, #testimonials, #contact { padding: 72px 24px; }
    #hero { padding: 0 24px 64px; padding-top: 72px; min-height: 100svh; min-height: -webkit-fill-available; }
    .hero-scroll-hint { display: none !important; }
    .hero-kicker { font-size: 10px; }
    .hero-headline { font-size: clamp(36px, 9vw, 140px) !important; }
    .hero-sub { font-size: 15px; max-width: 100%; }
    .hero-meta { display: none; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .nav-cta { padding: 12px 20px !important; min-height: 44px; }
    .nav-lang { padding: 8px 16px !important; min-height: 44px; }
    .btn-ghost { min-height: 44px; display: inline-flex; align-items: center; }
    #stats { grid-template-columns: 1fr 1fr; }
    .complexity-grid, #about, .contact-grid, #mid-cta {
      grid-template-columns: 1fr; gap: 40px;
    }
    .case-study-strip { grid-template-columns: 1fr !important; }
    .case-study-strip > div { height: 180px !important; }
    .formats-grid { grid-template-columns: 1fr 1fr; }
    .formats-tier1, .formats-tier2 { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .testimonial-body { padding: 32px 28px; }
    .testimonial-mark { font-size: 56px; top: 24px; left: 20px; }
    .testimonial-text { padding-left: 16px; }
    .testimonial-text p { font-size: 14px; }
    .testimonial-author { padding-left: 16px; }
    .about-visual { height: 360px; }
    #clients { padding: 48px 24px; }
    .site-footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    #final-cta { padding: 72px 24px; }
    .final-cta-headline { font-size: clamp(44px, 12vw, 96px) !important; }
    .final-cta-sub { font-size: 15px; margin-bottom: 36px; }
    .btn-dark { padding: 16px 36px; font-size: 13px; }
    .final-cta-logos { gap: 20px 28px; margin-top: 40px; }
    .final-cta-logo { font-size: 14px; }
    #cookie-banner { padding: 16px 24px !important; }
    /* Reveal slider mobile */
    .mid-cta-visual { cursor: default !important; }
    #scroll-top { bottom: 24px !important; right: 24px !important; width: 48px !important; height: 48px !important; font-size: 20px !important; border-width: 2px !important; }
  }
  @media (max-width: 600px) {
    #stats { grid-template-columns: 1fr 1fr; }
    .formats-grid, .formats-tier1, .formats-tier2 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
    #hero { padding-top: 90px; }
    .hero-headline { font-size: clamp(32px, 10vw, 68px) !important; }
  }

  /* ── MOBILE READABILITY ── */
  @media (max-width: 768px) {
    /* Core fix: heavier weight + better contrast on small screens */
    body { font-size: 16px; line-height: 1.75; font-weight: 400; color: #EDEAE4; }

    /* Override --muted (#6A6A6A) to readable contrast on mobile */
    p, li, .complexity-body, .format-desc, .process-desc,
    .faq-answer, .contact-desc, .blog-content p, .blog-content li,
    .blog-content { color: #A0A0A0 !important; font-weight: 400 !important; }

    /* Section body text */
    .complexity-body,
    .format-desc,
    .process-desc,
    .faq-answer,
    .contact-desc { font-size: 15px !important; line-height: 1.8 !important; }

    /* Condensed labels — bump 10-11px→12px */
    .section-label { font-size: 12px !important; }
    .stat-label { font-size: 12px !important; }
    .tag { font-size: 11px !important; padding: 4px 10px !important; }

    /* Format cards, process cards */
    .complexity-card-desc,
    .format-tags .tag { font-size: 12px !important; }
    .complexity-card-title { font-size: 15px !important; }

    /* Section titles */
    .section-title { font-size: clamp(28px, 8vw, 48px) !important; }

    /* About datasheet */
    .about-datasheet p { font-size: 14px !important; color: #A0A0A0 !important; font-weight: 400 !important; }

    /* Hero sub text */
    .hero-sub { font-size: 16px !important; line-height: 1.75 !important; color: #A0A0A0 !important; font-weight: 400 !important; }

    /* Contact form — 16px prevents iOS zoom */
    .form-input, .form-textarea, .form-select { font-size: 16px !important; }

    /* Footer */
    .site-footer, .footer-links a, .footer-legal { font-size: 12px !important; }

    /* Cookie banner */
    #cookie-banner p { font-size: 14px !important; color: #A0A0A0 !important; }

    /* Blog / case study content — inline styles override */
    .blog-content { font-size: 16px !important; line-height: 1.8 !important; }
    .blog-content p { font-size: 16px !important; line-height: 1.8 !important; color: #A0A0A0 !important; font-weight: 400 !important; }
    .blog-content li { font-size: 15px !important; color: #A0A0A0 !important; font-weight: 400 !important; }
    .blog-content strong { color: #EDEAE4 !important; font-weight: 600 !important; }

    /* Inline-styled paragraphs in post_content (override style="color:var(--muted)") */
    [style*="color:var(--muted)"] { color: #A0A0A0 !important; font-weight: 400 !important; }
    [style*="font-size:17px"] { font-size: 16px !important; }
    [style*="font-size:13px"] { font-size: 15px !important; }

    /* Results section — dark text on red bg, override grey rules */
    #cases p, #cases .section-label, #cases .section-label::before { color: rgba(12,12,12,0.85) !important; }
    #cases .cases-title, #cases .cases-title span { color: var(--bg) !important; }
    #cases .section-label::after { background: rgba(12,12,12,0.4) !important; }
    #cases .case-card-link { color: #EDEAE4 !important; }

    /* Hero mobile — safe spacing for Google Chrome app bar */
    #hero { padding-top: 80px !important; }
    .hero-kicker { font-size: 10px !important; margin-bottom: 12px !important; }
    .hero-headline { margin-bottom: 8px; }
    .hero-sub { margin-top: 16px !important; }
    .hero-actions { margin-top: 24px !important; }

    /* Case study grids stack on mobile */
    .blog-content [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .blog-content [style*="grid-template-columns:repeat(auto-fit"] { grid-template-columns: 1fr 1fr !important; }
    .blog-content [style*="gap:48px"] { gap: 24px !important; }
    .blog-content [style*="height:450px"] { height: auto !important; }
    .blog-content [style*="width:253px"] { width: 100% !important; }
    .blog-content video, .blog-content iframe { max-width: 100%; }
    .blog-content [style*="padding-bottom:56.25%"] { padding-bottom: 56.25% !important; }
    .blog-content [style*="padding-bottom:177.78%"] { padding-bottom: 177.78% !important; max-width: 280px; margin: 0 auto; }
  }

/* ========================================
   RESPONSIVE REFORM (Phase 15)
   Additional breakpoints + touch targets
   ======================================== */

  /* === PHONE READABILITY (max-width: 480px) === */
  @media (max-width: 480px) {
    /* Boost muted text contrast + weight for small bright screens */
    p, li, .complexity-body, .format-desc, .process-step-desc,
    .faq-a, .contact-body, .contact-desc,
    .blog-content p, .blog-content li,
    .testimonial-text p, .mid-cta-body,
    .process-intro, .formats-intro,
    .complexity-card-desc {
      color: #B8B8B8 !important;
      font-weight: 450 !important;
      -webkit-font-smoothing: antialiased;
    }

    /* Body text slightly larger on phones */
    .complexity-body, .format-desc, .process-step-desc,
    .faq-a, .contact-body, .process-intro, .formats-intro {
      font-size: 16px !important;
      line-height: 1.8 !important;
    }

    /* Testimonial text readable */
    .testimonial-text p {
      font-size: 15px !important;
      line-height: 1.8 !important;
      color: #C0C0C0 !important;
    }

    /* Hero sub — bigger on phone */
    .hero-sub {
      font-size: 17px !important;
      line-height: 1.8 !important;
      color: #B8B8B8 !important;
      font-weight: 450 !important;
    }

    /* Stat labels more visible */
    .stat-label { color: #C8C8C8 !important; font-weight: 700 !important; }
    .stat-sub { color: #A0A0A0 !important; }

    /* Section labels bolder */
    .section-label { font-weight: 700 !important; color: #888 !important; }
    #cases .section-label, #cases .section-label::before { color: rgba(12,12,12,0.85) !important; }
    #cases p { color: rgba(12,12,12,0.85) !important; }

    /* Blog/case study on phone */
    .blog-content p {
      font-size: 17px !important;
      line-height: 1.85 !important;
      color: #B8B8B8 !important;
      font-weight: 450 !important;
    }

    section, #mid-cta, #process, #testimonials, #contact { padding: 56px 16px; }
    #hero { padding: 0 16px 48px; }
    /* Stats: single column on phones */
    #stats {
      grid-template-columns: 1fr !important;
    }
    .stat-block {
      flex-direction: row !important;
      align-items: center !important;
      gap: 16px !important;
      padding: 20px 16px !important;
      border-right: none !important;
      border-bottom: 1px solid var(--border);
    }
    .stat-block:last-child { border-bottom: none; }
    .stat-num {
      font-size: 38px;
      min-width: 64px;
      text-align: center;
      flex-shrink: 0;
    }
    .stat-label {
      font-size: 12px !important;
      line-height: 1.4 !important;
      letter-spacing: 0.1em !important;
    }
    .stat-sub {
      font-size: 12px !important;
      line-height: 1.5 !important;
    }
    #clients { padding: 36px 16px; }

    /* Portfolio grid — 2 columns still, tighter */
    #gallery-grid { grid-template-columns: 1fr 1fr !important; }

    /* Portfolio filter tabs — horizontal scroll */
    #gallery-filters {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      flex-wrap: nowrap !important;
      padding-bottom: 4px;
    }
    .gfilter { flex-shrink: 0; font-size: 10px; padding: 8px 14px; }

    /* CTAs full width */
    .btn-primary, .btn-ghost, .btn-dark {
      display: block; width: 100%; text-align: center;
    }
    .hero-actions { width: 100%; }

    /* Testimonial compact */
    .testimonial-body { padding: 24px 20px; }
    .testimonial-mark { font-size: 40px; top: 16px; left: 14px; }
    .testimonial-text { padding-left: 12px; }
    .testimonial-text p { font-size: 14px; }
    .testimonial-author { padding-left: 12px; gap: 12px; }
    .testimonial-avatar { width: 40px; height: 40px; }
    .testimonial-name { font-size: 12px; }
    .testimonial-role { font-size: 11px; }

    /* Footer compact */
    .site-footer { padding: 20px 16px; }
    #final-cta { padding: 56px 16px; }
  }

  /* === SMALL PHONE (max-width: 375px) === */
  @media (max-width: 375px) {
    .hero-headline { font-size: clamp(28px, 10vw, 56px) !important; }
    .section-title { font-size: clamp(24px, 8vw, 40px) !important; }
    section, #mid-cta, #process, #testimonials, #contact { padding: 48px 14px; }
  }

  /* === TOUCH TARGETS (mobile) === */
  @media (max-width: 768px) {
    a, button, input[type="submit"], .gfilter, .nav-lang, .nav-cta {
      min-height: 44px;
    }
    .faq-q {
      padding: 12px 0;
      min-height: 44px;
      cursor: pointer;
    }
  }

  /* === RESPONSIVE IMAGES === */
  img { max-width: 100%; height: auto; }

/* ========================================
   TYPOGRAPHY & READABILITY REFORM (Phase 14)
   Minimum sizes for B2B readability (40-60yr decision-makers)
   ======================================== */

  /* Desktop body text — increase 13px descriptions to readable minimum */
  .format-desc { font-size: 15px; }
  .complexity-card-desc { font-size: 14px; line-height: 1.7; }
  .process-step-desc { font-size: 14px; line-height: 1.7; }
  .faq-a { font-size: 15px; line-height: 1.75; }
  .stat-sub { font-size: 13px; }

  /* Contact form inputs — prevent iOS zoom */
  .form-input, .form-textarea, input, textarea, select {
    font-size: 16px;
  }

  /* Muted text contrast boost on desktop */
  .format-desc, .faq-a, .process-step-desc, .contact-body {
    color: #8A8A8A;
  }

/* WordPress compatibility */
.accent { color: var(--accent); }
.accent.dot { font-size: 0.9em; }
