/* ══════════════════════════════════════════
   ELOR-TECH LTD — Global Stylesheet
   Brand: Imperial Navy #003366
          Innovation Gold #C5A059
          Pure White #FFFFFF
   ══════════════════════════════════════════ */

:root {
  --navy:        #001e3c;
  --navy-mid:    #002a5c;
  --navy-light:  #003a7a;
  --gold:        #C5A059;
  --gold-light:  #dfc27a;
  --gold-dim:    rgba(197,160,89,0.10);
  --gold-border: rgba(197,160,89,0.20);
  --gold-hover:  rgba(197,160,89,0.45);
  --white:       #FFFFFF;
  --text:        #dde8f0;
  --text-muted:  #7a97b2;
  --surface:     #00244e;
  --surface2:    #002f62;
  --radius:      14px;
  --radius-sm:   8px;
  --nav-h:       72px;
  --hf: 'Syne', sans-serif;
  --bf: 'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--bf);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* page-wrap sits between nav and footer, grows to fill space */
.page-wrap {
  flex: 1;
  padding-top: var(--nav-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--hf); font-weight: 800; line-height: 1.1; color: var(--white); }

.grad-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub { font-size: 1.02rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  font-family: var(--bf);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(197,160,89,0.38); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold-hover);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s;
  cursor: pointer;
  background: transparent;
  font-family: var(--bf);
}
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 0;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

.center-btn { text-align: center; margin-top: 44px; }

/* ── GRID BG ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,160,89,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(0,20,50,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--hf);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 100px !important;
}
.nav-cta:hover { opacity: 0.88 !important; background: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0,18,44,0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 28px 24px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--gold-border); }
.mobile-menu a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-family: var(--hf);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 13px 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 72px;
  background: linear-gradient(160deg, #001630 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(197,160,89,0.13), transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; letter-spacing: -0.03em; }
.page-hero p { font-size: 1.08rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.sec { padding: 100px 0; }
.bg-alt { background: var(--navy-mid); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO (home page)
   ══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.g1 { width: 600px; height: 500px; background: radial-gradient(circle, rgba(197,160,89,0.14), transparent 70%); top: -120px; left: -150px; animation: gFloat 9s ease-in-out infinite; }
.g2 { width: 500px; height: 400px; background: radial-gradient(circle, rgba(0,51,102,0.5), transparent 70%); bottom: -80px; right: -100px; animation: gFloat 11s 1s ease-in-out infinite reverse; }
@keyframes gFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,25px); } }

.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(197,160,89,0.28); background: rgba(197,160,89,0.06);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); letter-spacing: -0.04em; margin-bottom: 24px; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 40px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-border);
  flex-wrap: wrap;
  gap: 8px;
}
.stat-box { text-align: center; padding: 0 36px; }
.stat-box .num {
  font-family: var(--hf); font-size: 2.6rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.04em; line-height: 1; display: inline-block;
}
.stat-box .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 4px; }
.stat-div { width: 1px; height: 48px; background: var(--gold-border); flex-shrink: 0; }

/* ══════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════ */
.ticker-wrap { overflow: hidden; background: var(--navy-mid); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); padding: 12px 0; }
.ticker { display: flex; gap: 40px; animation: ticker 28s linear infinite; width: max-content; align-items: center; }
.ticker span { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap; }
.ticker .dot { color: var(--gold); font-size: 0.4rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════ */
.srv-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.srv-card:hover { border-color: var(--gold-hover); transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.3); }
.srv-icon { font-size: 2rem; margin-bottom: 14px; }
.srv-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.srv-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.srv-arrow { position: absolute; bottom: 28px; right: 28px; color: var(--gold); font-size: 1rem; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.srv-card:hover .srv-arrow { opacity: 1; transform: translate(3px,-3px); }

/* ══════════════════════════════════════════
   CHURCHOS SPOTLIGHT
   ══════════════════════════════════════════ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 60px;
}
.spotlight-left p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 32px; }
.sp-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.sp-stat { text-align: center; }
.sp-num { font-family: var(--hf); font-size: 1.6rem; font-weight: 800; color: var(--gold); display: block; letter-spacing: -0.02em; }
.sp-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

.church-features { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: flex; gap: 16px; align-items: flex-start; }
.cf-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; text-align: center; }
.cf-row strong { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 4px; font-family: var(--hf); }
.cf-row p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ══════════════════════════════════════════
   SECTOR CARDS
   ══════════════════════════════════════════ */
.sector-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.sector-card:hover { border-color: var(--gold-hover); transform: translateY(-4px); }
.sc-emoji { font-size: 2rem; margin-bottom: 14px; }
.sector-card h4 { font-size: 1rem; margin-bottom: 8px; }
.sector-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px;
}
.testi-quote { font-family: Georgia, serif; font-size: 4rem; line-height: 0.6; color: var(--gold); opacity: 0.35; margin-bottom: 16px; display: block; }
.testi-card > p { font-size: 0.93rem; color: var(--text-muted); font-style: italic; line-height: 1.75; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-light), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: var(--white); font-family: var(--hf); flex-shrink: 0; }
.testi-name { font-family: var(--hf); font-weight: 700; font-size: 0.9rem; color: var(--white); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* TRUST */
.trust-wrap { text-align: center; margin-top: 64px; }
.trust-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.trust-logos { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust-item { background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); padding: 10px 22px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); transition: 0.2s; }
.trust-item:hover { border-color: var(--gold-hover); color: var(--text); }

