/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:      #0a0f1a;
  --c-surface: #111827;
  --c-surf2:   #1a2235;
  --c-border:  #1e2d42;
  --c-accent:  #00c8a0;
  --c-blue:    #0ea5e9;
  --c-text:    #e2e8f0;
  --c-muted:   #8b9ab0;
  --c-white:   #ffffff;
  --r:         10px;
  --r-lg:      16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { color: var(--c-muted); }
strong { color: var(--c-text); font-weight: 600; }
.accent { color: var(--c-accent); }

.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-accent); background: rgba(0,200,160,0.1);
  border: 1px solid rgba(0,200,160,0.22); padding: 4px 12px;
  border-radius: 99px; margin-bottom: 14px;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r);
  font-weight: 600; font-size: 0.93rem; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--c-accent); color: #051a12; }
.btn-primary:hover { background: #00dfb2; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,200,160,0.28); }
.btn-ghost { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn-ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ─── Nav ───────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-wrap.scrolled {
  background: rgba(10,15,26,0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0; }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo-word { display: inline-flex; align-items: baseline; }
.logo-7    { color: var(--c-accent); }
.logo-net  { color: var(--c-white); }
.logo-pte  { font-size: 0.6rem; font-weight: 600; color: var(--c-muted); letter-spacing: 0.1em; margin-left: -4px; text-transform: uppercase; align-self: flex-start; margin-top: 3px; }

.nav-links { display: flex; list-style: none; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--c-muted); font-size: 0.875rem; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--c-white); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; }

.mobile-menu { display: none; flex-direction: column; background: var(--c-surface); border-top: 1px solid var(--c-border); padding: 8px 0 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 24px; text-decoration: none; color: var(--c-text); font-weight: 500; }
.mobile-menu a:hover { color: var(--c-accent); }
.mobile-head { padding: 14px 24px 4px; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-muted); }

/* ── Nav "Solutions" dropdown ────────────────────────────────── */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-toggle { background: none; border: none; cursor: pointer; color: var(--c-muted); font: inherit; font-size: 0.875rem; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; padding: 0; transition: color 0.15s; }
.nav-dd-toggle:hover, .nav-dd.open .nav-dd-toggle { color: var(--c-white); }
.nav-dd-toggle svg { transition: transform 0.2s; }
.nav-dd.open .nav-dd-toggle svg { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 16px; display: none; z-index: 200; }
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { display: block; }
.nav-dd-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r); padding: 8px; min-width: 252px; box-shadow: 0 18px 48px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 1px; }
.nav-dd-head { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em; color: var(--c-muted); padding: 10px 12px 4px; }
.nav-dd-head:first-child { padding-top: 4px; }
.nav-dd-card a { padding: 9px 12px; border-radius: 7px; color: var(--c-text) !important; text-decoration: none; font-size: 0.88rem; font-weight: 500; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-dd-card a:hover { background: rgba(0,200,160,0.09); color: var(--c-accent) !important; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 55% 40%, rgba(0,200,160,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 75%, rgba(14,165,233,0.06) 0%, transparent 55%);
}
.hero-net {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 30%, transparent 78%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--c-border) 1px, transparent 1px), linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 70%);
  opacity: 0.28;
}
.hero-content { position: relative; z-index: 1; padding: 72px 0 96px; max-width: 820px; }

.hero-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--c-blue); border: 1px solid rgba(14,165,233,0.3); background: rgba(14,165,233,0.06);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 28px;
}
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.1rem; max-width: 600px; margin-bottom: 38px; color: var(--c-muted); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-pillars { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pillar {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 12px 18px;
}
.pillar-icon { width: 22px; height: 22px; color: var(--c-accent); flex-shrink: 0; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar span { font-size: 0.9rem; font-weight: 600; color: var(--c-white); }
.pillar-arrow { color: var(--c-muted); font-size: 1.1rem; }

/* ─── About ──────────────────────────────────────────────── */
.about { background: var(--c-surface); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.about-text h2 { margin-bottom: 18px; }
.about-text p  { font-size: 0.95rem; margin-bottom: 14px; }

.about-stats { display: flex; gap: 32px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--c-border); }
.astat { display: flex; flex-direction: column; gap: 3px; }
.astat-n { font-size: 1.5rem; font-weight: 800; color: var(--c-accent); letter-spacing: -0.03em; }
.astat-l { font-size: 0.75rem; color: var(--c-muted); font-weight: 500; }

.about-focus { padding-top: 6px; }
.focus-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 16px; }
.focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.focus-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 12px 14px;
  font-size: 0.85rem; font-weight: 500; color: var(--c-text);
  transition: border-color 0.2s;
}
.focus-card:hover { border-color: rgba(0,200,160,0.3); }
.focus-icon { width: 20px; height: 20px; color: var(--c-accent); flex-shrink: 0; }
.focus-icon svg { width: 100%; height: 100%; }

