/* ============================================================
   AXIS MEDIA — Shared Stylesheet
   Brand: Performance. Automation. Scale.
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #4CC9F8;
  --secondary: #2966F3;
  --dark-blue: #1743E3;
  --bg: #030B18;
  --bg-card: rgba(10, 27, 53, 0.6);
  --border: rgba(76, 201, 248, 0.15);
  --text: #FFFFFF;
  --text-muted: #8B9DB5;
  --text-dim: #5A6B80;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #020912; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #4CC9F8, #2966F3); border-radius: 4px; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, #4CC9F8 0%, #2966F3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.heading-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4CC9F8, #2966F3);
  border-radius: 3px;
  margin-top: 20px;
}

.heading-line.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== NAVIGATION ===== */
.nav-glass {
  background: rgba(3, 11, 24, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(76, 201, 248, 0.08);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active { color: #FFFFFF; }

.mobile-menu {
  display: none;
  background: rgba(3, 11, 24, 0.97);
  backdrop-filter: blur(24px);
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(76, 201, 248, 0.08);
  z-index: 998;
  padding: 16px 24px 24px;
}

.mobile-menu.open { display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, #4CC9F8, #2966F3);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 28px rgba(76, 201, 248, 0.28);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 0 48px rgba(76, 201, 248, 0.5), 0 8px 30px rgba(41, 102, 243, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 201, 248, 0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(76, 201, 248, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(76, 201, 248, 0.18);
  transform: translateY(-1px);
}

/* ===== GLASS CARD ===== */
.card-glass {
  background: rgba(10, 27, 53, 0.45);
  border: 1px solid rgba(76, 201, 248, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glass:hover {
  border-color: rgba(76, 201, 248, 0.32);
  background: rgba(10, 27, 53, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(41, 102, 243, 0.12);
}

/* ===== ICON WRAP ===== */
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(76, 201, 248, 0.14), rgba(41, 102, 243, 0.14));
  border: 1px solid rgba(76, 201, 248, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.card-glass:hover .icon-wrap {
  background: linear-gradient(135deg, rgba(76, 201, 248, 0.22), rgba(41, 102, 243, 0.22));
  box-shadow: 0 0 20px rgba(76, 201, 248, 0.18);
}

/* ===== NUMBER BADGE ===== */
.number-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(76, 201, 248, 0.16), rgba(41, 102, 243, 0.16));
  border: 1px solid rgba(76, 201, 248, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ===== BADGE / PILL ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(76, 201, 248, 0.28);
  background: rgba(76, 201, 248, 0.07);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(76, 201, 248, 0.8);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 4px rgba(76, 201, 248, 0.6); }
  50% { box-shadow: 0 0 14px rgba(76, 201, 248, 1); }
}

/* ===== CHECK LIST ITEM ===== */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(76, 201, 248, 0.12);
  border: 1px solid rgba(76, 201, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
  font-size: 10px;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(41, 102, 243, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse at 85% 20%, rgba(76, 201, 248, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse at 55% 80%, rgba(23, 67, 227, 0.14) 0%, transparent 48%),
    #030B18;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 201, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 201, 248, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ===== ANIMATED ORBS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(41, 102, 243, 0.16) 0%, transparent 68%);
  top: -200px;
  left: -180px;
  animation: floatOrb1 9s ease-in-out infinite;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(76, 201, 248, 0.11) 0%, transparent 68%);
  top: 30%;
  right: -80px;
  animation: floatOrb2 11s ease-in-out infinite;
}

.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(23, 67, 227, 0.18) 0%, transparent 68%);
  bottom: 80px;
  left: 38%;
  animation: floatOrb3 7.5s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -25px) scale(1.04); }
  66% { transform: translate(-18px, 20px) scale(0.96); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-30px, 35px) scale(1.06); }
  70% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, -20px) scale(1.08); }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(41, 102, 243, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(76, 201, 248, 0.08) 0%, transparent 50%),
    #030B18;
}

/* ===== STATS BAR ===== */
.stats-bar {
  border-top: 1px solid rgba(76, 201, 248, 0.08);
  border-bottom: 1px solid rgba(76, 201, 248, 0.08);
  background: rgba(6, 14, 30, 0.7);
}

.stat-item {
  text-align: center;
  padding: 28px 24px;
}

/* ===== GUARANTEE CARD ===== */
.guarantee-card {
  background: linear-gradient(135deg, rgba(41, 102, 243, 0.09), rgba(76, 201, 248, 0.04));
  border: 1px solid rgba(76, 201, 248, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 50% 50%, rgba(76, 201, 248, 0.04), transparent 65%);
  pointer-events: none;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(76, 201, 248, 0.1);
  border-radius: 12px;
  background: rgba(10, 27, 53, 0.28);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item.open {
  border-color: rgba(76, 201, 248, 0.28);
  background: rgba(10, 27, 53, 0.5);
}

.faq-toggle {
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: white;
  transition: color 0.25s;
  user-select: none;
}

.faq-toggle:hover { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(76, 201, 248, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-body.open {
  max-height: 350px;
  padding: 0 24px 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(41, 102, 243, 0.1), rgba(76, 201, 248, 0.05));
  border-top: 1px solid rgba(76, 201, 248, 0.08);
  border-bottom: 1px solid rgba(76, 201, 248, 0.08);
}

/* ===== FORM ===== */
.form-input {
  width: 100%;
  background: rgba(10, 27, 53, 0.5);
  border: 1px solid rgba(76, 201, 248, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder { color: var(--text-dim); }

.form-input:focus {
  border-color: rgba(76, 201, 248, 0.45);
  box-shadow: 0 0 0 3px rgba(76, 201, 248, 0.08);
  background: rgba(10, 27, 53, 0.7);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.checkbox-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(76, 201, 248, 0.04);
  border: 1px solid rgba(76, 201, 248, 0.1);
  border-radius: 10px;
}

.checkbox-wrap input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #020912;
  border-top: 1px solid rgba(76, 201, 248, 0.06);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ===== LEGAL PAGE ===== */
.legal-section-card {
  background: rgba(10, 27, 53, 0.3);
  border: 1px solid rgba(76, 201, 248, 0.08);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 16px;
}

.legal-section-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(76, 201, 248, 0.1);
}

.legal-section-card p,
.legal-section-card li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-section-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.legal-section-card ul li { margin-bottom: 6px; }

/* ===== SPOTLIGHT ANIMATION ===== */
@keyframes spotlight {
  0%   { opacity: 0; transform: translate(-72%, -62%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -40%) scale(1); }
}

.animate-spotlight {
  animation: spotlight 2s ease 0.75s 1 forwards;
}


/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .stat-item { padding: 20px 12px; }
  .guarantee-card { border-radius: 16px; }
  .legal-section-card { padding: 20px 20px; }
}
