
    /* ============================================================
       CSS CUSTOM PROPERTIES — DESIGN TOKENS
    ============================================================ */
    :root {
      --navy:        #0B1F3A;
      --navy-mid:    #122848;
      --navy-light:  #1E3A5F;
      --white:       #FFFFFF;
      --grey-50:     #F5F7FA;
      --grey-100:    #E8EDF5;
      --grey-200:    #C8D3E3;
      --grey-400:    #8496B0;
      --grey-700:    #3D4F63;
      --green:       #1B6B3A;
      --green-light: #2A8A50;
      --blue:        #1A4B9B;
      --blue-light:  #2563C8;
      --text-primary:   #0B1F3A;
      --text-secondary: #4A5F78;
      --text-muted:     #8496B0;

      --font-display: 'Fraunces', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
      --radius-xl:  32px;

      --shadow-sm:  0 2px 8px rgba(11,31,58,.06);
      --shadow-md:  0 8px 32px rgba(11,31,58,.10);
      --shadow-lg:  0 20px 60px rgba(11,31,58,.14);
      --shadow-xl:  0 40px 100px rgba(11,31,58,.18);

      --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      color: var(--text-primary);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ============================================================
       UTILITY CLASSES
    ============================================================ */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 64px);
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 20px;
    }
    .section-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .section-title em { font-style: italic; color: var(--green); }
    .section-body {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      line-height: 1.75;
      max-width: 560px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--navy);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(11,31,58,.25);
    }
    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--grey-200);
    }
    .btn-outline:hover {
      border-color: var(--navy);
      background: var(--grey-50);
      transform: translateY(-2px);
    }
    .btn-white {
      background: var(--white);
      color: var(--navy);
    }
    .btn-white:hover {
      background: var(--grey-100);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(11,31,58,.15);
    }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       HEADER — always white
    ============================================================ */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0;
      background: var(--white);
      box-shadow: 0 1px 0 rgba(11,31,58,.08), 0 4px 24px rgba(11,31,58,.05);
      transition: box-shadow var(--transition);
    }
    .header.scrolled {
      box-shadow: 0 1px 0 rgba(11,31,58,.1), 0 6px 32px rgba(11,31,58,.08);
    }
    .header-inner {
      display: flex;
      align-items: stretch;
      gap: 0;
      min-height: 72px;
    }

    /* Logo area — left block with slight right border */
    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      padding: 12px 32px 12px 0;
      margin-right: 32px;
    }
    .logo img {
      height: 84px;
      width: auto;
      display: block;
    }

    .nav {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .nav-list {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .nav-list > li > a {
      display: block;
      padding: 8px 14px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-sm);
      transition: color 0.2s ease, background 0.2s ease;
      letter-spacing: 0.01em;
    }
    .nav-list > li > a:hover {
      background: var(--grey-50);
      color: var(--navy);
    }

    .header-cta {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      padding-left: 24px;
    }
    .btn-quote {
      background: var(--green);
      color: var(--white);
      padding: 11px 24px;
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 600;
      transition: var(--transition);
      display: inline-block;
    }
    .btn-quote:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(27,107,58,.3);
    }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      margin-left: auto;
      align-self: center;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--navy);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      opacity: 0;
      transform: translateY(-20px);
      transition: var(--transition);
      pointer-events: none;
    }
    .mobile-nav.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
    .mobile-nav a {
      color: var(--white);
      font-size: 1.5rem;
      font-weight: 300;
      font-family: var(--font-display);
      padding: 12px 24px;
    }
    .mobile-nav a:hover { color: var(--grey-200); }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--navy);
      overflow: hidden;
    }

    /* Background: aerial green canopy / sustainable bio-raw material landscape */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          105deg,
          rgba(8, 20, 36, 0.96) 0%,
          rgba(8, 22, 40, 0.88) 35%,
          rgba(10, 28, 50, 0.70) 60%,
          rgba(6, 18, 32, 0.82) 100%
        ),
        url('../images/lhp-bg.jpg') center 40%/cover no-repeat;
      z-index: 0;
    }

    /* Subtle hexagon grid pattern */
    .hero-pattern {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0 L60 17.3 L60 52 L30 69.3 L0 52 L0 17.3Z' fill='none' stroke='white' stroke-width='1'/%3E%3Cpath d='M30 69.3 L60 86.6 L60 121.3 L30 138.6 L0 121.3 L0 86.6Z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
    }

    /* Green atmospheric bloom — top right corner */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      z-index: 1;
      pointer-events: none;
    }
    .hero-orb-1 {
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(27,107,58,.18) 0%, transparent 70%);
      top: -120px; right: -60px;
      animation: orbFloat 10s ease-in-out infinite;
    }
    .hero-orb-2 {
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(26,75,155,.12) 0%, transparent 70%);
      bottom: -60px; left: -40px;
      animation: orbFloat 13s ease-in-out infinite reverse;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-28px) scale(1.04); }
    }

    /* ============================================================
       HERO CONTENT — two-column: text left, stats panel right
    ============================================================ */
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 120px 0 100px;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 64px;
      align-items: center;
      min-height: 100vh;
    }

    .hero-text-block {
      /* left column — text */
    }

    /* ============================================================
       LUXURY TRANSPARENT STATS PANEL — 2×2 grid
    ============================================================ */
    .hero-stats-panel {
      position: relative;
      border: 1px solid rgba(255,255,255,0.42);
      border-radius: 22px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      /* No background — fully see-through */
      background: transparent;
    }

    /* Quadrant */
    .hero-stat-quad {
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      transition: background 0.3s ease;
    }
    .hero-stat-quad:hover {
      background: rgba(255,255,255,0.05);
    }

    /* Internal divider lines — right border for left column, bottom border for top row */
    .hero-stat-quad:nth-child(1),
    .hero-stat-quad:nth-child(3) {
      border-right: 1px solid rgba(255,255,255,0.3);
    }
    .hero-stat-quad:nth-child(1),
    .hero-stat-quad:nth-child(2) {
      border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    /* Icon */
    .stat-icon {
      width: 30px;
      height: 30px;
      margin-bottom: 18px;
      flex-shrink: 0;
      opacity: 0.7;
    }
    .stat-icon svg {
      width: 30px;
      height: 30px;
      display: block;
    }

    /* Number */
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.2vw, 2.75rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    /* Label */
    .stat-lbl {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      color: rgba(255,255,255,0.52);
      text-transform: uppercase;
      letter-spacing: 0.13em;
      line-height: 1.4;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 16px 7px 12px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,0.72);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 36px;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px;
      background: #6FCFA0;
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(27,107,58,.6); }
      50% { box-shadow: 0 0 0 6px rgba(27,107,58,0); }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6.5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      letter-spacing: -0.03em;
      margin-bottom: 28px;
    }
    .hero-title .accent { color: #6FCFA0; font-style: italic; }
    .hero-title .accent-blue { color: #7EB3F5; }

    .hero-sub {
      font-size: 1.125rem;
      color: rgba(255,255,255,0.58);
      line-height: 1.75;
      max-width: 580px;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      background: var(--white);
      color: var(--navy);
      padding: 14px 30px;
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 600;
    }
    .btn-hero-primary:hover {
      background: var(--grey-100);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(255,255,255,.15);
    }
    .btn-hero-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.3);
      padding: 14px 30px;
      border-radius: var(--radius-md);
      font-size: 0.9375rem;
      font-weight: 500;
    }
    .btn-hero-outline:hover {
      border-color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.06);
      transform: translateY(-2px);
    }
    .btn-hero-primary, .btn-hero-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.35);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .scroll-mouse {
      width: 22px; height: 36px;
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 12px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .scroll-wheel {
      width: 3px; height: 8px;
      background: rgba(255,255,255,0.4);
      border-radius: 2px;
      animation: scrollWheel 2s ease-in-out infinite;
    }
    @keyframes scrollWheel {
      0% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(12px); }
    }

    /* ============================================================
       TICKER / MARQUEE
    ============================================================ */
    .ticker {
      background: var(--navy-mid);
      padding: 14px 0;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .ticker-track {
      display: flex;
      gap: 0;
      animation: tickerScroll 28s linear infinite;
      white-space: nowrap;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 32px;
      padding: 0 32px;
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .ticker-dot {
      width: 5px; height: 5px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ============================================================
       PRODUCTS SECTION
    ============================================================ */
    .products {
      padding: clamp(80px, 10vw, 140px) 0;
      background: #F2FBE5;
      position: relative;
      overflow: hidden;
    }
    .products::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
    }

    .products-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 64px;
    }
    .products-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .product-card {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--grey-100);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: transparent;
    }

    .product-card-visual {
      position: relative;
      height: 280px;
      overflow: hidden;
      background: var(--navy);
    }
    .product-card-visual img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      opacity: 0.7;
    }
    .product-card:hover .product-card-visual img { transform: scale(1.06); opacity: 0.85; }

    .product-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(11,31,58,0.85) 100%);
    }
    .product-card-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
    }
    .badge-green { background: rgba(27,107,58,0.85); color: var(--white); }
    .badge-blue  { background: rgba(26,75,155,0.85); color: var(--white); }

    .product-card-body {
      padding: 36px 36px 40px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .product-card-title {
      font-family: var(--font-display);
      font-size: 1.625rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .product-card-desc {
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    .product-tag {
      padding: 5px 12px;
      background: var(--grey-50);
      border: 1px solid var(--grey-100);
      border-radius: 100px;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .product-card:hover .product-tag {
      border-color: var(--grey-200);
    }
    .product-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--navy);
      margin-top: auto;
      transition: var(--transition);
    }
    .product-card-cta svg {
      width: 18px; height: 18px;
      transition: transform 0.3s ease;
    }
    .product-card-cta:hover svg { transform: translateX(4px); }
    .product-card-cta.green { color: var(--green); }
    .product-card-cta.blue  { color: var(--blue); }

    /* Gradient border on hover */
    .product-card::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: calc(var(--radius-xl) + 1px);
      background: linear-gradient(135deg, var(--green), var(--blue));
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .product-card:hover::after { opacity: 1; }

    /* ============================================================
       WHY LHP — Editorial impact section
    ============================================================ */
    .why-lhp {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--white);
      overflow: hidden;
    }

    /* Top: full-width image + large manifesto overlay */
    .why-hero-image {
      position: relative;
      width: 100%;
      height: clamp(340px, 45vw, 580px);
      border-radius: var(--radius-xl);
      overflow: hidden;
      margin-bottom: 80px;
    }
    .why-hero-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: brightness(0.55) saturate(0.85);
      transition: transform 8s ease;
    }
    .why-hero-image:hover img { transform: scale(1.04); }
    .why-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(11,31,58,0.82) 0%, rgba(11,31,58,0.35) 55%, rgba(11,31,58,0.6) 100%);
    }
    .why-hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(32px, 5vw, 64px);
    }
    .why-manifesto {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.02em;
      max-width: 820px;
      margin-bottom: 28px;
    }
    .why-manifesto em { color: #6FCFA0; font-style: italic; }
    .why-manifesto-meta {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .why-manifesto-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .why-manifesto-stat-num {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .why-manifesto-stat-label {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .why-manifesto-divider {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,0.2);
    }

    /* Bottom: 3-column editorial pillars */
    .why-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--grey-100);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .why-pillar {
      padding: 48px 40px;
      position: relative;
      background: #EEF5FD;
      transition: background 0.3s ease;
      border-right: 1px solid var(--grey-100);
    }
    .why-pillar:last-child { border-right: none; }
    .why-pillar:hover { background: var(--grey-50); }

    .why-pillar-number {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--grey-100);
      margin-bottom: 24px;
      transition: color 0.3s ease;
    }
    .why-pillar:hover .why-pillar-number { color: var(--grey-200); }
    .why-pillar-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .why-pillar-desc {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    /* Sub-points inside each pillar */
    .why-pillar-points {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .why-pillar-point {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8375rem;
      color: var(--text-secondary);
    }
    .why-pillar-point::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }

    /* Bottom tagline strip */
    .why-tagline-strip {
      margin-top: 60px;
      padding: 36px 48px;
      background: var(--navy);
      border-radius: var(--radius-xl);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .why-tagline-text {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.3;
    }
    .why-tagline-text em { color: #6FCFA0; font-style: italic; }

    @media (max-width: 900px) {
      .why-pillars { grid-template-columns: 1fr; }
      .why-pillar { border-right: none; border-bottom: 1px solid var(--grey-100); }
      .why-pillar:last-child { border-bottom: none; }
      .why-tagline-strip { flex-direction: column; align-items: flex-start; }
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    .about {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--grey-50);
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }
    .about-visual {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .about-visual img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
    }
    .about-visual-badge {
      position: absolute;
      bottom: 28px;
      right: 28px;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .about-badge-icon {
      width: 44px; height: 44px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .about-badge-icon svg { width: 22px; height: 22px; color: var(--white); }
    .about-badge-text-main {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 400;
      color: var(--navy);
      line-height: 1;
    }
    .about-badge-text-sub {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .about-content { display: flex; flex-direction: column; gap: 24px; }
    .about-meta {
      display: flex;
      gap: 32px;
      padding: 24px 0;
      border-top: 1px solid var(--grey-100);
      border-bottom: 1px solid var(--grey-100);
      margin: 8px 0;
    }
    .about-meta-item { }
    .about-meta-value {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      color: var(--navy);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .about-meta-label {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .about-offices {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .about-office {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    .about-office-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }
    .about-office strong { color: var(--navy); font-weight: 500; }

    /* ============================================================
       GLOBAL PRESENCE — full-width map
    ============================================================ */
    .global {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .global::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0 L60 17.3 L60 52 L30 69.3 L0 52 L0 17.3Z' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
      opacity: 0.03;
    }
    /* Header above map */
    .global-header {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }
    .global-header-left .section-label { color: #6FCFA0; }
    .global-header-left .section-label::before { background: #6FCFA0; }
    .global-header-left .section-title { color: var(--white); }
    .global-header-right {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
    }
    .global-mini-stat {
      text-align: right;
    }
    .global-mini-stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .global-mini-stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      margin-top: 4px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .global-mini-divider {
      width: 1px; height: 48px;
      background: rgba(255,255,255,0.12);
      align-self: center;
    }

    /* Full-width map card */
    .global-map-card {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl);
      padding: 48px;
      overflow: hidden;
    }

    /* The SVG world map itself */
    .world-map-svg {
      width: 100%;
      display: block;
    }
    .map-ocean { fill: transparent; }
    .map-land {
      fill: rgba(255,255,255,0.12);
      stroke: rgba(255,255,255,0.06);
      stroke-width: 0.5;
      transition: fill 0.3s ease;
    }
    .map-land:hover { fill: rgba(255,255,255,0.18); }

    /* Animated markers */
    .map-marker-group { cursor: default; }
    .map-pulse {
      fill: none;
      stroke: #6FCFA0;
      stroke-width: 1.5;
      transform-origin: center;
    }
    .map-pulse-1 { animation: mapPulse 2.8s ease-out infinite; }
    .map-pulse-2 { animation: mapPulse 2.8s ease-out infinite 0.9s; }
    .map-dot-main { fill: #6FCFA0; }
    .map-dot-office {
      fill: #FFFFFF;
      stroke: #6FCFA0;
      stroke-width: 2;
    }
    @keyframes mapPulse {
      0%   { r: 5; opacity: 0.9; }
      100% { r: 20; opacity: 0; }
    }

    /* Tooltip labels */
    .map-tooltip-bg { fill: rgba(11,31,58,0.92); rx: 4; }
    .map-tooltip-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 600;
      fill: #FFFFFF;
      letter-spacing: 0.04em;
    }
    .map-tooltip-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 8.5px;
      fill: rgba(111,207,160,0.9);
    }

    /* Export dot — small */
    .map-export-dot {
      fill: rgba(111,207,160,0.5);
      stroke: rgba(111,207,160,0.7);
      stroke-width: 1;
    }

    /* Office cards under map */
    .global-office-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 32px;
    }
    .global-office-card {
      padding: 24px 28px;
      background: rgba(255,255,255,0.03);
      transition: background 0.3s ease;
    }
    .global-office-card:hover { background: rgba(255,255,255,0.07); }
    .global-office-country {
      font-size: 0.8rem;
      font-weight: 700;
      color: #6FCFA0;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .global-office-role {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.45);
      margin-bottom: 8px;
    }
    .global-office-addr {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.55;
    }

    @media (max-width: 900px) {
      .global-header { flex-direction: column; align-items: flex-start; }
      .global-header-right { }
      .global-mini-stat { text-align: left; }
      .global-map-card { padding: 24px; }
      .global-office-row { grid-template-columns: 1fr; }
    }

    /* ============================================================
       INDUSTRIES
    ============================================================ */
    .industries {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--white);
    }
    .industries-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 64px;
    }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .industry-card {
      padding: 32px 24px;
      border: 1px solid var(--grey-100);
      border-radius: var(--radius-lg);
      background: var(--white);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .industry-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .industry-card:hover {
      border-color: transparent;
      box-shadow: var(--shadow-md);
      transform: translateY(-6px);
    }
    .industry-card:hover::before { transform: scaleX(1); }
    .industry-icon {
      width: 44px; height: 44px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      background: var(--grey-50);
      transition: var(--transition);
    }
    .industry-icon svg { width: 20px; height: 20px; color: var(--navy); }
    .industry-card:hover .industry-icon {
      background: rgba(27,107,58,.08);
    }
    .industry-card:hover .industry-icon svg { color: var(--green); }
    .industry-name {
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .industry-desc {
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ============================================================
       QUALITY
    ============================================================ */
    .quality {
      padding: clamp(80px, 10vw, 140px) 0;
      background: var(--grey-50);
      position: relative;
    }
    .quality-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }
    .quality-visual {
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
    }
    .quality-visual img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .quality-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(27,107,58,0.2) 0%, transparent 60%);
    }

    .quality-points {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 36px;
    }
    .quality-point {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--grey-100);
      transition: var(--transition);
    }
    .quality-point:hover {
      box-shadow: var(--shadow-sm);
      border-color: var(--grey-200);
    }
    .quality-check {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(27,107,58,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .quality-check svg { width: 14px; height: 14px; color: var(--green); }
    .quality-point-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .quality-point-desc {
      font-size: 0.8375rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    .contact {
      padding: clamp(80px, 10vw, 140px) 0;
      background: #aac2d8;
    }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }
    .contact-info-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .contact-info-desc {
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 40px;
    }
    .contact-offices {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }
    .contact-office {
      padding: 13px 16px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--grey-100);
      box-shadow: var(--shadow-sm);
    }
    /* Header row: country name left, phone right */
    .contact-office-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 3px;
    }
    .contact-office-country {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .contact-office-country svg { width: 11px; height: 11px; flex-shrink: 0; }
    .contact-office-phone {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .contact-office-phone svg { width: 10px; height: 10px; flex-shrink: 0; }
    .contact-office-role {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-bottom: 3px;
      font-style: italic;
    }
    .contact-office-addr {
      font-size: 0.78rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .contact-direct {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--text-secondary);
      transition: var(--transition);
    }
    .contact-link:hover { color: var(--navy); }
    .contact-link-icon {
      width: 30px; height: 30px;
      border-radius: var(--radius-sm);
      background: var(--grey-50);
      border: 1px solid var(--grey-100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-link-icon svg { width: 13px; height: 13px; color: var(--navy); }

    /* Contact form */
    .contact-form-card {
      background: var(--grey-50);
      border: 1px solid var(--grey-100);
      border-radius: var(--radius-xl);
      padding: clamp(32px, 4vw, 52px);
    }
    .form-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .form-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group.full { grid-column: 1 / -1; }
    .form-label {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--grey-200);
      border-radius: var(--radius-md);
      background: var(--white);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      color: var(--text-primary);
      transition: var(--transition);
      outline: none;
      -webkit-appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26,75,155,.1);
    }
    .form-textarea {
      height: 120px;
      resize: vertical;
    }
    .form-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px;
      background: var(--navy);
      color: var(--white);
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: var(--transition);
      margin-top: 8px;
    }
    .form-submit:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(11,31,58,.25);
    }
    .form-submit svg { width: 18px; height: 18px; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: #070F1D;
      padding: 80px 0 0;
      color: rgba(255,255,255,0.55);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand {}
    .footer-logo { height: 48px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.85; }
    .footer-brand-desc {
      font-size: 0.875rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      max-width: 280px;
      margin-bottom: 28px;
    }
    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .footer-social {
      width: 36px; height: 36px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .footer-social svg { width: 15px; height: 15px; }
    .footer-social:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.2);
    }

    .footer-col-title {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.45);
      transition: color 0.25s ease;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.85); }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-copyright {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.3);
      transition: color 0.25s ease;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
      .hero-content { grid-template-columns: 1fr 320px; gap: 40px; }
      .hero-stat-quad { padding: 28px 22px; }
      .stat-num { font-size: 2rem; }
      .why-pillars { grid-template-columns: 1fr 1fr; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; padding: 100px 0 80px; }
      .hero-stats-panel { max-width: 480px; }
      .products-header { grid-template-columns: 1fr; }
      .products-cards { grid-template-columns: 1fr; }
      .about-inner { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .quality-inner { grid-template-columns: 1fr; }
      .industries-header { grid-template-columns: 1fr; }
      .products-header > :last-child { display: none; }
      .industries-header > :last-child { display: none; }
    }

    @media (max-width: 768px) {
      .nav { display: none; }
      .hamburger {
        display: flex;
        margin-left: 12px;
        justify-content: center;
        border: 1.5px solid var(--grey-200);
        border-radius: var(--radius-md);
        height: 44px;
        box-sizing: border-box;
        padding: 0 12px;
      }
      .hamburger:hover { border-color: var(--navy); }
      .mobile-nav { display: flex; }
      .header-cta { margin-left: auto; padding-left: 0; }
      .header-cta .btn-quote {
        height: 44px;
        padding-top: 0;
        padding-bottom: 0;
        display: inline-flex;
        align-items: center;
      }
      .hero-stats-panel { max-width: 100%; }
      .hero-stat-quad { padding: 22px 16px; }
      .stat-num { font-size: 1.75rem; }
      .why-pillars { grid-template-columns: 1fr; }
      .industries-grid { grid-template-columns: 1fr 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .logo { padding: 12px 20px 12px 0; margin-right: 16px; }
    }

    @media (max-width: 480px) {
      .hero-content { padding: 90px 0 60px; }
      .industries-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .btn-hero-primary, .btn-hero-outline { justify-content: center; }
      .about-meta { gap: 20px; }
      .stat-icon { width: 24px; height: 24px; margin-bottom: 12px; }
    }

    /* ============================================================
       REDUCED MOTION
    ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      .hero-orb-1, .hero-orb-2 { animation: none; }
      .ticker-track { animation: none; }
      .scroll-wheel { animation: none; }
      .map-pulse { animation: none; }
      * { transition-duration: 0.01ms !important; }
    }

    /* ============================================================
       PRODUCTS DROPDOWN — DESKTOP
    ============================================================ */

    /* The parent li needs relative positioning */
    .nav-dropdown-item {
      position: relative;
    }

    /* Trigger button inherits nav-list link styles + flex for chevron */
    .nav-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 14px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: var(--radius-sm);
      transition: color 0.2s ease, background 0.2s ease;
      letter-spacing: 0.01em;
      cursor: pointer;
      background: none;
      border: none;
      font-family: inherit;
      line-height: inherit;
      white-space: nowrap;
    }
    .nav-dropdown-trigger:hover,
    .nav-dropdown-item.open .nav-dropdown-trigger {
      background: var(--grey-50);
      color: var(--navy);
    }

    /* Chevron rotates when open */
    .nav-chevron {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .nav-dropdown-item.open .nav-chevron {
      transform: rotate(180deg);
    }

    /* The dropdown panel */
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      width: 280px;
      background: var(--white);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 6px rgba(11,31,58,.04), 0 16px 48px rgba(11,31,58,.12);
      border: 1px solid var(--grey-100);
      padding: 8px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 2000;
    }

    /* Invisible hover bridge — covers the gap between trigger and panel
       so the dropdown doesn't close while the mouse crosses it */
    .nav-dropdown::after {
      content: '';
      position: absolute;
      top: -14px;
      left: 0;
      right: 0;
      height: 14px;
    }

    /* Arrow / caret pointing up */
    .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: var(--white);
      border-left: 1px solid var(--grey-100);
      border-top: 1px solid var(--grey-100);
    }

    /* Visible state */
    .nav-dropdown-item.open .nav-dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    /* Each dropdown link row */
    .nav-dropdown-link {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      transition: background 0.18s ease;
      cursor: pointer;
    }
    .nav-dropdown-link:hover {
      background: var(--grey-50);
    }

    /* Icon badge */
    .nav-dropdown-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nav-dropdown-icon svg {
      width: 20px;
      height: 20px;
    }
    .nav-dropdown-icon--green {
      background: rgba(27,107,58,0.09);
      color: var(--green);
    }
    .nav-dropdown-icon--blue {
      background: rgba(26,75,155,0.09);
      color: var(--blue);
    }

    /* Text stack */
    .nav-dropdown-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .nav-dropdown-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
    }
    .nav-dropdown-desc {
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* Divider between the two rows */
    .nav-dropdown-link + .nav-dropdown-link {
      border-top: 1px solid var(--grey-50);
    }

    /* ============================================================
       PRODUCTS SUB-MENU — MOBILE
    ============================================================ */
    .mobile-products-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-size: 1.5rem;
      font-weight: 300;
      font-family: var(--font-display);
      padding: 12px 24px;
      background: none;
      border: none;
      cursor: pointer;
      width: auto;
    }
    .mobile-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .mobile-products-toggle[aria-expanded="true"] .mobile-chevron {
      transform: rotate(180deg);
    }
    .mobile-products-sub {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .mobile-products-sub.open {
      max-height: 640px;
    }
    .mobile-sub-link {
      font-size: 1.125rem !important;
      color: rgba(255,255,255,0.65) !important;
      padding: 8px 24px !important;
    }
    .mobile-sub-link:hover {
      color: var(--white) !important;
    }

    /* ============================================================
       NAV LINKS — refined hover & active state
    ============================================================ */
    .nav-list > li > a,
    .nav-dropdown-trigger {
      position: relative;
    }
    /* Animated gradient underline */
    .nav-list > li > a::after,
    .nav-dropdown-trigger::after {
      content: '';
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 3px;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-list > li > a:hover::after,
    .nav-list > li > a.active::after,
    .nav-dropdown-trigger:hover::after,
    .nav-dropdown-trigger.active::after,
    .nav-dropdown-item.open .nav-dropdown-trigger::after {
      transform: scaleX(1);
    }
    /* Cleaner hover: colour shift + underline, no grey block */
    .nav-list > li > a:hover,
    .nav-dropdown-trigger:hover,
    .nav-dropdown-item.open .nav-dropdown-trigger {
      background: transparent;
      color: var(--navy);
    }
    /* Current page */
    .nav-list > li > a.active,
    .nav-dropdown-trigger.active {
      color: var(--navy);
      font-weight: 600;
    }

    /* ============================================================
       DROPDOWN — SIMPLE LINK LIST VARIANT (Masterbatch menu)
    ============================================================ */
    .nav-dropdown--list {
      width: 260px;
    }
    .nav-dropdown--list > a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
      white-space: nowrap;
    }
    /* Accent dot slides in on hover / marks the current page */
    .nav-dropdown--list > a::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .nav-dropdown--list > a:hover {
      background: var(--grey-50);
      color: var(--navy);
      padding-left: 18px;
    }
    .nav-dropdown--list > a:hover::before {
      opacity: 1;
      transform: scale(1);
    }
    .nav-dropdown--list > a.active {
      background: var(--grey-50);
      color: var(--navy);
      font-weight: 600;
    }
    .nav-dropdown--list > a.active::before {
      opacity: 1;
      transform: scale(1);
    }

    /* ============================================================
       MOBILE NAV — active page highlight
    ============================================================ */
    .mobile-nav a.active {
      color: #6FCFA0 !important;
    }

    /* ============================================================
       MASTERBATCH NESTED SUBMENU — DESKTOP FLYOUT
    ============================================================ */
    .nav-dropdown-sub {
      position: relative;
    }
    .nav-sub-chevron {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      margin-left: auto;
      color: var(--text-muted);
      transition: transform 0.2s ease;
    }
    .nav-dropdown-sub:hover .nav-sub-chevron {
      transform: translateX(2px);
      color: var(--green);
    }
    .nav-subdropdown {
      position: absolute;
      top: -8px;
      left: 100%;
      width: 248px;
      background: var(--white);
      border: 1px solid var(--grey-100);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 6px rgba(11,31,58,.04), 0 16px 48px rgba(11,31,58,.12);
      padding: 8px;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-6px);
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 2001;
    }
    .nav-dropdown-sub:hover .nav-subdropdown,
    .nav-dropdown-sub:focus-within .nav-subdropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateX(0);
    }
    .nav-subdropdown a {
      display: block;
      padding: 9px 14px;
      border-radius: var(--radius-sm);
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: background 0.18s ease, color 0.18s ease;
      white-space: nowrap;
    }
    .nav-subdropdown a:hover {
      background: var(--grey-50);
      color: var(--navy);
    }

    /* ============================================================
       MASTERBATCH NESTED SUBMENU — MOBILE
    ============================================================ */
    .mobile-nav {
      overflow-y: auto;
    }
    .mobile-nav > :first-child { margin-top: auto; }
    .mobile-nav > :last-child { margin-bottom: auto; }
    .mobile-mb-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-weight: 300;
      background: none;
      border: none;
      cursor: pointer;
    }
    .mobile-mb-toggle .mobile-chevron {
      width: 16px;
      height: 16px;
    }
    .mobile-mb-toggle[aria-expanded="true"] .mobile-chevron {
      transform: rotate(180deg);
    }
    .mobile-mb-sub {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .mobile-mb-sub.open {
      max-height: 480px;
    }
    .mobile-sub2-link {
      font-size: 0.9375rem !important;
      font-family: var(--font-body) !important;
      color: rgba(255,255,255,0.55) !important;
      padding: 7px 24px !important;
    }
    .mobile-sub2-link:hover {
      color: var(--white) !important;
    }

    /* ============================================================
       CALL / WHATSAPP BUTTON — auto-rotating icon
    ============================================================ */
    .btn-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .call-icon-swap {
      position: relative;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      perspective: 200px;
    }
    .call-icon {
      position: absolute;
      inset: 0;
      width: 16px;
      height: 16px;
      animation: callIconSwap 4s ease-in-out infinite;
      backface-visibility: hidden;
    }
    /* Phone shows first; WhatsApp runs the same animation half a cycle later */
    .call-icon-wa {
      animation-delay: -2s;
    }
    @keyframes callIconSwap {
      0%, 40%   { opacity: 1; transform: rotateY(0deg); }
      50%, 90%  { opacity: 0; transform: rotateY(180deg); }
      100%      { opacity: 1; transform: rotateY(360deg); }
    }
    @media (prefers-reduced-motion: reduce) {
      .call-icon { animation: none; }
      .call-icon-wa { opacity: 0; }
    }