.clients-note { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r); padding: 16px 18px; }
.clients-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); margin-bottom: 6px; }
.clients-list { font-size: 0.82rem; color: var(--c-text); line-height: 1.8; }

/* ─── JETData.AI ─────────────────────────────────────────── */
.jetdata { background: var(--c-bg); }

.jd-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.jd-logo {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  color: var(--c-white); letter-spacing: -0.04em; margin-bottom: 10px;
}
.jd-ai { color: var(--c-accent); }
.jd-header h2 { margin-bottom: 16px; }
.jd-sub { font-size: 1rem; margin-bottom: 28px; }

.jd-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.jd-pillar {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.jd-pillar:hover { transform: translateY(-3px); }

.jd-pillar-icon { width: 40px; height: 40px; margin-bottom: 16px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.jd-pillar-icon svg { width: 22px; height: 22px; }
.jd-pillar-icon.db  { background: rgba(0,200,160,0.12); color: var(--c-accent); }
.jd-pillar-icon.wf  { background: rgba(14,165,233,0.12); color: var(--c-blue); }
.jd-pillar-icon.api { background: rgba(168,85,247,0.12); color: #a855f7; }

.jd-pillar:nth-child(1) { border-top: 2px solid var(--c-accent); }
.jd-pillar:nth-child(2) { border-top: 2px solid var(--c-blue); }
.jd-pillar:nth-child(3) { border-top: 2px solid #a855f7; }

.jd-pillar-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 4px; }
.jd-pillar-tag { font-size: 0.78rem; font-weight: 600; color: var(--c-accent); margin-bottom: 10px; }
.jd-pillar:nth-child(2) .jd-pillar-tag { color: var(--c-blue); }
.jd-pillar:nth-child(3) .jd-pillar-tag { color: #a855f7; }
.jd-pillar h3 { color: var(--c-white); margin-bottom: 14px; }
.jd-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.jd-list li { font-size: 0.85rem; color: var(--c-muted); padding-left: 14px; position: relative; }
.jd-list li::before { content: '→'; position: absolute; left: 0; color: var(--c-accent); font-size: 0.72rem; }

/* AI Problem block */
.jd-problem {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 48px; margin-bottom: 40px;
}
.jd-problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.jd-problem-text h3 { color: var(--c-white); margin-bottom: 14px; font-size: 1.3rem; }
.jd-problem-text p  { font-size: 0.93rem; line-height: 1.7; }

.jd-benefits { display: flex; flex-direction: column; gap: 20px; }
.jd-benefit { display: flex; gap: 14px; align-items: flex-start; }
.jd-benefit-dot {
  width: 8px; height: 8px; min-width: 8px; background: var(--c-accent);
  border-radius: 50%; margin-top: 6px; box-shadow: 0 0 8px rgba(0,200,160,0.5);
}
.jd-benefit strong { display: block; margin-bottom: 3px; font-size: 0.9rem; }
.jd-benefit p { font-size: 0.82rem; }

/* Process */
.jd-process {
  display: flex; align-items: flex-start; gap: 0;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
}
.jd-step { flex: 1; padding: 28px 24px; border-right: 1px solid var(--c-border); }
.jd-step:last-child { border-right: none; }
.jd-step-arrow { display: none; }
.jd-step-n { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--c-accent); margin-bottom: 10px; }
.jd-step h4 { color: var(--c-white); margin-bottom: 7px; }
.jd-step p  { font-size: 0.82rem; }

/* ─── Compliance ─────────────────────────────────────────── */
.compliance { background: var(--c-surface); }
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }

.comp-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.comp-card:hover { border-color: rgba(0,200,160,0.3); transform: translateY(-2px); }
.comp-card.highlight {
  border-color: rgba(0,200,160,0.3);
  background: linear-gradient(135deg, rgba(0,200,160,0.04) 0%, var(--c-bg) 60%);
}

.comp-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.comp-icon svg { width: 20px; height: 20px; }
.comp-icon.pdpa  { background: rgba(0,200,160,0.12); color: var(--c-accent); }
.comp-icon.dpo   { background: rgba(14,165,233,0.12); color: var(--c-blue); }
.comp-icon.iso   { background: rgba(168,85,247,0.12); color: #a855f7; }
.comp-icon.dptm  { background: rgba(245,158,11,0.12); color: #f59e0b; }
.comp-icon.cyber { background: rgba(239,68,68,0.12);  color: #ef4444; }
.comp-icon.consult { background: rgba(0,200,160,0.12); color: var(--c-accent); }

.comp-card h3 { color: var(--c-white); margin-bottom: 10px; font-size: 1rem; }
.comp-card > p { font-size: 0.85rem; margin-bottom: 16px; }

.comp-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; flex: 1; }
.comp-list li { font-size: 0.82rem; color: var(--c-muted); padding-left: 14px; position: relative; }
.comp-list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-accent); font-size: 0.7rem; font-weight: 700; }

.jd-header-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.comp-cta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.comp-enquire {
  font-size: 0.8rem; font-weight: 700; color: var(--c-accent);
  text-decoration: none; white-space: nowrap; transition: opacity 0.15s;
}
.comp-enquire:hover { opacity: 0.7; }
.comp-free {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--c-accent); border: 1px solid rgba(0,200,160,0.3);
  background: rgba(0,200,160,0.08); padding: 5px 12px; border-radius: 99px;
}
.comp-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--c-muted); border: 1px solid var(--c-border);
  padding: 4px 12px; border-radius: 99px;
}

