/* ═══════════════════════════════════════════════════════════
   POANEXGEN — Shared Design System
   All pages reference this file
═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap");

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:           #060B14;
  --bg-card:      #0C1422;
  --bg-elevated:  #111927;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(232,111,51,0.35);
  --cyan:         #e86f33;
  --cyan-bright:  #f07d45;
  --cyan-dim:     rgba(232,111,51,0.1);
  --orange:       #e86f33;
  --orange-bright:#f07d45;
  --amber:        #F59E0B;
  --green:        #10B981;
  --text:         #EFF6FF;
  --muted:        #64748B;
  --muted-light:  #94A3B8;
  --nav-h:        68px;
}

/* ── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

/* ── Font Utilities ────────────────────────────────────── */
.font-display { font-family: 'Syne', system-ui, sans-serif; }
.font-mono    { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a2f4d; border-radius: 3px; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
}
#nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s, background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
#nav-inner.scrolled {
  padding: 12px 40px;
  background: rgba(6,11,20,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 30px; height: 30px;
  background: var(--cyan);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo span.dim { color: var(--muted-light); font-weight: 400; font-size: 0.95em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-light);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--orange);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 9px 22px;
  border-radius: 7px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,111,51,0.4);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-mobile-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px;
  border-radius: 7px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(6,11,20,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--muted-light);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu .mobile-cta {
  margin-top: 20px;
  text-align: center;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  border-bottom: none;
  padding: 18px;
}
.mobile-menu .mobile-cta:hover { background: var(--orange-bright); color: #fff; }

/* ══════════════════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,111,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,111,51,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: grid-drift 28s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(232,111,51,0.16) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orb-drift 16s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  bottom: -50px; right: 8%;
  animation: orb-drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(24px,-24px) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,111,51,0.08);
  border: 1px solid rgba(232,111,51,0.22);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.5); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text);
}
.hero-headline .hl-cyan { color: var(--cyan); }
.hero-headline .hl-dim  { color: var(--muted-light); }

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-light);
  line-height: 1.75;
  margin-top: 22px;
  max-width: 440px;
}

/* ── Hero image frame ── */
.hero-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 60px rgba(232,111,51,0.12), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.8);
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,11,20,0.4) 0%, transparent 60%);
}
.hero-img-badge {
  position: absolute;
  z-index: 2;
  background: rgba(6,11,20,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 16px 20px;
}
.hero-img-badge-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-img-badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Trusted by ── */
.trusted-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 24px 40px;
}
.trusted-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trusted-logo {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--muted);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.trusted-logo:hover { opacity: 0.85; }

/* ══════════════════════════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--bg); }
.section-card { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-light);
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 13px 26px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,111,51,0.42);
}
.btn-outline {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}
.btn-text {
  background: none;
  color: var(--orange);
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, opacity 0.2s;
}
.btn-text:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   SERVICE CARDS (Home overview)
══════════════════════════════════════════════════════════ */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-card);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--bg-elevated); }
.service-card:hover::before { transform: scaleX(1); }

/* Service card image */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
  opacity: 0.75;
  transition: opacity 0.3s;
  border: 1px solid var(--border);
}
.service-card:hover .service-card-img { opacity: 0.9; }

.service-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(232,111,51,0.1);
  border: 1px solid rgba(232,111,51,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(232,111,51,0.18);
  box-shadow: 0 0 20px rgba(232,111,51,0.2);
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-light);
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.service-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,111,51,0.08);
  border: 1px solid rgba(232,111,51,0.18);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}
.stat-item:hover { background: var(--bg-elevated); }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
}
.stat-num .accent { color: var(--orange); }
.stat-cap {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}
.process-step {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background 0.3s;
  position: relative;
}
.process-step:hover { background: var(--bg-elevated); }
.process-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 20px;
}
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--muted-light);
}

/* ══════════════════════════════════════════════════════════
   FEATURE CARDS
══════════════════════════════════════════════════════════ */
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 28px rgba(232,111,51,0.07);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(232,111,51,0.1);
  border: 1px solid rgba(232,111,51,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--muted-light);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--amber);
}
.testimonial-quote {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted-light);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--orange); }
.faq-chevron {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 0.3s;
}
.faq-btn[aria-expanded="true"] .faq-chevron {
  border-color: var(--orange);
  background: rgba(232,111,51,0.1);
  color: var(--orange);
  transform: rotate(180deg);
}
.faq-body {
  padding-bottom: 22px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted-light);
  display: none;
}
.faq-body.open { display: block; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #060B14 0%, #0A1628 50%, #060B14 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,111,51,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,111,51,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.1;
}
.cta-heading .glow {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(232,111,51,0.45);
}

