/* ============================================
   AQL EQUIPMENT RENTAL — DESIGN SYSTEM
   Industrial-Utilitarian × Corporate Precision
   ============================================ */

:root {
  /* Brand */
  --navy: #163A5F;
  --navy-700: #1E4A75;
  --navy-800: #122B47;
  --navy-900: #0B1F35;
  --orange: #F97316;
  --orange-600: #EA580C;
  --orange-700: #C2410C;

  /* Neutral */
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --surface-2: #F1F5F9;
  --border: #E2E8F0;
  --border-2: #CBD5E1;
  --text: #0F172A;
  --text-2: #334155;
  --text-3: #64748B;
  --text-4: #94A3B8;

  /* Status */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #DC2626;

  /* Typography */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4.5rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container: 1280px;
  --container-px: 1.25rem;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 2px 4px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 160ms;
  --t-base: 240ms;
  --t-slow: 420ms;

  color-scheme: light;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ===== Blueprint background pattern ===== */
.blueprint-bg {
  position: relative;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(249,115,22,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(22,58,95,0.4), transparent 60%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
  color: white;
}
.blueprint-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,53,0.0) 0%, rgba(11,31,53,0.6) 100%);
  pointer-events: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
@media (min-width: 768px) { :root { --container-px: 2rem; } }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 5.5vw, var(--fs-6xl)); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, var(--fs-5xl)); }
h3 { font-size: clamp(1.375rem, 2.5vw, var(--fs-3xl)); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }
p { color: var(--text-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--orange);
}
.eyebrow.on-dark { color: var(--orange); }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 60ch;
}
.lede.on-dark { color: rgba(255,255,255,0.78); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 -2px 0 rgba(0,0,0,0.12);
}
.btn--primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: var(--navy);
  color: white;
}
.btn--secondary:hover { background: var(--navy-700); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }

.btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }

.btn--whatsapp {
  background: #25D366;
  color: white;
}
.btn--whatsapp:hover { background: #1FB857; }

.btn--lg { min-height: 56px; padding: 0 28px; font-size: var(--fs-md); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: var(--fs-sm); }
.btn--block { width: 100%; }
.btn .ic { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: var(--sp-4);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 6px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--orange) 50%);
  opacity: 0.95;
}
.brand-mark span {
  position: relative; z-index: 1;
  color: white; font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--text); letter-spacing: -0.01em; }
.brand-text small { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-top: 2px; }
.brand-logo { height: 44px; width: auto; max-width: 100%; display: block; }
.footer-logo { height: 40px; width: auto; max-width: 100%; display: block; margin-bottom: 14px; }
@media (max-width: 400px) { .brand-logo { height: 38px; } }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 12px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast) var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a.current { color: var(--navy); }
.nav a.current::after {
  content: ""; display: block; height: 2px; width: 16px;
  background: var(--orange); margin: 4px auto 0;
}

.header-cta { display: none; align-items: center; gap: 10px; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: flex; }
}

.menu-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.menu-toggle .bar {
  display: block; width: 18px; height: 2px; background: var(--text);
  position: relative;
}
.menu-toggle .bar::before, .menu-toggle .bar::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--text);
}
.menu-toggle .bar::before { top: -6px; }
.menu-toggle .bar::after { top: 6px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: fixed; inset: 72px 0 0 0;
  background: white;
  z-index: 70;
  padding: var(--sp-6) var(--container-px);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { background: var(--surface); }
.mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 10px; margin-top: var(--sp-4); padding: var(--sp-4) 0; border: 0; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ===== Top utility bar ===== */
.utility-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
}
.utility-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px; gap: 12px;
}
.utility-bar a { color: white; display: inline-flex; align-items: center; gap: 6px; }
.utility-bar a:hover { color: var(--orange); }
.utility-bar .util-left { display: flex; align-items: center; gap: 16px; }
.utility-bar .util-right { display: none; align-items: center; gap: 16px; }
@media (min-width: 768px) { .utility-bar .util-right { display: flex; } }
.utility-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,0.18); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-16); }
}
.hero h1 { color: white; margin: 14px 0 18px; }
.hero h1 .accent { color: var(--orange); }
.hero .lede { color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) { .hero-trust { grid-template-columns: repeat(4, auto); gap: 8px 32px; } }
.hero-trust .item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: var(--fs-sm); font-weight: 600; }
.hero-trust .item .ic { color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-800);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-spec-card {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  background: rgba(11,31,53,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: white;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (min-width: 768px) { .hero-spec-card { left: auto; right: 24px; bottom: 24px; max-width: 380px; } }
.hero-spec-card .spec .lbl { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-4); }
.hero-spec-card .spec .val { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-md); margin-top: 2px; }
.hero-spec-card .spec .val small { font-size: 0.7em; color: var(--text-3); font-weight: 600; margin-left: 4px; }

