/* ═══════════════════════════════════════════════════════════
   ALLGOODSGROUP · styles.css
   Dark Navy · Electric Blue · Premium E-Commerce Landing
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:       #040d1a;
  --navy-2:     #071224;
  --navy-3:     #0a1a35;
  --navy-4:     #0d2147;
  --blue:       #2979FF;
  --blue-light: #448AFF;
  --blue-dim:   #1a3a7a;
  --blue-glow:  rgba(41,121,255,.18);
  --accent:     #00B0FF;
  --white:      #ffffff;
  --white-70:   rgba(255,255,255,.7);
  --white-40:   rgba(255,255,255,.4);
  --white-15:   rgba(255,255,255,.08);
  --white-08:   rgba(255,255,255,.04);
  --green:      #00E676;
  --red:        #FF1744;
  --yellow:     #FFEA00;
  --border:     rgba(41,121,255,.2);
  --border-dim: rgba(255,255,255,.07);
  --r:          14px;
  --r-sm:       8px;
  --shadow:     0 24px 80px rgba(0,0,0,.6);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; box-sizing: border-box; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center;
  background: transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(4,13,26,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dim);
}
.nav-inner {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px;
}
.logo-accent { color: var(--blue); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--white-70);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--blue-light) !important;
  box-shadow: 0 0 24px rgba(41,121,255,.4);
  transform: translateY(-1px);
}
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; z-index: 9999; }
  .burger { display: flex; z-index: 10001; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: #040d1a;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.77,0,.18,1);
    z-index: 10000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 20px; color: var(--white-70); }
  .nav-links .nav-cta {
    background: var(--blue); padding: 12px 28px; border-radius: 8px;
    color: var(--white) !important; font-weight: 600 !important;
  }
}

/* ── SECTION DEFAULTS ── */
.section { padding: 120px 0; }
.sec-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue);
  background: rgba(41,121,255,.1); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
}
.sec-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: 1px;
  margin-bottom: 24px;
}
.sec-p { font-size: 16px; line-height: 1.8; color: var(--white-70); margin-bottom: 16px; }
.sec-sub { font-size: 17px; color: var(--white-70); max-width: 560px; margin: 0 auto 60px; text-align: center; }
.sec-header { text-align: center; }
.grad-text {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), #1a56d8);
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: var(--r-sm);
  border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(41,121,255,.35);
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,.12));
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(41,121,255,.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary.btn-lg { font-size: 17px; padding: 18px 40px; }
.btn-primary.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--white-70); font-weight: 600; font-size: 15px;
  border: 1px solid var(--border); padding: 13px 28px; border-radius: var(--r-sm);
  transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--blue); background: var(--blue-glow); }
.mt24 { margin-top: 24px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding-top: 68px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,121,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,121,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.g1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(41,121,255,.22) 0%, transparent 70%); top: -100px; left: -100px; animation: gfloat 8s ease-in-out infinite; }
.g2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,176,255,.15) 0%, transparent 70%); top: 50%; right: -80px; animation: gfloat 11s ease-in-out infinite reverse; }
.g3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(41,121,255,.1) 0%, transparent 70%); bottom: 60px; left: 40%; animation: gfloat 14s ease-in-out infinite; }
@keyframes gfloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-30px); } }

.hero-body {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding-top: 60px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-70); background: var(--white-08);
  border: 1px solid var(--border-dim); border-radius: 99px;
  padding: 8px 18px; margin-bottom: 32px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px); line-height: 1.0; letter-spacing: 1px;
  margin-bottom: 28px;
}
.h1-line { display: block; }
.h1-accent {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.h1-italic { font-style: italic; color: var(--white-70); }
.hero-p { font-size: 17px; line-height: 1.8; color: var(--white-70); margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 20px 28px; background: var(--white-08);
  border: 1px solid var(--border-dim); border-radius: var(--r);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item > span:first-child, .trust-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue); }
.trust-label { font-size: 11px; color: var(--white-40); text-transform: uppercase; letter-spacing: 1px; }
.trust-sep { width: 1px; height: 36px; background: var(--border-dim); }

