/* ── ACTONDATA – Shared Styles ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #4F46E5;
  --blue-lt: #818CF8;
  --blue-dk: #3730A3;
  --accent:  #06B6D4;
  --dark:    #0F172A;
  --mid:     #1E293B;
  --grey:    #64748B;
  --light:   #F8FAFC;
  --white:   #ffffff;
  --radius:  14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: flex-start; gap: 2rem;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(79,70,229,.12);
  transition: box-shadow .3s;
}
nav#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.08); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { height: 38px; width: auto; display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .85rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--grey); transition: color .2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px; transition: width .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: white; padding: .55rem 1.4rem;
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(79,70,229,.4);
  margin-left: auto;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.45); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: white; padding: .85rem 2rem;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(79,70,229,.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(79,70,229,.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  border: 2px solid rgba(15,23,42,.15);
  padding: .85rem 1.8rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: rgba(79,70,229,.04); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
  padding: .75rem 1.6rem; border-radius: 50px;
  font-size: .95rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: var(--blue); color: white; }

/* ── SECTION HELPERS ─────────────────────────────────── */
.section-tag {
  text-align: center; text-transform: uppercase;
  letter-spacing: .12em; font-size: .8rem; font-weight: 700;
  color: var(--blue); margin-bottom: .8rem;
}
.section-title {
  text-align: center; font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--dark);
  letter-spacing: -.5px; margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center; color: var(--grey);
  font-size: 1.05rem; max-width: 600px; margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 3rem 5%;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .82rem; }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { color: rgba(255,255,255,.4); font-size: .82rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--blue-lt); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav#navbar { padding: 0 4%; }
}
