/* ============================================================
   PT. BOEMI MERAKSA — main.css
   Production stylesheet. Load fonts.css before this file.
   Last updated: June 2025
   ============================================================ */

/* ─── RESET ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img, svg { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { border: none; background: none; cursor: pointer; font: inherit; }

    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --maroon:        #7B1E2B;
      --maroon-dark:   #5B1520;
      --maroon-mist:   #F7F0F1;
      --gold:          #C9A86A;
      --gold-light:    #E8D5A8;

      --text:          #1F2937;
      --text-muted:    #6B7280;
      --text-faint:    #9CA3AF;

      --bg:            #FAFAFA;
      --white:         #FFFFFF;
      --border:        #E5E7EB;
      --border-light:  #F3F4F6;

      --font:          'Plus Jakarta Sans', system-ui, sans-serif;
      --radius:        10px;
      --radius-sm:     6px;
      --max-w:         1200px;

      --ease:          cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ─── BASE ───────────────────────────────────────────────── */
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ─── UTILITIES ──────────────────────────────────────────── */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--maroon);
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ─── BUTTONS ────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      font-family: var(--font);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      border-radius: var(--radius);
      transition: background 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--maroon);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--maroon-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(123,30,43,0.22);
    }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--maroon);
      color: var(--maroon);
      transform: translateY(-2px);
    }
    .btn-ghost {
      padding: 0;
      background: none;
      color: var(--maroon);
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .btn-ghost svg { transition: transform 0.3s var(--ease); }
    .btn-ghost:hover svg { transform: translateX(5px); }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      height: 72px;
      background: rgba(250,250,250,0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    .nav.scrolled {
      border-bottom-color: var(--border);
      background: rgba(250,250,250,0.96);
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo svg { height: 32px; width: auto; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: center;
    }
    .nav-links a {
      padding: 8px 16px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text); background: var(--border-light); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-menu-btn { display: none; }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
      background: var(--white);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    /* Subtle maroon arc shape – signature element */
    .hero-arc {
      position: absolute;
      right: -5%;
      top: -15%;
      width: 55%;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(123,30,43,0.06);
      pointer-events: none;
    }
    .hero-arc-2 {
      right: 2%;
      top: -8%;
      width: 42%;
      border-color: rgba(123,30,43,0.05);
    }
    .hero-arc-3 {
      right: 10%;
      top: 0%;
      width: 28%;
      border-color: rgba(201,168,106,0.1);
    }
    /* Gold dot grid texture */
    .hero-dots {
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
      height: 100%;
      background-image: radial-gradient(circle, rgba(201,168,106,0.12) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(to left, rgba(0,0,0,0.35) 0%, transparent 80%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 96px 32px 80px;
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
    }
    .hero-content {
      max-width: 780px;
      width: 100%;
    }
    .hero-content .eyebrow {
      margin-bottom: 28px;
      justify-content: center;
    }
    .hero-headline {
      font-size: clamp(1.75rem, 3.85vw, 3.85rem);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 28px;
    }
    .hero-headline .accent { color: var(--maroon); }
    .hero-sub {
      font-size: clamp(1.1rem, 1.8vw, 1.35rem);
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto 44px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-stats-row {
      width: 100%;
      margin-top: 56px;
    }
    .hero-right { display: none; }
    /* Stat cards — 4 col row */
    .stat-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      width: 100%;
    }
    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .stat-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      transform: translateY(-3px);
    }
    .stat-card.featured {
      background: var(--maroon);
      border-color: var(--maroon);
    }
    .stat-card-num {
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--maroon);
      margin-bottom: 6px;
    }
    .stat-card.featured .stat-card-num { color: var(--white); }
    .stat-card-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .stat-card.featured .stat-card-label { color: rgba(255,255,255,0.65); }
    .stat-card-desc {
      font-size: 0.8125rem;
      font-weight: 300;
      color: var(--text-faint);
      margin-top: 4px;
      line-height: 1.5;
    }
    .stat-card.featured .stat-card-desc { color: rgba(255,255,255,0.5); }

    .hero-badge {
      align-self: flex-start;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 320px;
    }
    .hero-badge-icon {
      width: 36px;
      height: 36px;
      background: var(--maroon-mist);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hero-badge-text {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1.4;
    }
    .hero-badge-text span {
      display: block;
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* ─── TRUST BAR ──────────────────────────────────────────── */
    .trust {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 32px 32px;
    }
    .trust-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .trust-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-sep {
      width: 1px;
      height: 24px;
      background: var(--border);
      flex-shrink: 0;
    }
    .trust-logos {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .trust-logo-item {
      display: flex;
      align-items: center;
      opacity: 0.45;
      transition: opacity 0.2s;
      filter: grayscale(100%);
    }
    .trust-logo-item:hover { opacity: 0.7; }
    .trust-logo-item img {
      height: 28px;
      width: auto;
      object-fit: contain;
      display: block;
    }
    .trust-logo-item.bp-logo img {
      height: 36px; /* BP helios mark is taller */
    }
    .trust-logo-item.pupuk-logo img {
      height: 32px;
    }
    .trust-name {
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #C8D0DB;
      text-transform: uppercase;
    }

    /* ─── SECTION WRAPPER ────────────────────────────────────── */
    .section { padding: 112px 0; }
    .section-sm { padding: 80px 0; }
    .section-header { margin-bottom: 64px; }
    .section-header .eyebrow { margin-bottom: 16px; }
    .section-headline {
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .section-headline .accent { color: var(--maroon); }
    .section-body {
      font-size: 1.15rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 520px;
      margin-top: 16px;
    }
    .section-header-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
    }

    /* ─── ABOUT ──────────────────────────────────────────────── */
    #about { background: var(--bg); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: center;
    }
    .about-left .section-body { max-width: 100%; }
    .about-left .section-body + .section-body { margin-top: 14px; }
    .about-left .btn { margin-top: 36px; }
    .about-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
    }
    .about-panel::before {
      content: '';
      position: absolute;
      top: -48px; right: -48px;
      width: 160px; height: 160px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,106,0.12);
    }
    .about-panel::after {
      content: '';
      position: absolute;
      top: -16px; right: -16px;
      width: 80px; height: 80px;
      border-radius: 50%;
      border: 1px solid rgba(123,30,43,0.08);
    }
    .about-pillars { display: flex; flex-direction: column; gap: 28px; position: relative; }
    .pillar { display: flex; align-items: flex-start; gap: 18px; }
    .pillar-icon {
      width: 40px; height: 40px;
      background: var(--maroon-mist);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .pillar-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }
    .pillar-desc {
      font-size: 1rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── SERVICES ───────────────────────────────────────────── */
    #services { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .service-card {
      background: var(--white);
      padding: 40px 36px;
      transition: background 0.3s var(--ease);
      position: relative;
    }
    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid transparent;
      border-radius: 0;
      transition: border-color 0.3s var(--ease);
      pointer-events: none;
    }
    .service-card:hover { background: #FDFAF8; }
    .service-card:hover::after { border-color: rgba(123,30,43,0.08); }
    .service-num {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--text-faint);
      margin-bottom: 20px;
    }
    .service-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      transition: border-color 0.3s, background 0.3s;
    }
    .service-card:hover .service-icon {
      border-color: rgba(123,30,43,0.15);
      background: var(--maroon-mist);
    }
    .service-title {
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.35;
    }
    .service-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-muted);
    }

    /* ─── INDUSTRIES ─────────────────────────────────────────── */
    #industries { background: var(--bg); }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .industry-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px 32px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
      cursor: default;
    }
    .industry-card:hover {
      box-shadow: 0 16px 48px rgba(0,0,0,0.07);
      transform: translateY(-4px);
      border-color: rgba(123,30,43,0.12);
    }
    .industry-icon {
      width: 48px; height: 48px;
      background: var(--maroon-mist);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
    }
    .industry-card:hover .industry-icon { background: var(--maroon); }
    .industry-card:hover .industry-icon svg path,
    .industry-card:hover .industry-icon svg rect,
    .industry-card:hover .industry-icon svg circle,
    .industry-card:hover .industry-icon svg line,
    .industry-card:hover .industry-icon svg polyline { stroke: rgba(255,255,255,0.9); }
    .industry-name {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }
    .industry-desc {
      font-size: 0.9375rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-muted);
    }

    /* ─── STATS ──────────────────────────────────────────────── */
    #stats {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      padding: 56px 40px;
      border-right: 1px solid var(--border);
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 600;
      letter-spacing: -0.04em;
      color: var(--maroon);
      line-height: 1;
      margin-bottom: 10px;
    }
    /* Text-value stats (e.g. "Global", "Nationwide") use smaller type */
    .stat-num.stat-word {
      font-size: clamp(1.5rem, 2.5vw, 2.25rem);
      letter-spacing: -0.02em;
    }
    .stat-sup {
      font-size: 0.55em;
      font-weight: 500;
      vertical-align: super;
      letter-spacing: 0;
    }
    .stat-label {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text);
      letter-spacing: 0.02em;
      margin-bottom: 6px;
    }
    .stat-note {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--text-faint);
      line-height: 1.5;
    }

    /* ─── WHY US ─────────────────────────────────────────────── */
    #why { background: var(--bg); }
    .why-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }
    .why-left .section-body { max-width: 100%; }
    .why-left .btn { margin-top: 36px; }
    .why-items { display: flex; flex-direction: column; gap: 0; }
    .why-item {
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 20px;
      align-items: flex-start;
      transition: padding-left 0.3s var(--ease);
    }
    .why-item:first-child { border-top: 1px solid var(--border); }
    .why-item:hover { padding-left: 8px; }
    .why-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s;
    }
    .why-item:hover .why-icon {
      background: var(--maroon-mist);
      border-color: rgba(123,30,43,0.15);
    }
    .why-title {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }
    .why-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ─── PROCESS ────────────────────────────────────────────── */
    #process { background: var(--white); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      position: relative;
    }
    .process-line {
      position: absolute;
      top: 28px;
      left: calc(12.5% + 16px);
      right: calc(12.5% + 16px);
      height: 1px;
      background: var(--border);
    }
    .process-step { position: relative; z-index: 1; }
    .process-marker {
      width: 56px; height: 56px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--maroon);
      transition: background 0.3s, border-color 0.3s;
    }
    .process-step:hover .process-marker {
      background: var(--maroon-mist);
      border-color: rgba(123,30,43,0.2);
    }
    .process-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 10px;
    }
    .process-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ─── CTA ────────────────────────────────────────────────── */
    #cta {
      background: var(--maroon);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-bg-arc {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .cta-arc-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
    .cta-arc-2 { width: 500px; height: 500px; top: -100px; right: -100px; }
    .cta-arc-3 { width: 300px; height: 300px; top: 0; right: 0; border-color: rgba(201,168,106,0.08); }
    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 760px;
      margin: 0 auto;
      padding: 0 32px;
      text-align: center;
    }
    .cta-inner .eyebrow {
      color: rgba(255,255,255,0.5);
      justify-content: center;
      margin-bottom: 24px;
    }
    .cta-inner .eyebrow::before { background: var(--gold); }
    .cta-headline {
      font-size: clamp(2.25rem, 4vw, 3.5rem);
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: 24px;
    }
    .cta-sub {
      font-size: 1.0625rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      margin-bottom: 48px;
    }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-cta-primary {
      background: var(--white);
      color: var(--maroon);
      font-weight: 600;
    }
    .btn-cta-primary:hover {
      background: #F7F0F1;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    }
    .btn-cta-outline {
      background: transparent;
      color: rgba(255,255,255,0.85);
      border: 1.5px solid rgba(255,255,255,0.2);
    }
    .btn-cta-outline:hover {
      border-color: rgba(255,255,255,0.5);
      color: var(--white);
      transform: translateY(-2px);
    }
    .cta-contact {
      display: flex;
      gap: 40px;
      justify-content: center;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-wrap: wrap;
    }
    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      font-weight: 400;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .cta-contact-item:hover { color: rgba(255,255,255,0.9); }
    .cta-contact-item svg { opacity: 0.5; transition: opacity 0.2s; }
    .cta-contact-item:hover svg { opacity: 0.9; }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: #111827;
      padding: 56px 0 40px;
    }
    .footer-top {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand-logo { margin-bottom: 20px; }
    .footer-brand-logo svg { height: 20px; }
    .footer-brand-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.4);
      max-width: 260px;
    }
    .footer-col-title {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .footer-links-list { display: flex; flex-direction: column; gap: 12px; }
    .footer-links-list a {
      font-size: 0.875rem;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-links-list a:hover { color: rgba(255,255,255,0.9); }
    .footer-bottom {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 24px 32px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.8125rem;
      font-weight: 300;
      color: rgba(255,255,255,0.3);
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.8125rem;
      font-weight: 300;
      color: rgba(255,255,255,0.3);
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* ─── SCROLL REVEAL ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: 0.08s; }
    .reveal-d2 { transition-delay: 0.16s; }
    .reveal-d3 { transition-delay: 0.24s; }
    .reveal-d4 { transition-delay: 0.32s; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { padding: 72px 32px 64px; }
      .stat-cards { grid-template-columns: repeat(2, 1fr); }
      .hero-badge { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-item { border-right: 1px solid var(--border); }
      .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
      .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
      .industries-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .process-steps { grid-template-columns: repeat(3, 1fr) !important; gap: 32px; }
      .process-line { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; }
      .nav-links, .nav-actions { display: none; }
      .nav-menu-btn { display: flex; }
      .section { padding: 80px 0; }
      .hero-inner { padding: 48px 20px; }
      .hero-headline { font-size: clamp(2.75rem, 10vw, 3.5rem); }
      .stat-cards { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .industries-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr !important; }
      .cta-inner { padding: 0 20px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .section-header-split { grid-template-columns: 1fr; gap: 24px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .btn, .service-card, .industry-card, .stat-card,
      .why-item, .process-marker { transition: none; }
    }