.comp-contact {
  display: flex; gap: 32px; justify-content: center;
  padding: 24px; background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.comp-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--c-text); }
.comp-contact-item svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }

/* ─── Contact ────────────────────────────────────────────── */
.contact { background: var(--c-bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-text h2 { margin-bottom: 14px; }
.contact-text > p { margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--c-text); }
.contact-item svg { width: 17px; height: 17px; color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }

.contact-links { display: flex; gap: 12px; flex-wrap: wrap; }
.ext-link {
  font-size: 0.85rem; font-weight: 600; color: var(--c-accent);
  text-decoration: none; border: 1px solid rgba(0,200,160,0.3);
  padding: 7px 14px; border-radius: var(--r); background: rgba(0,200,160,0.06);
  transition: background 0.15s;
}
.ext-link:hover { background: rgba(0,200,160,0.12); }

.contact-form {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--c-text); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r);
  padding: 9px 13px; color: var(--c-text); font-size: 0.88rem;
  font-family: inherit; outline: none; transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-accent); }
.form-group select option { background: var(--c-surface); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.75rem; text-align: center; color: var(--c-muted); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--c-surface); border-top: 1px solid var(--c-border); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--c-border); }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-logo-mark { width: 52px; height: 52px; flex-shrink: 0; }
.footer-wm { display: flex; flex-direction: column; align-items: flex-end; }
.footer-wm-row { display: flex; align-items: baseline; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; line-height: 1; }
.footer-wm-row .logo-7 { color: var(--c-accent); }
.footer-wm-row .logo-net { color: var(--c-white); }
.footer-wm-row .logo-pte { font-size: 0.55rem; font-weight: 600; color: var(--c-muted); letter-spacing: 0.1em; margin-left: 7px; text-transform: uppercase; align-self: flex-start; margin-top: 2px; }
.footer-tagline { text-align: right; font-size: 0.62rem; font-weight: 500; color: #94a3b8; letter-spacing: 0.28em; margin-right: -0.28em; margin-top: 6px; }
.footer-brand p { font-size: 0.85rem; color: var(--c-muted); margin-top: 6px; }
.footer-addr { font-size: 0.78rem !important; margin-top: 4px !important; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col strong { font-size: 0.78rem; color: var(--c-white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-col a { font-size: 0.8rem; color: var(--c-muted); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--c-accent); }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 24px; font-size: 0.76rem; color: var(--c-muted); }

/* ── JETData architecture schematic ─────────────────────────── */
.jd-schematic { margin: 8px auto 56px; max-width: 920px; }
.jd-schematic svg { width: 100%; height: auto; display: block; }
.jd-schematic figcaption {
  text-align: center; font-size: 0.84rem; color: var(--c-muted);
  margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.sch-wire path { fill: none; stroke: var(--c-border); stroke-width: 2; }
.sch-flow path {
  fill: none; stroke: var(--c-accent); stroke-width: 2;
  stroke-dasharray: 14 150; stroke-linecap: round;
  animation: schFlow 2.4s linear infinite;
}
@keyframes schFlow { to { stroke-dashoffset: -164; } }
.sch-node rect { fill: var(--c-surface); stroke: var(--c-border); stroke-width: 1.5; }
.sch-node text { fill: var(--c-text); font-size: 16px; font-weight: 600; text-anchor: middle; font-family: inherit; }
.sch-out rect { fill: rgba(0,200,160,0.08); stroke: rgba(0,200,160,0.4); }
.sch-out-title { fill: var(--c-white) !important; font-size: 18px !important; font-weight: 800 !important; }
.sch-out-sub { fill: var(--c-muted) !important; font-size: 13px !important; font-weight: 500 !important; }
.sch-core > rect { stroke: rgba(0,200,160,0.30); stroke-width: 1.5; }
.sch-core-title { fill: var(--c-white); font-size: 22px; font-weight: 800; text-anchor: middle; font-family: inherit; }
.sch-layer rect { fill: var(--c-bg); stroke: var(--c-border); stroke-width: 1; }
.sch-layer circle { fill: var(--c-accent); }
.sch-layer text { fill: var(--c-text); font-size: 15px; font-weight: 600; font-family: inherit; }
.sch-layer { animation: schPulse 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.sch-layer:nth-child(3) { animation-delay: .25s; }
.sch-layer:nth-child(4) { animation-delay: .5s; }
@keyframes schPulse { 0%,100% { opacity: .82; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .sch-flow path { animation: none; stroke-dasharray: none; opacity: .5; }
  .sch-layer { animation: none; }
}
@media (max-width: 560px) {
  .jd-schematic figcaption { font-size: 0.78rem; }
}

/* ── In the News / media ────────────────────────────────────── */
.media-feature {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 44px; align-items: center;
  max-width: 1040px; margin: 0 auto;
}
.video-facade {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; border: 1px solid var(--c-border); background: #000;
}
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, opacity 0.3s; }
.video-facade::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,14,26,0.05), rgba(6,14,26,0.35)); transition: opacity 0.3s; }
.video-facade:hover img { transform: scale(1.04); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 74px; height: 74px; border-radius: 50%;
  background: var(--c-accent); color: #04121c;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,200,160,0.4); transition: transform 0.2s, background 0.2s;
}
.video-play svg { width: 34px; height: 34px; margin-left: 3px; }
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.1); background: #00deb3; }
.video-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-white); background: rgba(6,14,26,0.7); backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.15);
}
.video-facade.playing { cursor: default; }
.video-facade.playing::after, .video-facade.playing .video-play, .video-facade.playing .video-badge { display: none; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-source { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px; }
.media-info h3 { font-size: 1.35rem; color: var(--c-white); line-height: 1.3; margin-bottom: 14px; }
.media-info > p { font-size: 0.92rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 20px; }
.media-info strong { color: var(--c-text); }
.media-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.media-topics span { font-size: 0.75rem; font-weight: 600; color: var(--c-text); background: rgba(0,200,160,0.08); border: 1px solid rgba(0,200,160,0.22); padding: 5px 12px; border-radius: 99px; }
.media-links { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .media-feature { grid-template-columns: 1fr; gap: 28px; }
  .video-play { width: 62px; height: 62px; }
  .video-play svg { width: 28px; height: 28px; }
}
.media-viewall { text-align: center; margin-top: 40px; }

/* ── Newsroom timeline (/media/) ────────────────────────────── */
.timeline { max-width: 780px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 22px 1fr; gap: 22px; }
.tl-rail { position: relative; display: flex; justify-content: center; }
.tl-rail::before { content: ''; position: absolute; top: 8px; bottom: -6px; width: 2px; background: var(--c-border); }
.tl-item:last-child .tl-rail::before { display: none; }
.tl-dot { position: relative; z-index: 1; width: 14px; height: 14px; border-radius: 50%; background: var(--c-accent); margin-top: 8px; box-shadow: 0 0 0 4px rgba(0,200,160,0.14); }
.tl-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 24px 26px; margin-bottom: 34px; }
.tl-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.tl-date { font-size: 0.85rem; font-weight: 800; color: var(--c-accent); }
.tl-outlet { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-muted); }
.tl-media { margin-bottom: 18px; }
.tl-card h3 { font-size: 1.2rem; color: var(--c-white); line-height: 1.35; margin-bottom: 12px; }
.tl-card > p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 18px; }
.tl-card strong { color: var(--c-text); }
.tl-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tl-topics span { font-size: 0.72rem; font-weight: 600; color: var(--c-text); background: rgba(0,200,160,0.08); border: 1px solid rgba(0,200,160,0.22); padding: 4px 11px; border-radius: 99px; }
.tl-links { display: flex; gap: 10px; flex-wrap: wrap; }
.newsroom-cta { text-align: center; color: var(--c-muted); margin-top: 24px; font-size: 0.95rem; }
.newsroom-cta a { color: var(--c-accent); text-decoration: none; font-weight: 600; }
@media (max-width: 520px) {
  .tl-item { grid-template-columns: 14px 1fr; gap: 16px; }
  .tl-card { padding: 20px; }
}