.hero-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse 1.5s ease-in-out infinite; }

/* ===== Stats bar ===== */
.stats {
  background: white;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: white;
  padding: 28px 20px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .num .suffix { color: var(--orange); }
.stat .label {
  margin-top: 8px;
  font-size: var(--fs-sm);
  color: var(--text-3);
  font-weight: 500;
}

/* ===== Testimonials ===== */
.t-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex; flex-direction: column;
}
.t-card .stars { color: var(--orange); letter-spacing: 3px; font-size: 0.95rem; }
.t-card .quote { margin: 12px 0 16px; color: var(--text); flex: 1; }
.t-card .who { font-size: var(--fs-sm); color: var(--text-3); font-weight: 600; }

/* Dark stats band — homepage only */
.stats--dark {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 0;
}
.stats--dark .stats-grid { gap: 0; background: transparent; }
.stats--dark .stat { background: transparent; padding: 48px 20px; }
.stats--dark .stat .num {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  color: var(--orange);
  letter-spacing: -0.03em;
}
.stats--dark .stat .num .suffix { color: #ffffff; font-size: 0.68em; margin-left: 2px; }
.stats--dark .stat .label {
  margin-top: 14px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.stats--dark .stat { transition: transform var(--t-slow) var(--ease); }
.stats--dark .stat .num { transition: text-shadow var(--t-slow) var(--ease); }
.stats--dark .stat:hover { transform: translateY(-5px); }
.stats--dark .stat:hover .num { text-shadow: 0 0 24px rgba(249,115,22,0.38); }
@media (prefers-reduced-motion: reduce) {
  .stats--dark .stat, .stats--dark .stat .num { transition: none; }
  .stats--dark .stat:hover { transform: none; }
}

/* ===== Section ===== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--navy-900); color: white; }
.section--dark h2, .section--dark h3 { color: white; }
.section--dark p { color: rgba(255,255,255,0.72); }

.section-head {
  max-width: 720px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { margin-top: 14px; margin-bottom: 14px; }
.section-head .lede { margin-left: auto; margin-right: auto; }

/* ===== Equipment cards ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 600px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .equipment-grid { grid-template-columns: repeat(3, 1fr); } }

.equip-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.equip-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.equip-card .img {
  aspect-ratio: 16/10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.equip-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.equip-card:hover .img img { transform: scale(1.05); }
.equip-card .img::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(11,31,53,0.5));
}
.equip-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--success);
  color: white;
  padding: 4px 10px;
  font-size: 0.7rem; font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.08em;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
}
.equip-card .tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: white; }
.equip-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.equip-card h3 { font-size: var(--fs-xl); margin-bottom: 6px; }
.equip-card h3 a:hover { color: var(--navy); }
.equip-card .desc { color: var(--text-3); font-size: var(--fs-sm); margin-bottom: 16px; }
.equip-card .specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  padding: 12px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 18px;
}
.equip-card .spec .lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-4); }
.equip-card .spec .val { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: var(--fs-sm); margin-top: 2px; }
.equip-card .actions { display: flex; gap: 8px; margin-top: auto; }
.equip-card .actions .btn { flex: 1; }
.equip-card .actions .btn--sm { min-height: 40px; }

/* ===== Why us / feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all var(--t-base) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ic-wrap {
  width: 52px; height: 52px;
  background: var(--surface);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  border: 1px solid var(--border);
}
.feature .ic-wrap .ic { width: 26px; height: 26px; }
.feature h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.feature p { font-size: var(--fs-sm); color: var(--text-3); }
.feature .num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-weight: 800;
  color: var(--surface-2); font-size: 2.5rem; line-height: 1;
}

/* ===== Industries ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 768px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.industry {
  background: white;
  padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: background var(--t-fast) var(--ease);
}
.industry:hover { background: var(--surface); }
.industry .ic-wrap {
  width: 40px; height: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}
.industry h4 { font-size: var(--fs-md); margin: 0; }
.industry small { font-size: var(--fs-xs); color: var(--text-3); display: block; margin-top: 2px; }

/* ===== Service areas ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 600px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: all var(--t-fast) var(--ease);
}
.area:hover { border-color: var(--orange); transform: translateY(-2px); }
.area .pin {
  width: 36px; height: 36px;
  background: var(--surface);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all var(--t-fast) var(--ease);
}
.area:hover .pin { background: var(--orange); color: white; }
.area .pin .ic { width: 16px; height: 16px; }
.area h4 { font-size: var(--fs-md); margin: 0; }
.area small { font-size: 0.7rem; color: var(--text-3); display: block; margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.testi::before {
  content: """;
  position: absolute; top: -10px; left: 24px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 5rem; line-height: 1;
  color: var(--orange);
  opacity: 0.18;
}
.testi .stars { color: var(--warning); margin-bottom: 14px; display: flex; gap: 2px; }
.testi .stars .ic { width: 16px; height: 16px; }
.testi p { font-size: var(--fs-md); color: var(--text-2); line-height: 1.65; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi .who h5 { font-size: var(--fs-md); margin: 0; font-family: var(--font-display); font-weight: 700; }
.testi .who small { font-size: var(--fs-xs); color: var(--text-3); display: block; margin-top: 2px; }

/* ===== FAQ ===== */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease);
}
.faq-item[open] { border-color: var(--navy); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--t-base) var(--ease);
}
.faq-item[open] summary .ic { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 22px 20px;
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ===== CTA blocks ===== */
.cta-block {
  background: var(--navy-900);
  background-image: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -1;
  opacity: 0.5;
}
.cta-block::after {
  content: ""; position: absolute; right: -10%; top: -50%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 60%);
  z-index: -1;
}
.cta-block h2 { color: white; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.78); max-width: 50ch; margin-bottom: 28px; }
.cta-block .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 33%, var(--navy) 33%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: 40px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 { color: white; font-size: var(--fs-md); margin-bottom: 16px; font-family: var(--font-display); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-text b { color: white; }
.footer-brand .brand-text small { color: rgba(255,255,255,0.5); }
.footer-col p { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: white; }
.footer-contact .ic { color: var(--orange); width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--orange); }

