/*
Theme Name: Iterate India
Theme URI: https://iterate.in/
Author: Iterate India Private Limited
Author URI: https://iterate.in/
Description: Custom theme for Iterate India Private Limited — a software company delivering enterprise solutions since 1982. Features a clean, modern navy/amber palette with Plus Jakarta Sans typography and dedicated layouts for Home, About, Products, Services, and Clients pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iterate-india
Tags: business, custom-menu, featured-images, threaded-comments
*/

/* ─── styles from index.html ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: oklch(22% 0.06 255);
    --navy-mid: oklch(28% 0.07 255);
    --navy-light: oklch(35% 0.08 255);
    --amber: oklch(52% 0.18 250);
    --amber-light: oklch(62% 0.16 250);
    --white: oklch(98% 0.005 255);
    --gray-50: oklch(96% 0.005 255);
    --gray-100: oklch(92% 0.008 255);
    --gray-300: oklch(78% 0.01 255);
    --gray-500: oklch(58% 0.015 255);
    --gray-700: oklch(38% 0.015 255);
    --text: oklch(18% 0.03 255);
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    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: 0 5vw;
    height: 68px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08); }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .nav-logo-mark svg { width: 20px; height: 20px; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
  .nav-logo-text span:first-child { font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
  .nav-logo-text span:last-child { font-size: 10px; font-weight: 500; color: var(--gray-500); letter-spacing: 0.5px; text-transform: uppercase; }

  .nav-links {
    display: flex; align-items: center; gap: 6px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: var(--gray-50); color: var(--navy); }

  .nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
  }
  .nav-cta:hover { background: var(--navy-mid) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5vw 80px;
    gap: 60px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    overflow: hidden;
  }
  .hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--amber);
  }
  .hero-bg-circle:nth-child(1) { width: 700px; height: 700px; right: -150px; top: -250px; }
  .hero-bg-circle:nth-child(2) { width: 350px; height: 350px; left: 25%; bottom: -120px; opacity: 0.04; }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--gray-100) 1px, transparent 1px),
      linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
  }

  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: oklch(52% 0.18 250 / 0.1);
    border: 1px solid oklch(52% 0.18 250 / 0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px; font-weight: 600;
    color: oklch(42% 0.16 250);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

  .hero h1 {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 24px;
    text-wrap: pretty;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--amber);
  }
  .hero-sub {
    font-size: 17px; font-weight: 400;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px; font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px oklch(22% 0.06 255 / 0.3); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    color: var(--navy);
    font-family: var(--font);
    font-size: 15px; font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .btn-ghost:hover { border-color: var(--navy); box-shadow: 0 4px 12px oklch(0% 0 0 / 0.07); }

  .hero-stats {
    display: flex; gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
  }
  .hero-stat span:first-child {
    display: block;
    font-size: 32px; font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
  }
  .hero-stat span:last-child {
    font-size: 13px; font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.5px;
  }

  /* Hero visual */
  .hero-visual {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 16px;
  }
  .hero-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 16px oklch(0% 0 0 / 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .hero-card:hover { box-shadow: 0 8px 32px oklch(0% 0 0 / 0.09); transform: translateY(-2px); }
  .hero-card-top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
  }
  .hero-card-icon {
    width: 40px; height: 40px;
    background: oklch(22% 0.06 255 / 0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-card-icon svg { width: 20px; height: 20px; color: var(--navy); }
  .hero-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); }
  .hero-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

  .hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .hero-card-sm {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 1px 4px oklch(0% 0 0 / 0.04);
  }
  .hero-card-sm .num {
    font-size: 16px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.3px;
  }
  .hero-card-sm .lbl {
    font-size: 12px; font-weight: 500;
    color: var(--gray-500);
    margin-top: 2px;
  }

  /* ── SERVICES STRIP ── */
  .services-strip {
    background: var(--gray-50);
    padding: 80px 5vw;
  }
  .section-label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800; letter-spacing: -0.8px;
    color: var(--navy);
    line-height: 1.15;
    text-wrap: pretty;
  }
  .section-sub {
    font-size: 16px; color: var(--gray-500);
    max-width: 560px; margin-top: 12px;
    line-height: 1.7;
  }
  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px oklch(0% 0 0 / 0.09);
    border-color: var(--amber-light);
  }
  .service-icon {
    width: 48px; height: 48px;
    background: oklch(22% 0.06 255 / 0.06);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .service-icon svg { width: 24px; height: 24px; color: oklch(22% 0.06 255 / 0.6); }
  .service-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }
  .service-card p { font-size: 13px; color: var(--gray-500); line-height: 1.55; flex: 1; }
  .service-arrow {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 700;
    color: var(--amber); text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: auto;
  }

  /* ── ABOUT ── */
  .about {
    padding: 100px 5vw;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .about-image-wrap {
    position: relative;
  }
  .about-image-placeholder {
    width: 100%; aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .about-image-placeholder svg { width: 64px; height: 64px; color: var(--gray-300); }
  .about-img-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
  }
  .about-stripe-placeholder {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      var(--gray-100) 0,
      var(--gray-100) 1px,
      transparent 0,
      transparent 50%
    );
    background-size: 12px 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
    font-family: monospace; font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    padding: 20px;
  }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    color: var(--navy);
    text-align: center;
    box-shadow: 0 8px 32px oklch(0% 0 0 / 0.08);
  }
  .about-badge span:first-child { display: block; font-size: 32px; font-weight: 800; color: var(--navy); }
  .about-badge span:last-child { font-size: 12px; font-weight: 500; color: var(--gray-500); }

  .about-content { }
  .about ul {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 28px 0 36px;
  }
  .about ul li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    padding: 8px 14px;
    border-radius: 100px;
    color: var(--navy);
  }
  .about ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
  .about-ctas { display: flex; gap: 12px; }
  .about-pillars {
    display: flex; flex-direction: column; gap: 16px;
    margin: 28px 0 36px;
  }
  .about-pillar {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
  }
  .about-pillar-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: oklch(22% 0.06 255 / 0.08);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
  }
  .about-pillar-icon svg { width: 16px; height: 16px; color: oklch(22% 0.06 255 / 0.65); }
  .about-pillar div strong {
    display: block;
    font-size: 14px; font-weight: 700; color: var(--navy);
    margin-bottom: 2px;
  }
  .about-pillar div span {
    font-size: 13px; color: var(--gray-500); line-height: 1.5;
  }
  .btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px; font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    font-family: var(--font);
    font-size: 14px; font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--navy); color: var(--navy); }

  /* ── PRODUCTS ── */
  .products {
    background: var(--gray-50);
    padding: 100px 5vw;
    position: relative; overflow: hidden;
  }
  .products .section-label { color: oklch(42% 0.16 250); }
  .products .section-title { color: var(--navy); }
  .products .section-sub { color: var(--gray-500); }

  .products-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(var(--gray-100) 1px, transparent 1px),
      linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.7;
  }

  .products-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .product-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: 0 1px 4px oklch(0% 0 0 / 0.04);
  }
  .product-card:hover {
    border-color: var(--amber-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px oklch(0% 0 0 / 0.09);
  }
  .product-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    color: oklch(42% 0.16 250);
    background: oklch(52% 0.18 250 / 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
  }
  .product-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
  .product-full { font-size: 13px; font-weight: 500; color: var(--gray-500); margin-top: -4px; }
  .product-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; flex: 1; }
  .product-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    color: oklch(42% 0.16 250); text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 8px;
  }

  .products-footer {
    position: relative; z-index: 1;
    display: flex; justify-content: center; gap: 14px;
    margin-top: 48px;
  }

  /* ── INDUSTRIES ── */
  .industries {
    padding: 100px 5vw;
    background: var(--white);
  }
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 48px;
  }
  .industry-pill {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .industry-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px oklch(0% 0 0 / 0.08);
  }
  .industry-icon {
    width: 56px; height: 56px;
    background: oklch(22% 0.06 255 / 0.07);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .industry-icon svg { width: 28px; height: 28px; color: oklch(22% 0.06 255 / 0.6); }
  .industry-pill span { font-size: 14px; font-weight: 700; color: var(--navy); text-align: center; }

  /* ── CLIENTS ── */
  .clients {
    padding: 80px 5vw;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
  }
  .clients-header { text-align: center; margin-bottom: 52px; }
  .clients-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
  }
  .client-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 20px 32px;
    font-size: 15px; font-weight: 700;
    color: var(--gray-700);
    letter-spacing: -0.2px;
    transition: border-color 0.2s, color 0.2s;
    min-width: 160px; text-align: center;
  }
  .client-card:hover { border-color: var(--amber); color: var(--navy); }

  /* ── CONTACT ── */
  .contact {
    padding: 100px 5vw;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .contact-info { }
  .contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .contact-item {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .contact-item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-item-icon svg { width: 18px; height: 18px; color: oklch(22% 0.06 255 / 0.55); }
  .contact-item-body { }
  .contact-item-body strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .contact-item-body span, .contact-item-body a { font-size: 14px; color: var(--gray-500); text-decoration: none; }
  .contact-item-body a:hover { color: var(--amber); }

  .contact-form {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px;
  }
  .contact-form h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label { font-size: 12px; font-weight: 700; color: var(--gray-700); letter-spacing: 0.3px; }
  .form-field input, .form-field textarea, .form-field select {
    font-family: var(--font);
    font-size: 14px;
    border: 1.5px solid var(--gray-100);
    border-radius: 8px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-color: var(--navy);
  }
  .form-field textarea { min-height: 100px; }
  .form-submit {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 60px 5vw 32px;
    color: oklch(100% 0 0 / 0.5);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  }
  .footer-brand p {
    font-size: 13px; line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }
  .footer-col h4 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: oklch(100% 0 0 / 0.35);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a {
    font-size: 13px; color: oklch(100% 0 0 / 0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--amber); }
  .footer-contact-line {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13px; color: oklch(100% 0 0 / 0.5); margin-bottom: 10px;
  }
  .footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
  .footer-bottom {
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px;
    gap: 16px; flex-wrap: wrap;
  }
  .footer-logo-mark {
    display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
  }
  .footer-logo-mark .mark {
    width: 32px; height: 32px; background: var(--amber); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .footer-logo-mark .mark svg { width: 16px; height: 16px; color: var(--navy); }
  .footer-logo-mark span { font-size: 16px; font-weight: 800; color: var(--white); }

  /* ── SCROLL FADE-IN ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── Tweaks panel ── */
  #tweaks-panel {
    display: none;
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 48px oklch(0% 0 0 / 0.12);
    width: 240px;
    font-family: var(--font);
  }
  #tweaks-panel h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: 0.3px; }
  .tweak-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
  .tweak-row label { font-size: 12px; font-weight: 600; color: var(--gray-700); }
  .tweak-row input[type=color] { width: 32px; height: 24px; border: none; cursor: pointer; border-radius: 4px; }
  .tweak-row select { font-family: var(--font); font-size: 12px; padding: 4px 8px; border: 1.5px solid var(--gray-100); border-radius: 6px; outline: none; }
  .tweak-close { width: 100%; margin-top: 12px; padding: 8px; background: var(--gray-50); border: none; border-radius: 8px; font-family: var(--font); font-size: 12px; font-weight: 700; cursor: pointer; color: var(--gray-700); }

  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .about { grid-template-columns: 1fr; gap: 48px; }
    .contact { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hero-stats { gap: 24px; }
    .footer-top { grid-template-columns: 1fr; }
  }

/* ─── styles from about.html ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: oklch(22% 0.06 255);
    --navy-mid: oklch(28% 0.07 255);
    --blue: oklch(52% 0.18 250);
    --blue-light: oklch(62% 0.16 250);
    --white: oklch(98% 0.005 255);
    --gray-50: oklch(96% 0.005 255);
    --gray-100: oklch(92% 0.008 255);
    --gray-300: oklch(78% 0.01 255);
    --gray-500: oklch(58% 0.015 255);
    --gray-700: oklch(38% 0.015 255);
    --text: oklch(18% 0.03 255);
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.6; 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: 0 5vw; height: 68px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08); }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 14px; font-weight: 500;
    color: var(--gray-700); padding: 6px 12px; border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: var(--gray-50); color: var(--navy); }
  .nav-links a.active { color: var(--navy); font-weight: 700; }
  .nav-cta {
    background: var(--navy) !important; color: var(--white) !important;
    padding: 8px 18px !important; border-radius: 8px !important;
  }
  .nav-cta:hover { background: var(--navy-mid) !important; }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 120px 5vw 80px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    position: relative; overflow: hidden;
  }
  .page-hero-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(var(--gray-100) 1px, transparent 1px),
      linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.6;
  }
  .page-hero-content { position: relative; z-index: 1; max-width: 720px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  .page-hero h1 {
    font-size: clamp(32px, 3.8vw, 52px); font-weight: 800;
    letter-spacing: -1.2px; color: var(--navy); line-height: 1.1;
    text-wrap: pretty; margin-bottom: 20px; margin-top: 12px;
  }
  .page-hero > .page-hero-content > p {
    font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 600px;
  }
  .page-hero-stats {
    display: flex; gap: 48px; margin-top: 48px;
    padding-top: 36px; border-top: 1px solid var(--gray-100);
  }
  .page-hero-stat span:first-child {
    display: block; font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; white-space: nowrap;
  }
  }
  .page-hero-stat span:last-child {
    font-size: 12px; font-weight: 600; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.5px;
  }

  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: var(--gray-500);
    margin-bottom: 20px;
  }
  .breadcrumb a { text-decoration: none; color: var(--gray-500); transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--navy); }
  .breadcrumb span { color: var(--gray-300); }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 12px;
  }
  /* ── SHARED ── */
    font-size: clamp(24px, 2.8vw, 38px); font-weight: 800;
    letter-spacing: -0.7px; color: var(--navy); line-height: 1.15; text-wrap: pretty;
  }
  .section-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; margin-top: 12px; line-height: 1.7; }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: var(--white);
    font-family: var(--font); font-size: 14px; font-weight: 700;
    padding: 12px 24px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px oklch(22% 0.06 255 / 0.3); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--gray-300); color: var(--gray-700);
    font-family: var(--font); font-size: 14px; font-weight: 700;
    padding: 12px 24px; border-radius: 10px; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--navy); color: var(--navy); }

  /* ── OVERVIEW ── */
  .overview {
    padding: 100px 5vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .overview-image {
    position: relative;
  }
  .overview-img-placeholder {
    width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
    background-image: repeating-linear-gradient(
      -45deg, var(--gray-100) 0, var(--gray-100) 1px, transparent 0, transparent 50%
    );
    background-size: 12px 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; font-family: monospace; font-size: 12px;
    color: var(--gray-500); text-align: center;
  }
  .iso-badge {
    position: absolute; top: -16px; right: -16px;
    background: var(--white); border: 1.5px solid var(--gray-100);
    border-radius: var(--radius); padding: 12px 16px;
    box-shadow: 0 4px 20px oklch(0% 0 0 / 0.08);
    display: flex; align-items: center; gap: 10px;
  }
  .iso-badge-icon {
    width: 36px; height: 36px; background: oklch(22% 0.06 255 / 0.08);
    border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .iso-badge-icon svg { width: 18px; height: 18px; color: oklch(22% 0.06 255 / 0.65); }
  .iso-badge div strong { display: block; font-size: 13px; font-weight: 800; color: var(--navy); }
  .iso-badge div span { font-size: 11px; color: var(--gray-500); }

  .overview-content p {
    font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 16px;
  }
  .overview-content p strong { color: var(--navy); }
  .overview-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 32px;
  }
  .overview-tag {
    font-size: 13px; font-weight: 600; color: var(--navy);
    background: oklch(52% 0.18 250 / 0.08);
    border: 1px solid oklch(52% 0.18 250 / 0.2);
    padding: 6px 14px; border-radius: 100px;
  }

  /* ── MISSION ── */
  .mission {
    background: var(--navy);
    padding: 100px 5vw;
    position: relative; overflow: hidden;
  }
  .mission-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(oklch(100% 0 0 / 0.025) 1px, transparent 1px),
      linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .mission .section-label { color: var(--blue-light); }
  .mission .section-title { color: var(--white); }
  .mission-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
  }
  .mission-card {
    background: oklch(100% 0 0 / 0.05);
    border: 1px solid oklch(100% 0 0 / 0.1);
    border-radius: var(--radius-lg); padding: 32px;
  }
  .mission-card-icon {
    width: 48px; height: 48px; background: oklch(100% 0 0 / 0.08);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .mission-card-icon svg { width: 24px; height: 24px; color: var(--blue-light); }
  .mission-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
  .mission-card p { font-size: 14px; color: oklch(100% 0 0 / 0.55); line-height: 1.7; }

  /* ── TEAM ── */
  .team { padding: 60px 5vw 100px; background: var(--gray-50); }
  .team .section-header { margin-bottom: 24px; }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
  }
  .team-card {
    background: var(--white); border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px oklch(0% 0 0 / 0.09); }
  .team-card-photo {
    width: 100%; aspect-ratio: 3/4; background: var(--gray-50);
    display: flex; align-items: center; justify-content: center; position: relative;
    overflow: hidden;
  }
  .team-photo-placeholder {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, var(--gray-100) 0, var(--gray-100) 1px, transparent 0, transparent 50%
    );
    background-size: 10px 10px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; font-family: monospace; font-size: 11px; color: var(--gray-500); text-align: center; padding: 16px;
  }
  .team-card-md { padding: 20px; }
  .team-card-md h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
  .team-card-md .role {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--blue); margin-bottom: 12px;
  }
  .team-card-md p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
  .team-years {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--gray-500);
    background: var(--gray-50); border: 1px solid var(--gray-100);
    padding: 4px 10px; border-radius: 100px; margin-top: 12px;
  }
  .team-years svg { width: 12px; height: 12px; }

  /* Managing Director — full width card */
  .team-md-card {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 40px; display: flex; gap: 40px; align-items: center;
    margin-bottom: 24px;
  }
  .team-md-photo {
    width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0;
    background: oklch(100% 0 0 / 0.08);
    border: 3px solid oklch(100% 0 0 / 0.15);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .team-md-photo svg { width: 48px; height: 48px; color: oklch(100% 0 0 / 0.3); }
  .team-md-content { flex: 1; }
  .team-md-content .role { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-light); margin-bottom: 8px; }
  .team-md-content h3 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.5px; }
  .team-md-content p { font-size: 15px; color: oklch(100% 0 0 / 0.6); line-height: 1.7; }

  /* ── TIMELINE ── */
  .timeline { padding: 100px 5vw; }
  .timeline-track {
    position: relative; margin-top: 60px;
  }
  .timeline-track::before {
    content: ''; position: absolute;
    left: 50%; top: 0; bottom: 0; width: 2px;
    background: var(--gray-100);
    transform: translateX(-50%);
  }
  .timeline-item {
    display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0;
    margin-bottom: 48px; align-items: start;
  }
  .timeline-left { text-align: right; padding-right: 36px; padding-top: 4px; }
  .timeline-right { padding-left: 36px; padding-top: 4px; }
  .timeline-empty { }
  .timeline-dot-wrap {
    display: flex; justify-content: center; align-items: flex-start; padding-top: 4px;
  }
  .timeline-dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--blue);
    position: relative; z-index: 1; flex-shrink: 0;
  }
  .timeline-year {
    font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px;
    line-height: 1; margin-bottom: 4px;
  }
  .timeline-sector {
    font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
  }
  .timeline-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
  .timeline-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--blue); background: oklch(52% 0.18 250 / 0.08);
    padding: 3px 8px; border-radius: 6px; margin-bottom: 8px;
  }

  /* ── PRODUCTS CTA ── */
  .products-cta {
    background: var(--gray-50); border-top: 1px solid var(--gray-100);
    padding: 80px 5vw;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  }
  .products-cta h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
  .products-cta p { font-size: 15px; color: var(--gray-500); margin-top: 8px; max-width: 520px; }
  .products-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); padding: 60px 5vw 32px;
    color: oklch(100% 0 0 / 0.5);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: oklch(100% 0 0 / 0.35); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size: 13px; color: oklch(100% 0 0 / 0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: oklch(100% 0 0 / 0.5); margin-bottom: 10px; }
  .footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
  .footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; gap: 16px; flex-wrap: wrap; }

  @media (max-width: 1024px) {
    .overview { grid-template-columns: 1fr; gap: 48px; }
    .mission-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .products-cta { grid-template-columns: 1fr; }
    .products-cta-actions { justify-content: flex-start; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .timeline-track::before { left: 28px; }
    .timeline-item { grid-template-columns: 28px 1fr; }
    .timeline-left { display: none; }
    .timeline-dot-wrap { justify-content: flex-start; }
    .timeline-right { padding-left: 24px; }
  }
  @media (max-width: 640px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-md-card { flex-direction: column; gap: 20px; }
    .page-hero-stats { gap: 24px; }
    .nav-links { display: none; }
    .footer-top { grid-template-columns: 1fr; }
  }

/* ─── styles from products.html ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: oklch(22% 0.06 255);
    --navy-mid: oklch(28% 0.07 255);
    --blue: oklch(52% 0.18 250);
    --blue-light: oklch(62% 0.16 250);
    --white: oklch(98% 0.005 255);
    --gray-50: oklch(96% 0.005 255);
    --gray-100: oklch(92% 0.008 255);
    --gray-300: oklch(78% 0.01 255);
    --gray-500: oklch(58% 0.015 255);
    --gray-700: oklch(38% 0.015 255);
    --text: oklch(18% 0.03 255);
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.6; 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: 0 5vw; height: 68px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08); }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 14px; font-weight: 500;
    color: var(--gray-700); padding: 6px 12px; border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: var(--gray-50); color: var(--navy); }
  .nav-links a.active { color: var(--navy); font-weight: 700; }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: 8px !important; }
  .nav-cta:hover { background: var(--navy-mid) !important; }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 120px 5vw 64px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    position: relative; overflow: hidden;
  }
  .page-hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(var(--gray-100) 1px, transparent 1px),
      linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.6;
  }
  .page-hero-inner {
    position: relative; z-index: 1;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .page-hero-left { max-width: 620px; }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: var(--gray-500); margin-bottom: 20px;
  }
  .breadcrumb a { text-decoration: none; color: var(--gray-500); transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--navy); }
  .breadcrumb span { color: var(--gray-300); }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 12px;
  }
  .page-hero h1 {
    font-size: clamp(32px, 3.8vw, 52px); font-weight: 800;
    letter-spacing: -1.2px; color: var(--navy); line-height: 1.1;
    text-wrap: pretty; margin-bottom: 16px;
  }
  .page-hero-sub {
    font-size: 16px; color: var(--gray-500); line-height: 1.7; max-width: 520px;
  }
  .page-hero-right {
    display: flex; gap: 32px; padding-bottom: 4px;
  }
  .hero-stat span:first-child { display: block; font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.8px; white-space: nowrap; }
  .hero-stat span:last-child { font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }

  /* ── FILTER TABS ── */
  .filter-bar {
    padding: 0 5vw;
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
    position: sticky; top: 68px; z-index: 90;
  }
  .filter-tabs {
    display: flex; gap: 0; overflow-x: auto;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab {
    display: flex; align-items: center; gap: 7px;
    padding: 16px 20px;
    font-size: 13px; font-weight: 600; color: var(--gray-500);
    border: none; background: none; cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    font-family: var(--font);
  }
  .filter-tab:hover { color: var(--navy); }
  .filter-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
  .filter-tab .count {
    font-size: 11px; font-weight: 700; color: var(--gray-500);
    background: var(--gray-100); padding: 2px 7px; border-radius: 100px;
  }
  .filter-tab.active .count { background: var(--navy); color: var(--white); }

  /* ── PRODUCTS GRID ── */
  .products-section {
    padding: 56px 5vw 100px;
  }

  /* Featured products row */
  .featured-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-bottom: 20px;
  }
  .product-featured {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 0;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative; overflow: hidden;
  }
  .product-featured::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: oklch(100% 0 0 / 0.03);
  }
  .product-featured:hover { transform: translateY(-4px); box-shadow: 0 16px 48px oklch(22% 0.06 255 / 0.3); }
  .product-featured .p-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
    color: var(--blue-light); background: oklch(100% 0 0 / 0.08);
    padding: 4px 10px; border-radius: 100px; width: fit-content; margin-bottom: 20px;
  }
  .product-featured .p-icon {
    width: 52px; height: 52px; background: oklch(100% 0 0 / 0.08);
    border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .product-featured .p-icon svg { width: 26px; height: 26px; color: var(--blue-light); }
  .product-featured .p-code { font-size: 11px; font-weight: 700; color: oklch(100% 0 0 / 0.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
  .product-featured .p-name { font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 12px; }
  .product-featured .p-desc { font-size: 14px; color: oklch(100% 0 0 / 0.55); line-height: 1.7; flex: 1; }
  .product-featured .p-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 24px;
    font-size: 13px; font-weight: 700; color: var(--blue-light);
    text-transform: uppercase; letter-spacing: 0.5px;
  }

  /* Standard product grid */
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .product-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 28px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 0;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 1px 4px oklch(0% 0 0 / 0.04);
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px oklch(0% 0 0 / 0.09);
    border-color: oklch(52% 0.18 250 / 0.3);
  }
  .product-card .p-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
  .product-card .p-icon {
    width: 48px; height: 48px; background: oklch(22% 0.06 255 / 0.06);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .product-card .p-icon svg { width: 22px; height: 22px; color: oklch(22% 0.06 255 / 0.6); }
  .product-card .p-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--blue); background: oklch(52% 0.18 250 / 0.08);
    padding: 4px 10px; border-radius: 100px;
  }
  .product-card .p-code { font-size: 11px; font-weight: 700; color: var(--gray-300); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
  .product-card .p-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 10px; }
  .product-card .p-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; flex: 1; }
  .product-card .p-link {
    display: inline-flex; align-items: center; gap: 5px; margin-top: 20px;
    font-size: 12px; font-weight: 700; color: var(--blue);
    text-transform: uppercase; letter-spacing: 0.5px;
  }

  /* Hidden state for filtering */
  .product-card.hidden, .product-featured.hidden { display: none; }

  /* No results */
  .no-results {
    display: none; grid-column: 1/-1; text-align: center;
    padding: 80px 24px; color: var(--gray-500);
  }
  .no-results.visible { display: block; }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: var(--navy); padding: 80px 5vw;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
  }
  .cta-strip::before {
    content: ''; position: absolute; right: -80px; top: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: oklch(100% 0 0 / 0.02);
  }
  .cta-strip-left { position: relative; z-index: 1; }
  .cta-strip h2 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 10px; }
  .cta-strip p { font-size: 15px; color: oklch(100% 0 0 / 0.55); max-width: 480px; line-height: 1.6; }
  .cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-amber {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-light); color: var(--white);
    font-family: var(--font); font-size: 14px; font-weight: 700;
    padding: 13px 24px; border-radius: 10px; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 24px oklch(52% 0.18 250 / 0.4); }
  .btn-ghost-light {
    display: inline-flex; align-items: center; gap: 8px;
    background: oklch(100% 0 0 / 0.08); border: 1px solid oklch(100% 0 0 / 0.18);
    color: var(--white);
    font-family: var(--font); font-size: 14px; font-weight: 600;
    padding: 13px 24px; border-radius: 10px; text-decoration: none;
    transition: background 0.2s;
  }
  .btn-ghost-light:hover { background: oklch(100% 0 0 / 0.13); }

  /* ── FOOTER ── */
  footer { background: var(--navy); padding: 60px 5vw 32px; color: oklch(100% 0 0 / 0.5); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid oklch(100% 0 0 / 0.08); }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: oklch(100% 0 0 / 0.35); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size: 13px; color: oklch(100% 0 0 / 0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: oklch(100% 0 0 / 0.5); margin-bottom: 10px; }
  .footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
  .footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; gap: 16px; flex-wrap: wrap; }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  @media (max-width: 1024px) {
    .featured-row { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-hero-right { display: none; }
  }
  @media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-top { grid-template-columns: 1fr; }
  }