/* ── Landing pages (/services) ──────────────────────────────── */
.lp-hero {
  position: relative; padding: 132px 0 76px; text-align: center; overflow: hidden;
  border-bottom: 1px solid var(--c-border);
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,200,160,0.08), transparent 62%), var(--c-bg);
}
.lp-breadcrumb { font-size: 0.8rem; color: var(--c-muted); margin-bottom: 18px; }
.lp-breadcrumb a { color: var(--c-muted); text-decoration: none; }
.lp-breadcrumb a:hover { color: var(--c-accent); }
.lp-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.12; margin: 0 auto 20px; max-width: 820px; text-wrap: balance; }
.lp-hero h1 .accent { color: var(--c-accent); }
.lp-lead { font-size: 1.12rem; color: var(--c-muted); max-width: 660px; margin: 0 auto 32px; line-height: 1.7; }
.lp-hero .hero-cta { justify-content: center; margin-bottom: 0; }
.lp-body { max-width: 820px; margin: 0 auto; }
.lp-body h2 { font-size: 1.55rem; margin-bottom: 16px; }
.lp-body h3 { font-size: 1.12rem; color: var(--c-white); margin: 30px 0 12px; }
.lp-body p { color: var(--c-muted); margin-bottom: 16px; line-height: 1.8; }
.lp-body strong { color: var(--c-text); }
.lp-body a.inline { color: var(--c-accent); text-decoration: none; }
.lp-body a.inline:hover { text-decoration: underline; }
.lp-block { margin-bottom: 52px; }
.lp-check { list-style: none; display: grid; gap: 12px; margin: 6px 0 8px; }
.lp-check li { position: relative; padding-left: 30px; color: var(--c-text); line-height: 1.6; }
.lp-check li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--c-accent); font-weight: 800; }
.lp-ctaband {
  text-align: center; background: linear-gradient(135deg, var(--c-surf2), var(--c-surface));
  border: 1px solid rgba(0,200,160,0.3); border-radius: var(--r-lg); padding: 44px 40px; max-width: 820px; margin: 0 auto;
}
.lp-ctaband h2 { font-size: 1.4rem; color: var(--c-white); margin-bottom: 10px; }
.lp-ctaband p { color: var(--c-muted); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Trusted By / clients chips ─────────────────────────────── */
.clients-chips {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 900px; margin: 0 auto;
}
.clients-chips span {
  font-size: 0.88rem; font-weight: 500; color: var(--c-text);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 9px 18px; border-radius: 99px;
  transition: border-color 0.2s, color 0.2s;
}
.clients-chips span:hover { border-color: rgba(0,200,160,0.4); color: var(--c-accent); }

/* ── UGaaS section ──────────────────────────────────────────── */
.ugaas {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(0,200,160,0.06), transparent 70%),
    var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.ugaas-abbr { color: var(--c-accent); font-weight: 700; }
.ugaas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.ugaas-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.ugaas-card:hover { border-color: rgba(0,200,160,0.4); transform: translateY(-3px); }
.ugaas-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(0,200,160,0.10); border: 1px solid rgba(0,200,160,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent); margin-bottom: 18px;
}
.ugaas-icon svg { width: 22px; height: 22px; }
.ugaas-card h3 { font-size: 1.05rem; color: var(--c-white); margin-bottom: 10px; }
.ugaas-card p { font-size: 0.86rem; color: var(--c-muted); line-height: 1.6; }
.ugaas-card strong { color: var(--c-accent); }
.ugaas-cta-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--c-surf2), var(--c-surface));
  border: 1px solid rgba(0,200,160,0.30);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.ugaas-cta-text { display: flex; flex-direction: column; gap: 4px; }