/* ===== Mobile sticky action bar ===== */
.sticky-actions {
  display: flex;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(11,31,53,0.08);
  padding: 8px;
  gap: 6px;
}
.sticky-actions a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 8px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: var(--radius);
  text-align: center;
}
.sticky-actions a .ic { width: 18px; height: 18px; }
.sticky-actions a.call { background: var(--navy); color: white; }
.sticky-actions a.wa { background: #25D366; color: white; }
.sticky-actions a.quote { background: var(--orange); color: white; }
.sticky-actions a .lbl-full { display: none; }
@media (min-width: 480px) {
  .sticky-actions a .lbl-full { display: inline; }
  .sticky-actions a .lbl-short { display: none; }
}
@media (min-width: 1024px) {
  .sticky-actions { display: none; }
}
body { padding-bottom: 72px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ===== Forms ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 600px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
}
.form-group label .req { color: var(--error); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast) var(--ease);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22,58,95,0.1);
}
.form-help { font-size: var(--fs-xs); color: var(--text-3); }
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--fs-sm); color: var(--text-3);
}
.form-consent input { min-height: auto; width: auto; margin-top: 3px; }

/* ===== Quote form (hero variant) ===== */
.quote-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.quote-card h3 { font-size: var(--fs-xl); margin-bottom: 4px; }
.quote-card p.help { color: var(--text-3); font-size: var(--fs-sm); margin-bottom: 20px; }
.quote-card .form-group { margin-bottom: 14px; }
.quote-card .btn { width: 100%; margin-top: 8px; }
.quote-card .trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: var(--fs-xs); color: var(--text-3); }
.quote-card .trust .ic { color: var(--success); width: 14px; height: 14px; }

