/*
Theme Name: Altitude APAC
Theme URI: https://altitudeapac.com
Author: Altitude Software APAC
Author URI: https://altitudeapac.com
Description: Custom WordPress theme for Altitude Software APAC - Contact Centre Solutions
Version: 1.0.0
License: All Rights Reserved
Text Domain: altitudeapac
Tags: business, custom-logo, full-width-template
*/

/* ── ALTITUDE DESIGN SYSTEM ── */
:root {
  --navy: #0f2044;
  --navy-mid: #162e5a;
  --navy-soft: #1e3a6e;
  --orange: #E8892A;
  --orange-dark: #C9721A;
  --orange-light: #FEF0E1;
  --orange-glow: rgba(232,137,42,0.14);
  --orange-border: rgba(232,137,42,0.30);
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-mid: #eaf0f6;
  --ink: #0f1e30;
  --ink-mid: #2c3e55;
  --ink-soft: #5a7089;
  --ink-faint: #96adbf;
  --border: #dce8f0;
  --border-mid: #c5d8e8;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behaviour: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { display: flex; align-items: center; }
.nav-logo-img svg { width: 130px; height: auto; display: block; }
.nav-links {
  display: flex; gap: 1.75rem; list-style: none; position: relative;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color var(--ease);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; }
.nav-links > li > a.active { font-weight: 600; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  min-width: 260px; list-style: none; padding: 0.5rem 0; z-index: 200;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 0.65rem 1.25rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color var(--ease), background var(--ease);
}
.nav-dropdown li a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ── MEGA DROPDOWN ── */
.nav-mega {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 1.75rem 2rem;
  z-index: 200;
  min-width: 720px;
  display: none;
}
.nav-mega::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-links > li:hover .nav-mega { display: block; }
.nav-mega-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.nav-mega-col h4 {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  color: var(--orange); text-transform: none; letter-spacing: 0;
  padding-bottom: 0.6rem; margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(232,137,42,0.25);
}
.nav-mega-col ul { list-style: none; }
.nav-mega-col ul li { margin-bottom: 0.15rem; }
.nav-mega-col ul li a {
  display: block; padding: 0.5rem 0.6rem; border-radius: 6px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-mega-col ul li a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--orange); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 18px rgba(232,137,42,0.35);
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger svg { display: block; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 6%;
  gap: 5rem;
  position: relative; overflow: hidden;
  background: var(--bg-soft);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 50%, rgba(232,137,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 10% 20%, rgba(15,32,68,0.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.035;
  background-image:
    linear-gradient(var(--navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  color: var(--orange-dark);
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.4rem 1rem; border-radius: 4px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 6px var(--orange);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy); margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--orange-dark); }
.hero p {
  font-size: 1rem; font-weight: 300;
  color: var(--ink-soft);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 24px rgba(232,137,42,0.35);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,137,42,0.45);
}
.btn-outline {
  color: var(--navy); border: 1.5px solid var(--border-mid);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--orange); color: var(--orange-dark); background: var(--orange-light);
}
.btn-white {
  background: #fff; color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--ease), box-shadow var(--ease);
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.btn-outline-white {
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: var(--orange); color: var(--orange);
  background: rgba(232,137,42,0.08);
}

/* ── CUSTOM IMAGE STYLES (Transparent Background) ── */
.hero-visual { position: relative; z-index: 1; }
.hero-image-card {
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.hero-image-card:hover {
  transform: translateY(-6px);
}
.hero-image-inner {
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ── TRUST BAR ── */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 6%;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); white-space: nowrap; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }
.trust-logos { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.trust-logos span {
  font-size: 0.8rem; font-weight: 500; color: var(--ink-faint);
  letter-spacing: 0.04em; white-space: nowrap;
  transition: color var(--ease); cursor: default;
}
.trust-logos span:hover { color: var(--orange-dark); }

/* ── SECTIONS ── */
section { padding: 6rem 6%; }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange-dark); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 1rem;
}
.section-title .accent { color: var(--orange-dark); }
.section-sub {
  font-size: 0.975rem; font-weight: 300;
  color: var(--ink-soft); max-width: 560px; line-height: 1.8;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── PILLARS ── */
.pillars { background: var(--bg); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem;
}
.pillar-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: default;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.pillar-card:hover {
  border-color: var(--orange-border); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232,137,42,0.1), 0 4px 12px rgba(15,32,68,0.06);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  width: 48px; height: 48px; background: var(--orange-light);
  border: 1px solid var(--orange-border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.pillar-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.pillar-card p { font-size: 0.875rem; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }

/* ── STATS ── */
.stats-section {
  background: var(--navy); padding: 5.5rem 6%;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,137,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.stats-section::after {
  content: ''; position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem; position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, #fff 40%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── PRODUCTS ── */
.products { background: var(--bg-soft); padding: 5rem 6%; }
.prod-featured {
  background: var(--navy); border-radius: var(--radius);
  padding: 3rem; margin-bottom: 1.5rem;
  position: relative; overflow: hidden;
}
.prod-featured::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.prod-featured-content {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.prod-featured-left .product-tag {
  background: rgba(232,137,42,0.15); color: var(--orange);
  border-color: rgba(232,137,42,0.3); margin-bottom: 1rem;
}
.prod-featured-left h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.025em; margin-bottom: 0.75rem;
}
.prod-featured-left p {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.8;
  max-width: 520px; margin-bottom: 1.5rem;
}
.prod-bullets {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.5rem; margin-bottom: 2rem;
}
.prod-bullets li {
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  padding-left: 1.25rem; position: relative; line-height: 1.5;
}
.prod-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.45em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.prod-stat-stack {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; min-width: 240px;
}
.prod-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 1.1rem 1rem; text-align: center;
}
.prod-stat-card.highlight {
  background: rgba(232,137,42,0.1); border-color: rgba(232,137,42,0.2);
}
.prod-stat-val {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.prod-stat-val span { font-size: 1rem; font-weight: 400; }
.prod-stat-val.orange { color: var(--orange); }
.prod-stat-lbl {
  font-size: 0.68rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.35rem;
}

/* Product grid */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.product-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative; overflow: hidden;
}
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.product-card:hover {
  border-color: var(--orange-border); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232,137,42,0.1);
}
.product-card:hover::after { transform: scaleX(1); }
.prod-card-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem;
}
.prod-icon { font-size: 1.5rem; line-height: 1; }
.product-tag {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange-dark); background: var(--orange-light);
  border: 1px solid var(--orange-border);
  padding: 0.2rem 0.6rem; border-radius: 4px; display: inline-block;
}
.product-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.product-card > p {
  font-size: 0.82rem; font-weight: 300; color: var(--ink-soft); line-height: 1.65; flex: 1;
}
.prod-mini-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 0.3rem; margin: 0.25rem 0;
}
.prod-mini-bullets li {
  font-size: 0.78rem; color: var(--ink-soft); padding-left: 1rem; position: relative; line-height: 1.5;
}
.prod-mini-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.45em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
}
.prod-link {
  font-size: 0.82rem; font-weight: 600; color: var(--orange-dark);
  margin-top: 0.25rem; transition: gap var(--ease);
}
.product-card:hover .prod-link { text-decoration: underline; }