.ugaas-cta-text strong { font-size: 1.05rem; color: var(--c-white); }
.ugaas-cta-text span { font-size: 0.86rem; color: var(--c-muted); }
.ugaas-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 920px) {
  .ugaas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .ugaas-grid { grid-template-columns: 1fr; }
  .ugaas-cta-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .jd-pillars { grid-template-columns: 1fr 1fr; }
  .jd-problem-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; overflow: hidden; }
.faq-q {
  list-style: none;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--c-accent); flex-shrink: 0; transition: transform .25s; }
details[open] .faq-q { color: var(--c-accent); }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 28px 22px; }
.faq-a p { color: var(--c-muted); font-size: 0.93rem; line-height: 1.75; margin: 0; }

@media (max-width: 640px) {
  .container { padding: 0 28px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .jd-pillars { grid-template-columns: 1fr; }
  .jd-process { flex-direction: column; }
  .jd-step { border-right: none; border-bottom: 1px solid var(--c-border); }
  .jd-step:last-child { border-bottom: none; }
  .comp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-pillars { gap: 10px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .comp-contact { flex-direction: column; gap: 16px; align-items: flex-start; }
  .about-stats { gap: 20px; }
  .focus-grid { grid-template-columns: 1fr; }
}

/* ─── Insights / Blog hub ──────────────────────────────── */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 8px; }
.insight-card {
  display: flex; flex-direction: column;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px;
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.insight-card:hover { border-color: rgba(0,200,160,0.4); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.insight-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,200,160,0.06) 0%, var(--c-surface) 55%);
}
.insight-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 14px; }
.insight-card h2, .insight-card h3 { color: var(--c-white); line-height: 1.28; margin-bottom: 12px; }
.insight-card h3 { font-size: 1.24rem; }
.insight-card.featured h2 { font-size: clamp(1.5rem, 3vw, 2rem); max-width: 720px; }
.insight-card p { color: var(--c-muted); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.insight-meta { font-size: 0.8rem; color: var(--c-muted); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: auto; }
.insight-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--c-muted); display: inline-block; }
.insight-readmore { color: var(--c-accent); font-weight: 600; font-size: 0.9rem; margin-top: 16px; }