/* ===== Two col content ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: var(--sp-16); } }
.two-col.reverse > :first-child { order: 2; }
@media (min-width: 1024px) { .two-col.reverse > :first-child { order: 1; } }
.two-col h2 { margin-bottom: 16px; }
.two-col .check-list { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.two-col .check-list li { display: flex; gap: 12px; align-items: flex-start; }
.two-col .check-list .ic { color: var(--success); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.two-col .check-list b { display: block; color: var(--text); font-family: var(--font-display); font-weight: 700; margin-bottom: 2px; }
.two-col .check-list span { font-size: var(--fs-sm); color: var(--text-3); }
.two-col .media { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.two-col .media img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  background: var(--navy-900);
  background-image:
    linear-gradient(rgba(11,31,53,0.85), rgba(11,31,53,0.92)),
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.25), transparent 50%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero h1 { color: white; max-width: 16ch; margin: 14px 0 18px; }
.page-hero .lede { color: rgba(255,255,255,0.78); max-width: 60ch; }
.page-hero .crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.7); }
.page-hero .crumbs a:hover { color: var(--orange); }
.page-hero .crumbs .sep { color: rgba(255,255,255,0.3); }
.page-hero .crumbs .current { color: white; font-weight: 600; }

/* ===== Process steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  counter-reset: step;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.5rem; line-height: 1;
  color: var(--orange);
  opacity: 0.2;
}
.process-step h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.process-step p { font-size: var(--fs-sm); color: var(--text-3); }
.process-step .ic-wrap {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: white;
  margin-bottom: 18px;
}
.process-step .ic-wrap .ic { width: 24px; height: 24px; }

/* ===== Spec table ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spec-table th, .spec-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: var(--fs-sm); }
.spec-table th { background: var(--surface); font-family: var(--font-display); font-weight: 700; color: var(--text); }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table tr:hover td { background: var(--surface); }
.spec-table .ok { color: var(--success); font-weight: 700; }
.spec-table .check { color: var(--orange); }

/* ===== Inline contact strip ===== */
.contact-strip {
  background: var(--surface);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-strip .grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .contact-strip .grid { grid-template-columns: repeat(3, 1fr); } }
.cs-item { display: flex; align-items: center; gap: 14px; }
.cs-item .ic-wrap {
  width: 48px; height: 48px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.cs-item h4 { font-size: var(--fs-md); margin: 0; }
.cs-item small { color: var(--text-3); font-size: var(--fs-xs); display: block; }
.cs-item a { color: var(--text); font-weight: 600; }
.cs-item a:hover { color: var(--orange); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Utility ===== */
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-3); }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); } .mt-6 { margin-top: var(--sp-6); } .mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); } .mb-6 { margin-bottom: var(--sp-6); } .mb-8 { margin-bottom: var(--sp-8); }
.hidden-mobile { display: none; }
@media (min-width: 1024px) { .hidden-mobile { display: initial; } .hidden-desktop { display: none; } }

/* ===== Print ===== */
@media print {
  .site-header, .site-footer, .sticky-actions, .no-print { display: none !important; }
  body { padding: 0; }
}