/* ══════════════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════════════ */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.875rem;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(232,111,51,0.5);
  box-shadow: 0 0 0 3px rgba(232,111,51,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.btn-submit:hover {
  background: var(--orange-bright);
  box-shadow: 0 8px 24px rgba(232,111,51,0.42);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-status.is-visible {
  display: block;
}
.form-status--success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}
.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

/* Contact info card */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
}
.contact-info-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(232,111,51,0.1);
  border: 1px solid rgba(232,111,51,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 16px;
}
.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.contact-info-value a {
  color: var(--text);
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.value-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(232,111,51,0.1);
  border: 1px solid rgba(232,111,51,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 18px;
}
.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--muted-light);
}

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.3s;
}
.team-card:hover .team-photo { filter: grayscale(0%) brightness(0.9); }
.team-info { padding: 20px; }
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8125rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted-light);
}

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -34px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--bg);
  box-shadow: 0 0 12px rgba(232,111,51,0.5);
}
.timeline-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 6px;
}
.timeline-event {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.timeline-detail {
  font-size: 0.8125rem;
  color: var(--muted-light);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-img {
  width: 100%;
  height: clamp(220px, 35vw, 400px);
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  filter: brightness(0.8) saturate(0.85);
}
.service-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted-light);
  line-height: 1.6;
}
.service-feature-list li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cyan);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price .unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-light);
  vertical-align: super;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pricing-period {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--muted-light);
}
.pricing-features li svg { flex-shrink: 0; color: var(--cyan); }
.pricing-features li.disabled {
  opacity: 0.35;
  text-decoration: line-through;
}
.pricing-features li.disabled svg { color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,111,51,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,111,51,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
}
.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,11,20,0.6), rgba(6,11,20,0.9));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--muted-light); }
.page-hero-breadcrumb .sep { color: var(--muted); opacity: 0.4; }
.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.875rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-light);
  max-width: 520px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #030508;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 220px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 10px;
  transition: color 0.2s;
}
.footer-contact-item a { color: inherit; transition: color 0.2s; }
.footer-contact-item:hover, .footer-contact-item a:hover { color: var(--muted-light); }
.footer-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.8125rem;
  color: #3A4A5E;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--muted-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 52px;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  user-select: none;
  line-height: 1;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-copy a { color: var(--muted); transition: color 0.2s; }
.footer-copy a:hover { color: var(--muted-light); }

/* ── Feature split overlay card ─────────────────────────── */
.feat-overlay-card {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
}

/* Ensure images in split sections don't overflow on small screens */
.lg-story img,
.lg-svc img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22,1,0.36,1),
    transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal].reveal-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════
   LAYOUT UTILITIES — desktop-first, collapsed by media queries
══════════════════════════════════════════════════════════ */
.layout-grid { display: grid; }