/* HERO VISUAL */
.hero-right { display: flex; justify-content: center; }
.hero-visual { position: relative; width: 360px; }
.hv-card {
  background: var(--navy-3);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow);
  position: relative; z-index: 2;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hv-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 20px;
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-dot.green { background: var(--green); }
.hv-dot.yellow { background: var(--yellow); }
.hv-dot.red { background: var(--red); }
.hv-title { font-size: 12px; color: var(--white-40); margin-left: 6px; font-weight: 500; }
.hv-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hv-kpi {
  background: var(--navy-4); border-radius: 10px; padding: 12px;
  border: 1px solid var(--border-dim);
}
.hv-kpi-label { font-size: 11px; color: var(--white-40); display: block; margin-bottom: 4px; }
.hv-kpi-val { font-size: 20px; font-weight: 700; display: block; margin-bottom: 2px; }
.hv-kpi-val.green-text { color: var(--green); }
.hv-kpi-delta { font-size: 12px; color: var(--green); }
.hv-chart-label { font-size: 11px; color: var(--white-40); margin-bottom: 10px; }
.hv-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 80px;
}
.hv-bar {
  flex: 1; background: var(--blue-dim); border-radius: 4px 4px 0 0;
  height: var(--h); position: relative; overflow: hidden;
  transition: background .3s;
}
.hv-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--blue), rgba(41,121,255,.3));
  opacity: 0; transition: opacity .3s;
}
.hv-bar.lit, .hv-bar:hover { background: var(--blue); }
.hv-bar.lit::after { opacity: 1; }
.hv-bar span {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 9px; color: var(--white-40); white-space: nowrap;
}
.hv-badge {
  position: absolute; background: var(--navy-3); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  white-space: nowrap;
}
.hb1 { top: -16px; right: -24px; animation: float 5s ease-in-out infinite; }
.hb2 { bottom: 60px; right: -40px; animation: float 7s ease-in-out infinite; }
.hb3 { bottom: -12px; left: -30px; animation: float 8s ease-in-out 1s infinite; }
.hb4 { top: 50%; left: -44px; transform: translateY(-50%); animation: float 6s ease-in-out .5s infinite; }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white-40);
  z-index: 1;
}
.scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--white-40), transparent); animation: scrollanim 2s ease-in-out infinite; }
@keyframes scrollanim { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--navy-3); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: 13px; font-weight: 600; color: var(--white-70); white-space: nowrap; }
.marquee-track b { color: var(--blue); font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ── ABOUT ── */
.about-sec { background: var(--navy-2); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  font-size: 13px; font-weight: 500; color: var(--white-70);
  background: var(--white-08); border: 1px solid var(--border-dim);
  padding: 7px 14px; border-radius: 99px;
}
.quad { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.q-card {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 24px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.q-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.q-ico { font-size: 28px; margin-bottom: 12px; }
.q-t { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.q-card p { font-size: 13px; color: var(--white-70); line-height: 1.7; }

/* ── SERVICES ── */
.sv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.sv-card {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.sv-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(41,121,255,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.sv-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.sv-card:hover::before { opacity: 1; }
.sv-n {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1;
  color: rgba(41,121,255,.15); position: absolute; top: 16px; right: 20px;
  letter-spacing: 2px;
}
.sv-ico { font-size: 32px; margin-bottom: 14px; }
.sv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.sv-card p { font-size: 14px; color: var(--white-70); line-height: 1.75; margin-bottom: 16px; }
.sv-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sv-tags span {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  color: var(--blue); background: rgba(41,121,255,.12); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 99px;
}
.sv-wide { grid-column: 1 / -1; }

/* ── PREP ── */
.prep-sec { background: var(--navy-2); position: relative; overflow: hidden; }
.prep-glow-bg {
  position: absolute; top: 50%; left: -200px; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.prep-layout { align-items: start; }
.check-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--white-70); line-height: 1.6; }
.ck { color: var(--blue); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.prep-widget {
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
}
.pw-main { padding: 32px; text-align: center; border-bottom: 1px solid var(--border-dim); }
.pw-ico { font-size: 40px; margin-bottom: 12px; }
.pw-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; }
.pw-sub { font-size: 12px; color: var(--white-40); margin-bottom: 24px; }
.pw-metrics { display: flex; align-items: center; justify-content: center; gap: 0; }
.pw-m { padding: 0 24px; }
.pw-mv { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue); letter-spacing: 1px; }
.pw-mk { font-size: 11px; color: var(--white-40); text-transform: uppercase; letter-spacing: 1px; }
.pw-sep { width: 1px; height: 36px; background: var(--border-dim); }
.pw-flow {
  padding: 24px 20px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.pw-step { text-align: center; }
.pw-s-ico { font-size: 22px; margin-bottom: 6px; }
.pw-s-t { font-size: 11px; color: var(--white-40); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.pw-arrow { color: var(--blue); font-size: 18px; }

/* ── AUTOMATION ── */
.auto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.auto-card {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 32px;
  transition: border-color .3s, transform .3s;
}
.auto-card:hover { border-color: var(--border); transform: translateY(-4px); }
.auto-ico { font-size: 32px; margin-bottom: 16px; }
.auto-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.auto-card p { font-size: 14px; color: var(--white-70); line-height: 1.75; }

/* ── PROCESS TIMELINE ── */
.process-sec { background: var(--navy-2); }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 36px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.tl-item {
  display: flex; gap: 40px; align-items: flex-start;
  padding: 40px 0 40px 0; border-bottom: 1px solid var(--border-dim);
  position: relative;
}
.last-tl { border-bottom: none; }
.tl-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 2px;
  color: var(--blue); background: var(--navy-4); border: 1px solid var(--border);
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.tl-body { flex: 1; }
.tl-ico { font-size: 28px; margin-bottom: 12px; }
.tl-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.tl-body p { font-size: 15px; color: var(--white-70); line-height: 1.8; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-us, .why-them {
  background: var(--navy-3); border-radius: var(--r); padding: 36px;
  border: 1px solid var(--border-dim);
}
.why-us { border-color: rgba(41,121,255,.35); }
.why-head {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px;
  margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border-dim);
}
.us-head { color: var(--blue); }
.them-head { color: var(--white-40); }
.why-us ul, .why-them ul { display: flex; flex-direction: column; gap: 14px; }
.why-us li, .why-them li { font-size: 15px; display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.chk { color: var(--green); font-weight: 700; flex-shrink: 0; }
.xm { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── NUMBERS ── */
.numbers-sec { background: var(--navy-2); position: relative; overflow: hidden; }
.num-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.num-card {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 32px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.num-card:hover { border-color: var(--border); transform: translateY(-4px); }
.num-ico { font-size: 32px; margin-bottom: 16px; }
.num-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 12px; }
.num-big { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; color: var(--blue); letter-spacing: 1px; }
.num-sfx { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue-light); }
.num-lbl { font-size: 13px; color: var(--white-40); line-height: 1.6; }

/* ── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover { border-color: var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; color: var(--white);
  text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-arr {
  font-size: 22px; color: var(--blue); flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-arr { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.77,0,.18,1), padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 28px 22px; font-size: 15px; color: var(--white-70); line-height: 1.8; }

/* ── TESTIMONIALS ─── */
.testimonials-sec { background: var(--navy-2); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  border-color: var(--border); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.t-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
}
.t-text {
  font-size: 15px; color: var(--white-70); line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
}
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--white);
}
.t-name {
  font-weight: 700; font-size: 15px; color: var(--white);
}
.t-role {
  font-size: 13px; color: var(--white-40);
}

/* ── PLATFORMS ─── */
.platforms-sec {
  background: var(--navy-2);
  padding: 80px 0;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.platform-item {
  background: var(--navy-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.platform-item:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.platform-icon {
  width: 120px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-icon img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.platform-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ── DASHBOARD IMAGE ─── */
.dashboard-sec {
  background: var(--navy-2);
  padding: 80px 0;
}
.dashboard-image {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  max-width: 600px;
  margin: 0 auto;
}
.dashboard-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(41,121,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-copy { max-width: 540px; }
.cta-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px); letter-spacing: 1px; margin-bottom: 16px;
}
.cta-copy p { font-size: 16px; color: var(--white-70); line-height: 1.8; }
.cta-btns { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-tel { font-size: 17px; font-weight: 600; color: var(--white-70); transition: color .2s; }
.cta-tel:hover { color: var(--white); }

/* ── CONTACT ── */
.contact-sec { background: var(--navy-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ci-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci-row { display: flex; align-items: flex-start; gap: 16px; }
.ci-ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci-lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white-40); margin-bottom: 4px; }
.ci-val { font-size: 15px; line-height: 1.6; }
.ci-val a { color: var(--blue); transition: color .2s; }
.ci-val a:hover { color: var(--accent); }

/* FORM */
.cf-wrap {
  background: var(--navy-3); border: 1px solid var(--border-dim);
  border-radius: var(--r); padding: 40px; box-shadow: var(--shadow);
}
.cf { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-g { display: flex; flex-direction: column; gap: 6px; }
.f-g label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white-40); }
.f-g input, .f-g select, .f-g textarea {
  background: var(--navy-4); border: 1px solid var(--border-dim);
  border-radius: var(--r-sm); padding: 13px 16px;
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: 15px;
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.f-g input::placeholder, .f-g textarea::placeholder { color: var(--white-40); }
.f-g input:focus, .f-g select:focus, .f-g textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,121,255,.15);
}
.f-g select option { background: var(--navy-3); }
.f-g textarea { resize: vertical; min-height: 100px; }
.f-note { font-size: 12px; color: var(--white-40); text-align: center; }
.f-ok { background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.3); border-radius: 8px; padding: 14px; font-size: 14px; color: var(--green); text-align: center; }
.f-err { background: rgba(255,23,68,.1); border: 1px solid rgba(255,23,68,.3); border-radius: 8px; padding: 14px; font-size: 14px; color: var(--red); text-align: center; }

/* ── FOOTER ── */
.footer { background: var(--navy-2); border-top: 1px solid var(--border-dim); padding: 64px 0 32px; }
.footer-top { display: flex; gap: 80px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; color: var(--white-40); line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.fs-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--white-08); border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s, border-color .2s;
}
.fs-link:hover { background: var(--blue-glow); border-color: var(--border); }
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; flex: 1; }
.fn-col { display: flex; flex-direction: column; gap: 12px; }
.fn-t { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white-40); margin-bottom: 4px; }
.fn-col a, .fn-col span { font-size: 14px; color: var(--white-70); transition: color .2s; }
.fn-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 24px; border-top: 1px solid var(--border-dim);
  font-size: 13px; color: var(--white-40);
}
.footer-bottom a {
  color: var(--white-40);
  transition: color .2s;
}
.footer-bottom a:hover {
  color: var(--blue);
}

/* ── ANIMATIONS ── */
.anim {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.anim.visible { opacity: 1; transform: none; }
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .hero-body { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
  .auto-grid { grid-template-columns: repeat(2, 1fr); }
  .num-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .section { padding: 72px 0; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-wide { grid-column: 1; }
  .auto-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .f-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline::before { left: 28px; }
  .tl-num { width: 56px; height: 56px; font-size: 11px; }
  .hero-trust { justify-content: center; gap: 16px; }
  .trust-sep { display: none; }
  .pw-metrics { flex-wrap: wrap; gap: 12px; }
  .pw-m { padding: 0 12px; }
  .pw-flow { justify-content: center; gap: 12px; }
  .pw-arrow { display: none; }
}

@media (max-width: 480px) {
  .num-grid { grid-template-columns: 1fr; }
  .quad { grid-template-columns: 1fr; }
  .cf-wrap { padding: 24px; }
  .platforms-grid { grid-template-columns: 1fr; }
  .pw-mv { font-size: 22px; }
}
