/* ══════════════════════════════════════════════════
   ATLAS.Pave.ai
   Layout: georoad.ai  |  Colors: pagi.asia
   Font: Inter (georoad-style modern SaaS)
══════════════════════════════════════════════════ */

/* ── Google Fonts loaded in HTML ── */

/* ── Variables (pagi.asia palette) ── */
:root {
  /* pagi.asia colors */
  --navy:    #0b1929;
  --navy2:   #0f2040;
  --sky:     #b8e0ff;
  --azure:   #2874c5;
  --azure-d: #1a5ca8;
  --azure-l: rgba(40,116,197,0.10);
  --blue:    #1a3a5c;
  --pale:    #f0f5fa;
  --mint:    #eaf4f0;
  --gray:    #546e8a;
  --lgray:   #8faabf;
  --border:  #e2eaf3;

  /* georoad.ai layout tokens */
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(26,58,92,0.08);
  --shadow-md: 0 8px 40px rgba(26,58,92,0.13);
  --shadow-lg: 0 20px 60px rgba(26,58,92,0.18);
  --transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--blue);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--azure); text-decoration: none; }
strong { font-weight: 700; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media(max-width:768px) { .container { padding: 0 20px; } }

/* ══════════════════ NAV ══════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo svg { height: 38px; width: auto; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-logo-text { line-height: 1.3; }
.nav-logo-text .wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22.4px; font-weight: 700;
  letter-spacing: 0.03em; color: #2874c5;
}
.nav-logo-text .wordmark span { color: var(--azure); }
.nav-logo-text .sub {
  font-size: 0.62rem; font-weight: 500;
  color: var(--lgray); letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--gray); padding: 8px 14px;
  border-radius: 8px; transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--blue); background: var(--pale); }
.nav-links a.active { color: var(--azure); font-weight: 600; }
/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--azure); color: #fff;
  padding: 10px 20px; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(40,116,197,0.35);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--azure-d); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(40,116,197,0.45); }
/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  background: var(--pale); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 3px 4px;
  cursor: pointer; flex-shrink: 0;
  gap: 2px; transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--azure); }
.lang-toggle .lt-en,
.lang-toggle .lt-id {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 3px 9px; border-radius: 14px;
  color: var(--lgray); transition: var(--transition);
  user-select: none;
}
.lang-toggle .lt-active {
  background: var(--azure); color: #fff;
  box-shadow: 0 1px 6px rgba(40,116,197,0.35);
}
/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); }
.nav-drawer {
  display: none; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px; z-index: 199;
  box-shadow: var(--shadow);
}
.nav-drawer a { font-size: 0.95rem; font-weight: 500; color: var(--gray); padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer.open { display: flex; }

/* ══════════════════ HERO ══════════════════ */
.hero {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0d2a4a 100%);
  padding: 100px 40px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,224,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,224,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,224,255,0.1);
  border: 1px solid rgba(184,224,255,0.2);
  color: var(--sky); padding: 6px 14px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: #22c55e; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { opacity:.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 20px;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--sky), #7ab8f5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 0.9rem; color: rgba(184,224,255,0.7);
  line-height: 1.7; margin-bottom: 36px;
  font-weight: 400; max-width: 480px;
}
.hero-acronym {
  font-size: 0.78rem; color: rgba(184,224,255,0.5);
  font-weight: 500; margin-bottom: 28px; line-height: 1.6;
}
.hero-acronym strong { color: rgba(184,224,255,0.8); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--azure); color: #fff;
  padding: 13px 24px; border-radius: 12px;
  font-size: 0.925rem; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(40,116,197,0.4);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--azure-d); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(40,116,197,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,224,255,0.25);
  color: var(--sky); padding: 13px 24px;
  border-radius: 12px; font-size: 0.925rem;
  font-weight: 600; text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(184,224,255,0.4); }

/* Hero visual — dashboard mockup */
.hero-visual {
  position: relative;
}
.hero-dashboard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,224,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-dashboard svg { width: 100%; display: block; }
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}
.hero-float-card.card-1 { bottom: -20px; left: -30px; }
.hero-float-card.card-2 { top: -20px; right: -20px; }
.float-val { font-size: 1.4rem; font-weight: 800; color: var(--azure); letter-spacing: -0.02em; }
.float-lbl { font-size: 0.7rem; color: var(--gray); font-weight: 500; margin-top: 2px; }

/* ══════════════════ STATS STRIP ══════════════════ */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.4rem; font-weight: 800;
  color: var(--blue); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 6px;
}
.stat-tag {
  font-size: 0.82rem; font-weight: 700;
  color: var(--azure); margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.stat-label { font-size: 0.78rem; color: var(--lgray); font-weight: 400; line-height: 1.4; }

/* ══════════════════ SECTION SHELL ══════════════════ */
.section { padding: 96px 0; }
.section-pale { background: var(--pale); }
.section-navy { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--azure-l);
  color: var(--azure);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--blue); line-height: 1.18;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--azure); }