/* ─── styles from services.html ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: oklch(22% 0.06 255);
    --navy-mid: oklch(28% 0.07 255);
    --blue: oklch(52% 0.18 250);
    --blue-light: oklch(62% 0.16 250);
    --white: oklch(98% 0.005 255);
    --gray-50: oklch(96% 0.005 255);
    --gray-100: oklch(92% 0.008 255);
    --gray-300: oklch(78% 0.01 255);
    --gray-500: oklch(58% 0.015 255);
    --gray-700: oklch(38% 0.015 255);
    --text: oklch(18% 0.03 255);
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.6; 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: 0 5vw; height: 68px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100); transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08); }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--gray-700); padding: 6px 12px; border-radius: 8px; transition: background 0.2s, color 0.2s; }
  .nav-links a:hover { background: var(--gray-50); color: var(--navy); }
  .nav-links a.active { color: var(--navy); font-weight: 700; }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: 8px !important; }
  .nav-cta:hover { background: var(--navy-mid) !important; }

  /* PAGE HERO */
  .page-hero {
    padding: 120px 5vw 72px; background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100); position: relative; overflow: hidden;
  }
  .page-hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: linear-gradient(var(--gray-100) 1px, transparent 1px), linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.6;
  }
  .page-hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .page-hero-left { max-width: 640px; display: flex; flex-direction: column; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-500); margin-bottom: 20px; }
  .breadcrumb a { text-decoration: none; color: var(--gray-500); transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--navy); }
  .breadcrumb span { color: var(--gray-300); }
  .section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
  .page-hero h1 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 800; letter-spacing: -1.2px; color: var(--navy); line-height: 1.1; text-wrap: pretty; margin-bottom: 16px; }
  .page-hero-sub { font-size: 16px; color: var(--gray-500); line-height: 1.7; max-width: 520px; }

  /* SECTION SHARED */
  .section-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; letter-spacing: -0.7px; color: var(--navy); line-height: 1.15; text-wrap: pretty; }
  .section-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; margin-top: 12px; line-height: 1.7; }
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); font-family: var(--font); font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px oklch(22% 0.06 255 / 0.3); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--gray-300); color: var(--gray-700); font-family: var(--font); font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 10px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .btn-outline:hover { border-color: var(--navy); color: var(--navy); }

  /* SERVICES MAIN */
  .services-main { padding: 80px 5vw 100px; }

  .service-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    padding: 64px 0; border-bottom: 1px solid var(--gray-100);
  }
  .service-block:last-child { border-bottom: none; }
  .service-block.reverse { }
  .service-block.reverse .service-block-visual { order: 2; }
  .service-block.reverse .service-block-content { order: 1; }

  .service-block-visual {
    position: relative;
  }
  .service-visual-card {
    background: var(--gray-50); border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 36px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .service-visual-card.dark {
    background: var(--navy); border-color: transparent;
  }
  .service-visual-icon {
    width: 56px; height: 56px; background: oklch(22% 0.06 255 / 0.07);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
  }
  .service-visual-card.dark .service-visual-icon { background: oklch(100% 0 0 / 0.08); }
  .service-visual-icon svg { width: 28px; height: 28px; color: oklch(22% 0.06 255 / 0.6); }
  .service-visual-card.dark .service-visual-icon svg { color: var(--blue-light); }
  .service-visual-title { font-size: 20px; font-weight: 800; color: var(--navy); }
  .service-visual-card.dark .service-visual-title { color: var(--white); }
  .service-feature-list { display: flex; flex-direction: column; gap: 12px; }
  .service-feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--gray-700); line-height: 1.5;
  }
  .service-visual-card.dark .service-feature { color: oklch(100% 0 0 / 0.6); }
  .service-feature-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
    flex-shrink: 0; margin-top: 6px;
  }
  .service-visual-card.dark .service-feature-dot { background: var(--blue-light); }

  .service-block-content {}
  .service-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
  .service-block-content h2 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; letter-spacing: -0.6px; color: var(--navy); line-height: 1.15; margin-bottom: 16px; text-wrap: pretty; }
  .service-block-content p { font-size: 15px; color: var(--gray-500); line-height: 1.75; margin-bottom: 14px; }
  .service-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
  .service-tag { font-size: 12px; font-weight: 600; color: var(--navy); background: oklch(52% 0.18 250 / 0.08); border: 1px solid oklch(52% 0.18 250 / 0.2); padding: 5px 12px; border-radius: 100px; }

  /* FINISHING SCHOOL — full width */
  .finishing-school {
    background: var(--navy); padding: 80px 5vw;
    position: relative; overflow: hidden;
  }
  .finishing-school-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(oklch(100% 0 0 / 0.025) 1px, transparent 1px), linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .finishing-school-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .finishing-school .section-label { color: var(--blue-light); }
  .finishing-school h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 16px; }
  .finishing-school p { font-size: 15px; color: oklch(100% 0 0 / 0.6); line-height: 1.75; margin-bottom: 14px; }
  .fs-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
  .fs-stat { background: oklch(100% 0 0 / 0.05); border: 1px solid oklch(100% 0 0 / 0.1); border-radius: var(--radius); padding: 20px; }
  .fs-stat span:first-child { display: block; font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
  .fs-stat span:last-child { font-size: 12px; font-weight: 600; color: oklch(100% 0 0 / 0.45); text-transform: uppercase; letter-spacing: 0.5px; }
  .fs-pillars { display: flex; flex-direction: column; gap: 14px; }
  .fs-pillar { display: flex; gap: 14px; align-items: flex-start; background: oklch(100% 0 0 / 0.05); border: 1px solid oklch(100% 0 0 / 0.1); border-radius: var(--radius); padding: 18px; }
  .fs-pillar-icon { width: 36px; height: 36px; background: oklch(100% 0 0 / 0.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .fs-pillar-icon svg { width: 16px; height: 16px; color: var(--blue-light); }
  .fs-pillar strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
  .fs-pillar span { font-size: 13px; color: oklch(100% 0 0 / 0.5); line-height: 1.5; }

  /* CTA STRIP */
  .cta-strip { background: var(--gray-50); border-top: 1px solid var(--gray-100); padding: 80px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .cta-strip h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 8px; }
  .cta-strip p { font-size: 15px; color: var(--gray-500); max-width: 480px; }
  .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: var(--navy); padding: 60px 5vw 32px; color: oklch(100% 0 0 / 0.5); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid oklch(100% 0 0 / 0.08); }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: oklch(100% 0 0 / 0.35); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size: 13px; color: oklch(100% 0 0 / 0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: oklch(100% 0 0 / 0.5); margin-bottom: 10px; }
  .footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
  .footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; gap: 16px; flex-wrap: wrap; }

  @media (max-width: 1024px) {
    .service-block { grid-template-columns: 1fr; gap: 40px; }
    .service-block.reverse .service-block-visual { order: 0; }
    .service-block.reverse .service-block-content { order: 0; }
    .finishing-school-inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-strip { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .fs-stats { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
  }

/* ─── styles from clients.html ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: oklch(22% 0.06 255);
    --navy-mid: oklch(28% 0.07 255);
    --blue: oklch(52% 0.18 250);
    --blue-light: oklch(62% 0.16 250);
    --white: oklch(98% 0.005 255);
    --gray-50: oklch(96% 0.005 255);
    --gray-100: oklch(92% 0.008 255);
    --gray-300: oklch(78% 0.01 255);
    --gray-500: oklch(58% 0.015 255);
    --gray-700: oklch(38% 0.015 255);
    --text: oklch(18% 0.03 255);
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px; --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 68px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100); transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px oklch(0% 0 0 / 0.08); }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--gray-700); padding: 6px 12px; border-radius: 8px; transition: background 0.2s, color 0.2s; }
  .nav-links a:hover { background: var(--gray-50); color: var(--navy); }
  .nav-links a.active { color: var(--navy); font-weight: 700; }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: 8px !important; }
  .nav-cta:hover { background: var(--navy-mid) !important; }

  .page-hero {
    padding: 120px 5vw 72px; background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100); position: relative; overflow: hidden;
  }
  .page-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(var(--gray-100) 1px, transparent 1px), linear-gradient(90deg, var(--gray-100) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.6; }
  .page-hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .page-hero-left { max-width: 640px; display: flex; flex-direction: column; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-500); margin-bottom: 20px; }
  .breadcrumb a { text-decoration: none; color: var(--gray-500); transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--navy); }
  .breadcrumb span { color: var(--gray-300); }
  .section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
  .page-hero h1 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 800; letter-spacing: -1.2px; color: var(--navy); line-height: 1.1; text-wrap: pretty; margin-bottom: 16px; }
  .page-hero-sub { font-size: 16px; color: var(--gray-500); line-height: 1.7; max-width: 520px; }
  .page-hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--gray-100); }
  .hero-stat span:first-child { display: block; font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.8px; white-space: nowrap; }
  .hero-stat span:last-child { font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }

  .section-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; letter-spacing: -0.7px; color: var(--navy); line-height: 1.15; text-wrap: pretty; }
  .section-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; margin-top: 12px; line-height: 1.7; }
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); font-family: var(--font); font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px oklch(22% 0.06 255 / 0.3); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--gray-300); color: var(--gray-700); font-family: var(--font); font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 10px; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .btn-outline:hover { border-color: var(--navy); color: var(--navy); }

  /* INDUSTRY SECTIONS */
  .clients-section { padding: 80px 5vw 100px; }
  .industry-block { margin-bottom: 72px; }
  .industry-block:last-child { margin-bottom: 0; }
  .industry-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
  .industry-icon { width: 44px; height: 44px; background: oklch(22% 0.06 255 / 0.07); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .industry-icon svg { width: 22px; height: 22px; color: oklch(22% 0.06 255 / 0.6); }
  .industry-header h2 { font-size: 20px; font-weight: 800; color: var(--navy); }
  .industry-header .industry-count { font-size: 12px; font-weight: 700; color: var(--blue); background: oklch(52% 0.18 250 / 0.08); padding: 4px 10px; border-radius: 100px; margin-left: 4px; }

  .clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .client-card {
    background: var(--white); border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 24px 20px;
    display: flex; flex-direction: column; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 1px 4px oklch(0% 0 0 / 0.04);
  }
  .client-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px oklch(0% 0 0 / 0.08); border-color: oklch(52% 0.18 250 / 0.25); }
  .client-logo { width: 40px; height: 40px; background: oklch(22% 0.06 255 / 0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
  .client-logo svg { width: 20px; height: 20px; color: oklch(22% 0.06 255 / 0.5); }
  .client-card h3 { font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.3; }
  .client-card p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
  .client-tag { font-size: 11px; font-weight: 700; color: var(--blue); background: oklch(52% 0.18 250 / 0.08); padding: 3px 8px; border-radius: 6px; width: fit-content; margin-top: 4px; }

  /* PRESENCE MAP */
  .presence { background: var(--navy); padding: 80px 5vw; position: relative; overflow: hidden; }
  .presence-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(oklch(100% 0 0 / 0.025) 1px, transparent 1px), linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px); background-size: 60px 60px; }
  .presence-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .presence .section-label { color: var(--blue-light); }
  .presence h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; margin-bottom: 16px; }
  .presence p { font-size: 15px; color: oklch(100% 0 0 / 0.6); line-height: 1.75; }
  .country-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .country-card { background: oklch(100% 0 0 / 0.05); border: 1px solid oklch(100% 0 0 / 0.1); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 12px; align-items: center; }
  .country-flag { font-size: 24px; }
  .country-card strong { display: block; font-size: 14px; font-weight: 800; color: var(--white); }
  .country-card span { font-size: 12px; color: oklch(100% 0 0 / 0.45); }

  /* TESTIMONIAL */
  .testimonials { padding: 80px 5vw; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
  .testimonial-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 1px 4px oklch(0% 0 0 / 0.04); }
  .testimonial-stars { display: flex; gap: 3px; }
  .testimonial-stars svg { width: 14px; height: 14px; fill: oklch(72% 0.16 65); }
  .testimonial-quote { font-size: 14px; color: var(--gray-700); line-height: 1.7; font-style: italic; flex: 1; }
  .testimonial-author { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--gray-100); }
  .testimonial-avatar { width: 36px; height: 36px; background: oklch(22% 0.06 255 / 0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .testimonial-avatar svg { width: 16px; height: 16px; color: oklch(22% 0.06 255 / 0.4); }
  .testimonial-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
  .testimonial-author span { font-size: 11px; color: var(--gray-500); }

  /* CTA */
  .cta-strip { background: var(--white); border-top: 1px solid var(--gray-100); padding: 80px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .cta-strip h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 8px; }
  .cta-strip p { font-size: 15px; color: var(--gray-500); max-width: 480px; }
  .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  footer { background: var(--navy); padding: 60px 5vw 32px; color: oklch(100% 0 0 / 0.5); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid oklch(100% 0 0 / 0.08); }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: oklch(100% 0 0 / 0.35); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size: 13px; color: oklch(100% 0 0 / 0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: oklch(100% 0 0 / 0.5); margin-bottom: 10px; }
  .footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
  .footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; gap: 16px; flex-wrap: wrap; }

  @media (max-width: 1024px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .presence-inner { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .clients-grid { grid-template-columns: 1fr; }
    .country-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .page-hero-stats { gap: 24px; flex-wrap: wrap; }
    .footer-top { grid-template-columns: 1fr; }
  }

/* ─── WordPress admin bar offset ─── */
.admin-bar nav#main-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar nav#main-nav { top: 46px; }
}

/* ─── WordPress core alignments (so default editor blocks render sanely) ─── */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 0.5em; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ─── WordPress nav menu compatibility ───────────────────────────────────
   When wp_nav_menu() renders the Primary menu, it wraps each link in a
   <li class="menu-item ..."> with WordPress-generated classes. The CSS
   class the user adds in Appearance → Menus ("CSS Classes" field) is put
   on the <li>, NOT the <a>. So .nav-cta needs to work in both places. */

.nav-links li {
  list-style: none;
  display: flex;
  align-items: center;
}

/* Make .nav-cta work whether the class is on the <a> or on the parent <li> */
.nav-links li.nav-cta > a,
.nav-links a.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav-links li.nav-cta > a:hover,
.nav-links a.nav-cta:hover {
  background: var(--navy-mid) !important;
}

/* Active page state — WordPress adds .current-menu-item to the active <li> */
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a {
  color: var(--navy);
  font-weight: 700;
}

/* Strip default WordPress menu list styling that conflicts with our flex layout */
.nav-links {
  margin: 0;
  padding: 0;
}