/* ══════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════ */
.cta-band {
  padding: 100px 28px;
  background: linear-gradient(135deg, #001630, var(--navy-mid));
  border-top: 1px solid rgba(197,160,89,0.18);
  border-bottom: 1px solid rgba(197,160,89,0.18);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-blob {
  position: absolute; width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(197,160,89,0.14), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; font-size: 1.02rem; }
.btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: #000f22;
  border-top: 1px solid var(--gold-border);
  padding: 72px 0 28px;
}
.footer-top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 72px; margin-bottom: 56px; }
.footer-logo { font-size: 1.5rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; text-decoration: none;
  transition: 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--gold-border); font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 8px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; }
.about-pillars { display: flex; flex-direction: column; }
.pillar { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--gold-border); }
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar:first-child { padding-top: 0; }
.pillar-num { font-family: var(--hf); font-size: 1.8rem; font-weight: 800; color: var(--gold); opacity: 0.35; line-height: 1; flex-shrink: 0; width: 32px; }
.pillar h4 { font-size: 0.95rem; margin-bottom: 6px; }
.pillar p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

.stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; padding: 48px 0; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: 0.3s; }
.team-card:hover { border-color: var(--gold-hover); transform: translateY(-4px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-light), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--hf); font-size: 1.2rem; font-weight: 800; color: var(--white); margin: 0 auto 14px; border: 2px solid var(--gold-border); }
.team-card h4 { font-size: 0.92rem; margin-bottom: 4px; }
.team-card > p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.team-socials { display: flex; gap: 8px; justify-content: center; }
.team-socials a { width: 28px; height: 28px; border-radius: 6px; background: var(--navy-mid); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.68rem; text-decoration: none; transition: 0.2s; }
.team-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════ */
.service-detail { display: grid; grid-template-columns: 100px 1fr; gap: 40px; padding: 64px 0; border-bottom: 1px solid var(--gold-border); align-items: start; }
.service-detail:last-child { border-bottom: none; }
.sd-icon { font-size: 3rem; padding-top: 8px; }
.sd-body .section-title { margin-top: 8px; }
.sd-body > p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 24px; }
.service-list { list-style: none; margin-bottom: 28px; }
.service-list li { font-size: 0.9rem; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid rgba(197,160,89,0.08); display: flex; gap: 10px; }
.service-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.service-list li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════ */
.product-feature {
  background: var(--surface);
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
}
.product-feature-header { padding: 52px 52px 0; }
.pf-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000; padding: 4px 16px; border-radius: 100px; margin-bottom: 20px; }
.pf-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pf-tagline { font-size: 1.02rem; color: var(--text-muted); line-height: 1.75; max-width: 700px; margin-bottom: 0; }
.pf-stats { display: flex; gap: 0; padding: 36px 52px; background: rgba(0,0,0,0.2); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); flex-wrap: wrap; }
.pf-stat { text-align: center; padding: 0 40px; border-right: 1px solid var(--gold-border); }
.pf-stat:first-child { padding-left: 0; }
.pf-stat:last-child { border-right: none; }
.pf-num { font-family: var(--hf); font-size: 1.7rem; font-weight: 800; color: var(--gold); display: block; letter-spacing: -0.02em; }
.pf-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.pf-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gold-border); padding: 0; }
.pf-feat { background: var(--surface); padding: 28px 32px; }
.pf-feat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.pf-feat h4 { font-size: 0.92rem; margin-bottom: 8px; }
.pf-feat p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.pf-actions { display: flex; gap: 14px; padding: 36px 52px; flex-wrap: wrap; }
.pf-trust { padding: 0 52px 48px; }
.pf-reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
.pf-review { background: var(--navy-mid); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 24px; }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 10px; }
.pf-review > p { font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.6; margin-bottom: 12px; }
.pf-reviewer { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

.coming-soon-card { background: var(--surface); border: 1px solid var(--gold-border); border-radius: 20px; text-align: center; padding: 72px 40px; }
.coming-soon-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.coming-soon-card p { color: var(--text-muted); font-size: 1rem; max-width: 400px; margin: 0 auto; }

/* ══════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 40px 32px; position: relative; transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card.featured { border-color: rgba(197,160,89,0.4); background: linear-gradient(160deg,#001530,var(--surface)); box-shadow: 0 0 60px rgba(197,160,89,0.1); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: #000; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.plan-tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.plan-price { font-family: var(--hf); font-size: 3rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.currency { font-size: 1.3rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.period { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); font-family: var(--bf); }
.plan-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 26px; }
.plan-features { list-style: none; margin-bottom: 30px; }
.plan-features li { font-size: 0.87rem; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--gold-border); display: flex; gap: 8px; }
.plan-features li:last-child { border-bottom: none; }
.chk { color: var(--gold); flex-shrink: 0; }

.table-wrap { overflow-x: auto; border: 1px solid var(--gold-border); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th { background: var(--surface2); color: var(--gold); font-family: var(--hf); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gold-border); }
.data-table td { padding: 12px 18px; color: var(--text-muted); border-bottom: 1px solid rgba(197,160,89,0.07); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(197,160,89,0.04); color: var(--text); }
.check { color: var(--gold); font-weight: 700; }
.cross { color: #384d63; }
.highlight-col { background: rgba(197,160,89,0.05); color: var(--text); font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--gold-border); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: var(--hf); font-size: 0.98rem; font-weight: 700; text-align: left; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-a { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a.open { max-height: 300px; padding-bottom: 18px; }
.faq-icon.open { transform: rotate(45deg); }

/* ══════════════════════════════════════════
   JOBS PAGE
   ══════════════════════════════════════════ */
.jobs-list { display: flex; flex-direction: column; gap: 14px; }
.job-card { background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: 0.3s; flex-wrap: wrap; }
.job-card:hover { border-color: var(--gold-hover); transform: translateY(-3px); }
.job-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info > p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 42px; height: 42px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2px; }
.ci-val { font-size: 0.95rem; font-weight: 500; color: var(--white); text-decoration: none; transition: color 0.2s; }
a.ci-val:hover { color: var(--gold); }