/* ─── Article (long-form) — extends .lp-body ───────────── */
.article-head { text-align: center; }
.article-meta { font-size: 0.85rem; color: var(--c-muted); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; margin-bottom: 4px; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--c-muted); display: inline-block; }
.article-cat { color: var(--c-accent); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.75rem; }
.lp-body ul:not(.lp-check), .lp-body ol { color: var(--c-muted); margin: 0 0 18px 22px; line-height: 1.8; }
.lp-body ul:not(.lp-check) li, .lp-body ol li { margin-bottom: 8px; }
.lp-body blockquote { border-left: 3px solid var(--c-accent); padding: 4px 0 4px 22px; margin: 26px 0; color: var(--c-text); font-size: 1.1rem; font-style: italic; line-height: 1.7; }
.lp-body blockquote cite { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--c-muted); font-style: normal; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 44px; }
.article-tags span { font-size: 0.78rem; color: var(--c-muted); border: 1px solid var(--c-border); border-radius: 6px; padding: 5px 12px; }
.article-related { border-top: 1px solid var(--c-border); margin-top: 8px; padding-top: 28px; }
.article-related strong { display: block; margin-bottom: 14px; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); }
.article-related a { display: inline-block; color: var(--c-accent); text-decoration: none; margin: 0 18px 8px 0; font-weight: 600; }
.article-related a:hover { text-decoration: underline; }