/* CTA card */
.prod-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(255,255,255,0.08); cursor: default;
}
.prod-card-cta:hover { border-color: var(--orange-border); }
.prod-cta-inner { display: flex; flex-direction: column; gap: 0.75rem; height: 100%; }
.prod-cta-icon { font-size: 1.5rem; }
.prod-card-cta h3 { color: #fff; }
.prod-card-cta p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; flex: 1; }
.prod-cta-btn {
  display: inline-block; font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2);
  margin-top: auto;
}
.prod-cta-btn:hover { color: #fff; border-color: var(--orange); background: rgba(232,137,42,0.1); }

/* Explore bar */
.prod-explore {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 2rem; flex-wrap: wrap;
}
.prod-explore-text {
  font-size: 0.9rem; color: var(--ink-soft); font-weight: 400; flex: 1; min-width: 200px;
}
.prod-explore .btn-primary,
.prod-explore .btn-outline {
  font-size: 0.875rem; padding: 0.65rem 1.4rem; white-space: nowrap;
}

/* ── INDUSTRIES ── */
.industries { background: var(--bg); }
.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem;
}
.industry-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.industry-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.industry-card:hover {
  border-color: var(--orange-border); transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,137,42,0.1);
}
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon {
  width: 52px; height: 52px; background: var(--orange-light);
  border: 1px solid var(--orange-border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.industry-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.industry-card p { font-size: 0.85rem; font-weight: 300; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.industry-link {
  margin-top: 1.25rem; font-size: 0.85rem; font-weight: 600;
  color: var(--orange-dark); display: flex; align-items: center; gap: 5px;
  transition: gap var(--ease);
}
.industry-card:hover .industry-link { gap: 9px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy); padding: 6rem 6%;
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,137,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  color: #fff; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 1rem;
}
.cta-banner h2 .accent { color: var(--orange); }
.cta-banner p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem; line-height: 1.75;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #07111f; padding: 4.5rem 6% 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 200px 170px 1fr 180px;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo-img svg { width: 110px; height: auto; display: block; margin-bottom: 1rem; }
.footer-desc {
  font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.3);
  line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem;
}
.footer-addr { font-size: 0.78rem; color: rgba(255,255,255,0.25); line-height: 1.9; }
.footer-col h4 {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.25); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.2);
}
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a {
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color var(--ease);
}
.footer-social a:hover { color: var(--orange); }

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

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 5rem 6% 4rem; }
  .hero-visual { margin-top: 2rem; }
  .nav-hamburger { display: block; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 6%; gap: 0.5rem; z-index: 300;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .nav-links.open > li > a { padding: 0.6rem 0; font-size: 0.95rem; }
  .nav-links.open .nav-dropdown { display: none; }
    .nav-links.open .nav-dropdown.mobile-open { display: block; position: static; background: rgba(255,255,255,0.05); border: none; box-shadow: none; min-width: unset; padding: 0.25rem 0 0.25rem 1rem; }
  .nav-links.open .nav-mega { display: none; }
    .nav-links.open .nav-mega.mobile-open { display: block; position: static; background: rgba(255,255,255,0.05); border: none; box-shadow: none; width: 100%; padding: 0.5rem 0 0.5rem 1rem; }
  .prod-featured-content { grid-template-columns: 1fr; }
  .prod-stat-stack { grid-template-columns: repeat(4, 1fr); min-width: unset; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-stat-stack { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .prod-featured { padding: 2rem 1.5rem; }
  .prod-explore { flex-direction: column; align-items: flex-start; }
}

/* ══ MOBILE UX ENHANCEMENTS ══ */

/* ── 1. NAV: Larger touch targets, smooth dropdown expand ── */
@media (max-width: 960px) {
  .nav-links.open > li > a {
    padding: 0.85rem 0;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open .nav-dropdown li a,
  .nav-links.open .nav-mega-col ul li a {
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links.open .nav-mega-col h4 {
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem 0.4rem;
    margin-top: 0.5rem;
  }
  .nav-links.open .nav-mega-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-links.open .nav-mega.mobile-open {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Dropdown arrow indicator */
  .nav-links.open > li > a[href="#"]::after {
    content: '▸';
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    opacity: 0.5;
  }
  .nav-links.open > li > a[href="#"].dd-open::after {
    transform: rotate(90deg);
  }
}

/* ── 2. HERO: Mobile typography ── */
@media (max-width: 600px) {
  .hero {
    padding: 3.5rem 5% 3rem !important;
    min-height: auto !important;
  }
  .hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
  }
  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-eyebrow {
    font-size: 0.62rem !important;
    padding: 0.3rem 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions a,
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-outline-white {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }
  .hero-visual { display: none; }
  /* Sub-page hero */
  .page-hero h1 {
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
  }
  .page-hero p {
    font-size: 0.88rem !important;
  }
}

/* ── 3. STATS GRID: Mobile reflow ── */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
  .stat-num {
    font-size: 2rem !important;
  }
  .stat-desc, .stat-label {
    font-size: 0.65rem !important;
  }
  .stats-band, .stats-section {
    padding: 3rem 5% !important;
  }
  .stat-item {
    padding: 0.75rem 0.5rem !important;
    border-right: none !important;
  }
  /* Prod stat stack (homepage featured product) */
  .prod-stat-stack {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── 4. PRODUCT CARDS: Clean single-column stack ── */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .product-card {
    padding: 1.5rem !important;
  }
  .prod-featured {
    padding: 1.75rem 1.25rem !important;
  }
  .prod-featured-content {
    grid-template-columns: 1fr !important;
  }
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .feature-card {
    padding: 1.5rem !important;
  }
}

/* ── 5. INDUSTRY CARDS: Better mobile readability ── */
@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .industry-card {
    padding: 1.5rem !important;
  }
  .industry-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
  }
  .industry-card h3 {
    font-size: 1.05rem !important;
  }
  .industry-card p {
    font-size: 0.88rem !important;
  }
  /* Integration cards */
  .int-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
}

/* ── 6. TOUCH TARGETS: Min 44px for all interactive elements ── */
@media (max-width: 960px) {
  .btn-primary, .btn-outline, .btn-outline-white, .btn-white {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }
  .industry-link, .prod-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  .check-list li {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.92rem;
  }
  .prod-mini-bullets li {
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  /* CTA band buttons */
  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-actions a {
    width: 100%;
    text-align: center;
  }
  /* Footer links */
  .footer-col ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 0.88rem;
  }
}

/* ── General mobile spacing ── */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem !important;
  }
  .section-sub {
    font-size: 0.88rem !important;
  }
  .section-header {
    margin-bottom: 2rem !important;
  }
  .split {
    gap: 2rem !important;
  }
  .split-text h2 {
    font-size: 1.4rem !important;
  }
  .cta-band, .cta-banner {
    padding: 3.5rem 5% !important;
  }
  .cta-band h2, .cta-banner h2 {
    font-size: 1.4rem !important;
  }
  .cta-band p, .cta-banner p {
    font-size: 0.88rem !important;
  }
  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.68rem !important;
    flex-wrap: wrap;
  }
}


/* ── UTILITY: Section padding ── */
.section-pad { padding: 5rem 6%; }