.contact-form-wrap { background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 44px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--navy); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); padding: 12px 15px; color: var(--text); font-family: var(--bf); font-size: 0.9rem; outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { display: none; text-align: center; color: var(--gold); font-weight: 600; font-size: 0.88rem; margin-top: 14px; padding: 12px; background: var(--gold-dim); border-radius: var(--radius-sm); border: 1px solid var(--gold-border); }

/* ══════════════════════════════════════════
   PRODUCT DUO (home page)
   ══════════════════════════════════════════ */
.products-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.prod-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.prod-card:hover {
  border-color: var(--gold-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.35);
}
.prod-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.prod-icon { font-size: 2.2rem; flex-shrink: 0; }
.prod-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.prod-name { font-family: var(--hf); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.prod-live-badge {
  margin-left: auto;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; padding: 4px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.prod-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.prod-stats-row { display: flex; gap: 0; margin-bottom: 22px; padding: 16px 0; border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); }
.prod-stat { flex: 1; text-align: center; }
.prod-stat:not(:last-child) { border-right: 1px solid var(--gold-border); }
.prod-num { font-family: var(--hf); font-size: 1.3rem; font-weight: 800; color: var(--gold); display: block; letter-spacing: -0.02em; }
.prod-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.prod-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.prod-features span { font-size: 0.78rem; color: var(--text-muted); background: rgba(197,160,89,0.06); border: 1px solid var(--gold-border); padding: 5px 12px; border-radius: 100px; }
.prod-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

/* ElorPra green badge variant */
.pf-badge-green {
  background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
}

/* Product module tags in pf-trust */
.pf-modules-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pf-module-tag { font-size: 0.76rem; color: var(--text-muted); background: rgba(197,160,89,0.06); border: 1px solid var(--gold-border); padding: 5px 13px; border-radius: 100px; }

/* ══════════════════════════════════════════
   RESPONSIVE — products duo
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-duo { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .spotlight { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .pf-features-grid { grid-template-columns: repeat(2,1fr); }
  .pf-reviews { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 64px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; border-top: none; padding-top: 32px; }
  .stat-div { display: none; }
  .stat-box { padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pf-features-grid { grid-template-columns: 1fr; }
  .pf-stats { flex-direction: column; gap: 20px; padding: 28px; }
  .pf-stat { padding: 0; border-right: none; }
  .pf-actions, .product-feature-header, .pf-trust { padding-left: 28px; padding-right: 28px; }
  .service-detail { grid-template-columns: 1fr; }
  .sd-icon { display: none; }
  .contact-form-wrap { padding: 28px; }
  .spotlight { padding: 32px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.8rem; }
}