.section-title-white { color: #fff; }
.section-sub {
  font-size: 1rem; color: var(--gray);
  max-width: 580px; margin: 0 auto;
  line-height: 1.75; font-weight: 400;
}

/* ══════════════════ HOW IT WORKS — TIMELINE ══════════════════ */
.timeline-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding-top: 32px;
}
.timeline-line {
  position: absolute;
  top: 63px; left: calc(10% + 10px); right: calc(10% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--azure), #5ba3e8);
  opacity: 0.25;
  z-index: 0;
}
.timeline-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 10px;
  position: relative; z-index: 1;
}
.tl-circle {
  width: 64px; height: 64px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.timeline-step:hover .tl-circle {
  border-color: var(--azure);
  box-shadow: 0 0 0 4px var(--azure-l), var(--shadow-md);
}
.tl-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--azure);
  margin-bottom: 8px;
}
.tl-title {
  font-size: 0.95rem; font-weight: 700; color: var(--blue);
  line-height: 1.3; margin-bottom: 8px;
}
.tl-desc {
  font-size: 0.8rem; color: var(--gray);
  line-height: 1.65;
}

/* ══════════════════ MODULE CARDS ══════════════════ */
.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.mod-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
.mod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.mod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(40,116,197,0.2); }
.mod-visual {
  height: 185px; overflow: hidden;
  background: #060d1a; position: relative;
}
.mod-visual svg { width: 100%; height: 100%; display: block; }
.mod-icon-bubble {
  position: absolute; bottom: -18px; left: 20px;
  width: 44px; height: 44px;
  background: #fff; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.mod-body { padding: 30px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.mod-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--lgray); text-transform: uppercase; margin-bottom: 5px; }
.mod-title { font-size: 0.975rem; font-weight: 700; color: var(--blue); line-height: 1.35; margin-bottom: 8px; }
.mod-desc { font-size: 0.835rem; color: var(--gray); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.mod-badge {
  display: inline-block;
  background: var(--azure-l);
  color: var(--azure);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 12px; letter-spacing: 0.02em;
}
.mod-link {
  font-size: 0.8rem; font-weight: 600; color: var(--azure);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}
.mod-link:hover { gap: 8px; }

/* ══════════════════ WHY / BENEFITS ══════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(40,116,197,0.15); }
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--azure-l);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
}
.benefit-title { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.benefit-desc { font-size: 0.835rem; color: var(--gray); line-height: 1.7; }

/* ══════════════════ COMPARISON ══════════════════ */
.matrix-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.matrix-table { width: 100%; border-collapse: collapse; }
.matrix-table th {
  padding: 16px 24px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.matrix-table th:first-child { color: var(--lgray); width: 34%; }
.matrix-table th.col-trad { color: var(--gray); background: #fdf0f0; border-left: 1px solid #f5d0d0; width: 33%; }
.matrix-table th.col-atlas { color: var(--azure); background: #f0f7ff; border-left: 2px solid rgba(40,116,197,0.18); width: 33%; }
.matrix-table td { padding: 14px 24px; font-size: 0.875rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table tr:hover td { background: var(--pale); }
.matrix-table td:first-child { font-weight: 600; color: var(--blue); }
.matrix-table td.trad { color: var(--gray); background: #fdf0f0; border-left: 1px solid #f5d0d0; }
.matrix-table td.atlas { color: var(--blue); background: #f5f9ff; border-left: 2px solid rgba(40,116,197,0.18); font-weight: 500; }
.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; }
.hl-cell { color: var(--azure) !important; font-weight: 700 !important; }

/* ══════════════════ CTA BANNER ══════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a4a 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,224,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,224,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 1rem; color: rgba(184,224,255,0.65); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════ CAPABILITY CARDS ══════════════════ */
.cap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cap-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--azure), #5ba3e8);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.22s;
}
.cap-card:hover::before { opacity: 1; }
.cap-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.cap-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lgray);
  margin-bottom: 5px;
}
.cap-title {
  font-size: 0.9rem; font-weight: 700; color: var(--blue);
  line-height: 1.3; margin-bottom: 7px;
}
.cap-desc {
  font-size: 0.8rem; color: var(--gray);
  line-height: 1.6;
}

/* ══════════════════ PRICING ══════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--azure);
  box-shadow: 0 0 0 1px var(--azure), var(--shadow-md);
}
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--azure), #5ba3e8);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.price-badge {
  display: inline-block;
  background: var(--azure); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 50px; margin-bottom: 20px;
}
.price-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lgray); margin-bottom: 4px; }
.price-name { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--blue); margin-bottom: 8px; }
.price-tagline { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.price-features { list-style: none; margin-bottom: 20px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; line-height: 1.45; }
.fcheck { color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-features li strong { color: var(--blue); font-weight: 600; }
.btn-price {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 10px; font-size: 0.9rem;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; transition: var(--transition);
}
.btn-price-primary { background: var(--azure); color: #fff; box-shadow: 0 4px 16px rgba(40,116,197,0.35); border: 1.5px solid transparent; }
.btn-price-primary:hover { background: var(--azure-d); transform: translateY(-1px); }
.btn-price-outline { background: transparent; border: 1.5px solid var(--azure); color: var(--azure); }
.btn-price-outline:hover { background: var(--azure-l); }

/* ══════════════════ CONTACT ══════════════════ */
.contact-section { background: var(--pale); padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; letter-spacing: -0.03em; color: var(--blue); margin-bottom: 14px; }
.contact-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.contact-link { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--azure); font-weight: 600; margin-bottom: 12px; }
.ct-input {
  width: 100%;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--blue);
  padding: 12px 16px; font-family: 'Inter',sans-serif;
  font-size: 0.875rem; outline: none; transition: border-color 0.18s;
  margin-bottom: 12px; display: block;
}
.ct-input:focus { border-color: var(--azure); }
.ct-input::placeholder { color: var(--lgray); }
.ct-textarea { min-height: 100px; resize: vertical; }

/* ══════════════════ ABOUT PAGE ══════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text { font-size: 1rem; color: var(--gray); line-height: 1.8; }
.about-text p { margin-bottom: 18px; }
.about-text strong { color: var(--blue); }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat-box { background: var(--pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-box .val { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--azure); line-height: 1; margin-bottom: 4px; }
.stat-box .lbl { font-size: 0.78rem; font-weight: 600; color: var(--lgray); text-transform: uppercase; letter-spacing: 0.06em; }
.hl-list { display: flex; flex-direction: column; gap: 0; }
.hl-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.hl-item:first-child { border-top: 1px solid var(--border); }
.hl-icon { flex-shrink: 0; display: inline-flex; align-items: center; }
.hl-icon svg { width: 32px; height: 32px; }
.hl-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.hl-text p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: var(--pale); border: 1px solid var(--border);
  color: var(--blue); font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
  transition: var(--transition); cursor: default;
}
.tag:hover { background: var(--azure-l); border-color: var(--azure); color: var(--azure); }
/* Country rows */
.country-list { display: flex; flex-direction: column; gap: 0; }
.country-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.country-row:first-child { border-top: 1px solid var(--border); }
.country-row:hover { padding-left: 8px; }
.cflag { font-size: 1.5rem; }
.cname { font-size: 0.95rem; font-weight: 600; color: var(--blue); }
.cdesc { font-size: 0.8rem; color: var(--lgray); margin-left: auto; text-align: right; }

/* ══════════════════ FOOTER ══════════════════ */
footer {
  background: var(--navy);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; color: rgba(184,224,255,0.45); line-height: 1.75; margin: 16px 0 20px; max-width: 360px; }
.footer-wordmark { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.footer-wordmark span { color: var(--sky); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(184,224,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(184,224,255,0.6); margin-bottom: 10px; transition: color 0.18s; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(184,224,255,0.08);
  font-size: 0.8rem; color: rgba(184,224,255,0.3);
  flex-wrap: wrap; gap: 8px;
}
.sg-pill {
  background: rgba(40,116,197,0.15); border: 1px solid rgba(40,116,197,0.25);
  color: var(--sky); font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.04em;
}

/* ══════════════════ SCROLL REVEAL ══════════════════ */
.sr { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.in { opacity: 1; transform: none; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .timeline-wrap { grid-template-columns: 1fr 1fr; }
  .timeline-line { display: none; }
  .mod-grid { grid-template-columns: repeat(2,1fr); }
  .mod-grid-3 { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 64px 20px 60px; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .mod-grid, .mod-grid-3 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ════════════════════════════════════════
   MOBILE — swipe slider for cards + table fix
   ════════════════════════════════════════ */

/* Hide swipe hint on desktop by default */
.cap-swipe-hint { display: none; }

@media (max-width: 767px) {

  /* Capability card rows → horizontal swipe slider */
  .mod-grid,
  .cap-grid-row2 {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 16px;
    gap: 14px !important;
    scrollbar-width: none;
    margin: 0 -20px 20px !important;
    max-width: none !important;
  }
  .mod-grid::-webkit-scrollbar,
  .cap-grid-row2::-webkit-scrollbar { display: none; }

  .cap-card {
    flex: 0 0 75vw !important;
    scroll-snap-align: start;
  }

  /* Swipe hint — show on mobile only */
  .cap-swipe-hint {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: var(--lgray);
    margin-top: -8px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
  }

  /* Comparison table → horizontal scroll */
  .matrix-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .matrix-table {
    min-width: 580px;
  }
  .matrix-table th,
  .matrix-table td {
    padding: 11px 12px;
    font-size: 0.78rem;
  }

  /* Benefits grid → 2 columns on mobile */
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .benefit-card { padding: 18px 14px; }

}