/* hero: two equal columns, wide gap */
.lg-hero    { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
/* story / about two-col with large gap */
.lg-story   { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
/* generic two-col, equal */
.lg-2       { grid-template-columns: 1fr 1fr; gap: 24px; }
/* contact two-col, large gap */
.lg-contact { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
/* three-col equal */
.lg-3       { grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* footer: wide brand col + 3 link cols */
.lg-foot    { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
/* service detail rows */
.lg-svc     { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* FAQ sidebar + content (1fr 2fr) */
.lg-faq     { grid-template-columns: 1fr 2fr; gap: 72px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── 1024px tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }

  /* nav logo slightly smaller */
  .nav-logo img { height: 68px; }
  .footer-logo img { height: 64px; }

  /* layout grids */
  .lg-hero    { gap: 48px; }
  .lg-story   { gap: 48px; }
  .lg-contact { gap: 48px; }
  .lg-svc     { gap: 40px; }
  .lg-faq     { grid-template-columns: 1fr; gap: 40px; }
  .lg-foot    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lg-3       { grid-template-columns: repeat(2, 1fr); }

  /* class-based grids */
  .services-grid-home { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-grid       { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }

  /* services page inline grids */
  .svc-hdr     { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .svc-featured{ grid-template-columns: 1fr; }
}

/* ── 768px mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* ── Navigation ─────── */
  #nav-inner          { padding: 12px 16px; }
  #nav-inner.scrolled { padding: 10px 16px; }
  .nav-logo img       { height: 48px; }
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-mobile-btn     { display: flex; }

  /* ── Base ───────────── */
  .container { padding: 0 16px; }
  .section   { padding: 60px 0; }
  .section-sm{ padding: 40px 0; }

  /* ── Layout grids ────── */
  .lg-hero    { grid-template-columns: 1fr; gap: 36px; }
  .lg-story   { grid-template-columns: 1fr; gap: 36px; }
  .lg-2       { grid-template-columns: 1fr; gap: 20px; }
  .lg-contact { grid-template-columns: 1fr; gap: 40px; }
  .lg-svc     { grid-template-columns: 1fr; gap: 32px; }
  .lg-3       { grid-template-columns: 1fr; gap: 16px; }
  .lg-faq     { grid-template-columns: 1fr; gap: 32px; }
  .lg-foot    { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* ── Class-based grids ─ */
  .services-grid-home { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-grid       { grid-template-columns: 1fr 1fr; }
  .team-grid          { grid-template-columns: 1fr 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 100%; }

  /* ── Hero image ─────── */
  .hero-img-frame { height: 300px !important; }
  .hero-img-badge { display: none; }
  .hero-sub       { max-width: 100%; }
  .feat-overlay-card { display: none; }
  .orb-1          { width: 260px; height: 260px; }
  .orb-2          { width: 200px; height: 200px; }

  /* ── Sections ────────── */
  .service-card { padding: 28px 20px; }
  .service-card-img { height: 140px; }
  .stat-num { font-size: 2.25rem; }
  .stat-item { padding: 24px 16px; }
  .process-step { padding: 24px 20px; }

  /* ── Services page ───── */
  .svc-hdr       { grid-template-columns: 1fr !important; gap: 20px !important; margin-bottom: 32px !important; }
  .svc-featured  { grid-template-columns: 1fr !important; gap: 12px !important; }
  .svc-feat-primary  { min-height: 320px !important; padding: 32px 28px 28px !important; }
  .svc-feat-secondary{ padding: 28px !important; }
  .service-detail-img{ height: 260px; }

  /* ── Contact form ─────── */
  .form-card  { padding: 24px 20px; }
  .form-row   { grid-template-columns: 1fr; }

  /* ── Footer ──────────── */
  .footer-logo img    { height: 48px; }
  .footer-tagline     { max-width: 100%; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .footer-wordmark    { font-size: clamp(1.5rem, 8vw, 3rem); }

  /* ── Page hero ───────── */
  .page-hero       { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .page-hero-title { font-size: clamp(1.875rem, 7vw, 3rem); }

  /* ── CTA ─────────────── */
  .cta-heading { font-size: clamp(1.75rem, 5.5vw, 2.5rem); }

  /* ── Trusted bar ──────── */
  .trusted-bar  { padding: 20px 16px; }
  .trusted-inner{ gap: 24px; }
  .trusted-logos{ gap: 20px; }

  /* ── Testimonials ──────── */
  .testimonial-card { padding: 24px; }

  /* ── FAQ ──────────────── */
  .faq-btn { font-size: 0.875rem; padding: 18px 0; }
}

/* ── 480px small mobile ────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section   { padding: 48px 0; }

  /* ── Nav ──────── */
  .nav-logo img { height: 36px; }
  #nav-inner { padding: 10px 14px; }
  #nav-inner.scrolled { padding: 8px 14px; }

  /* ── Grids ─────── */
  .lg-foot    { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* ── Hero ─────── */
  .home-hero { min-height: 90vh; }
  .hero-headline { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-img-frame { height: 240px !important; }

  /* ── Buttons ───── */
  .btn { padding: 12px 20px; font-size: 0.8125rem; }
  .btn-submit { padding: 13px; }

  /* ── Form ─────── */
  .form-card { padding: 20px 16px; border-radius: 12px; }

  /* ── Footer ───── */
  .footer-logo img  { height: 36px; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-wordmark  { display: none; }

  /* ── Page hero ──── */
  .page-hero { padding: calc(var(--nav-h) + 36px) 0 36px; }
  .page-hero-title { font-size: clamp(1.625rem, 8vw, 2.5rem); }
  .page-hero-sub   { font-size: 0.9rem; }

  /* ── Sections ───── */
  .section-heading { font-size: clamp(1.5rem, 6vw, 2.25rem); }
  .svc-feat-primary  { min-height: 280px !important; padding: 24px !important; }
  .svc-feat-secondary{ padding: 20px !important; }
  .service-detail-img{ height: 200px; }

  /* ── CTA ─────── */
  .cta-section { padding: 64px 0; }
  .cta-heading { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* ── Testimonials ─── */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── Contact ──── */
  .contact-info-card { padding: 20px; }

  /* ── Touch targets ─── */
  .nav-mobile-btn { min-width: 44px; min-height: 44px; padding: 10px; }
  .faq-btn { padding: 16px 0; }
  .mobile-menu a { padding: 16px 0; font-size: 1.125rem; }
}
