/* ===================================================
   FAMILYTREE — Premium Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────── */
:root {
  --navy-950: #04091f;
  --navy-900: #070f2b;
  --navy-800: #0d1b48;
  --navy-700: #122060;
  --navy-600: #1a2a6c;
  --blue-500: #0ea5e9;
  --blue-400: #38bdf8;
  --cyan-400: #00d4ff;
  --cyan-300: #67e8f9;
  --teal-500: #14b8a6;
  --white: #ffffff;
  --gray-100: #f0f4ff;
  --gray-200: #dce4f5;
  --gray-400: #94a3b8;
  --gray-600: #475569;

  --gradient-primary: linear-gradient(135deg, #0d1b48 0%, #1a2a6c 50%, #0ea5e9 100%);
  --gradient-hero: linear-gradient(160deg, #04091f 0%, #0d1b48 40%, #0a1940 70%, #071530 100%);
  --gradient-card: linear-gradient(145deg, rgba(13, 27, 72, 0.7) 0%, rgba(26, 42, 108, 0.4) 100%);
  --gradient-glow: linear-gradient(135deg, #0ea5e9, #00d4ff);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 50%, #1a2a6c 100%);

  --glass-bg: rgba(13, 27, 72, 0.55);
  --glass-border: rgba(14, 165, 233, 0.25);
  --glass-hover: rgba(14, 165, 233, 0.15);

  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.3);
  --shadow-card: 0 8px 32px rgba(4, 9, 31, 0.5), 0 0 0 1px rgba(14, 165, 233, 0.1);
  --shadow-hero: 0 20px 80px rgba(14, 165, 233, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

section {
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-500);
  border-radius: 99px;
}

/* ─── Selection ─────────────────────────────────── */
::selection {
  background: rgba(14, 165, 233, 0.4);
  color: var(--white);
}

/* ─── Typography ────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-400);
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fff 30%, var(--cyan-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-glow);
  color: var(--navy-900);
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.btn-ghost {
  background: rgba(14, 165, 233, 0.1);
  color: var(--blue-400);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.btn-ghost:hover {
  background: rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ─── Glowing Orbs (decorative) ─────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(14, 165, 233, 0.12);
  top: -100px;
  right: -150px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.08);
  bottom: 100px;
  left: -100px;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.1);
  top: 40%;
  right: 10%;
}

/* ─── Particle Canvas ───────────────────────────── */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 9, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-glow);
  border-radius: 2px;
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 9, 31, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--cyan-400);
}

.mobile-nav .btn {
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  position: relative;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
  z-index: 0;
}

/* Animated circuit lines */
.circuit-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
  height: 1px;
  animation: circuit-flow 6s infinite linear;
  opacity: 0;
}

.circuit-line:nth-child(1) {
  width: 300px;
  top: 20%;
  animation-delay: 0s;
}

.circuit-line:nth-child(2) {
  width: 200px;
  top: 45%;
  animation-delay: 1.5s;
}

.circuit-line:nth-child(3) {
  width: 400px;
  top: 70%;
  animation-delay: 3s;
}

.circuit-line:nth-child(4) {
  width: 250px;
  top: 85%;
  animation-delay: 4.5s;
}

@keyframes circuit-flow {
  0% {
    left: -400px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan-300);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: live-pulse 2s infinite;
  box-shadow: 0 0 6px #22c55e;
}

@keyframes live-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .line-1 {
  display: block;
  color: var(--white);
}

.hero-title .line-2 {
  display: block;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-3 {
  display: block;
  color: rgba(255, 255, 255, 0.85);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-wrap {
  position: relative;
  z-index: 2;
}

.hero-phone-wrap img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hero);
  animation: float-y 4s ease-in-out infinite;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.hero-glow-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-pulse 4s ease-in-out infinite;
}

.hero-glow-ring:nth-child(2) {
  width: 380px;
  height: 380px;
  animation-delay: 1s;
  border-color: rgba(0, 212, 255, 0.15);
}

.hero-glow-ring:nth-child(3) {
  width: 280px;
  height: 280px;
  animation-delay: 2s;
  border-color: rgba(14, 165, 233, 0.1);
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.4;
  }
}

/* floating cards */
.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  z-index: 3;
}

.card-top-left {
  top: 5%;
  left: -10%;
  animation: float-card-1 5s ease-in-out infinite;
}

.card-bot-right {
  bottom: 10%;
  right: -5%;
  animation: float-card-2 5.5s ease-in-out infinite;
}

.card-mid-right {
  top: 40%;
  right: -14%;
  animation: float-card-1 6s ease-in-out infinite 1.5s;
}

@keyframes float-card-1 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes float-card-2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(10px) rotate(-0.5deg);
  }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-icon.green {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.float-icon.blue {
  background: rgba(14, 165, 233, 0.2);
  color: var(--blue-400);
}

.float-icon.cyan {
  background: rgba(0, 212, 255, 0.2);
  color: var(--cyan-400);
}

.float-text .t1 {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 500;
}

.float-text .t2 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   TRUSTED BRANDS BAR
═══════════════════════════════════════════════ */
.brands-bar {
  background: rgba(13, 27, 72, 0.5);
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  padding: 28px 0;
  overflow: hidden;
}

.brands-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 20px;
}

.brands-track-wrap {
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scroll-brands 20s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  transition: color 0.3s;
}

.brand-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.brand-item .brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════
   ABOUT / OVERVIEW SECTION
═══════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 27, 72, 0.8) 100%);
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 160px;
}

.about-badge .big-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-badge .big-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

.about-content {}

.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-item:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateX(6px);
}

.about-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--navy-900);
}

.about-item-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-item-text p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card.featured {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.15), rgba(0, 212, 255, 0.05));
  border-color: rgba(14, 165, 233, 0.5);
  grid-column: span 1;
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
}

.feature-card-icon.blue {
  background: rgba(14, 165, 233, 0.15);
  color: var(--blue-400);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.feature-card-icon.cyan {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan-400);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.feature-card-icon.teal {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.feature-card-icon.violet {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.feature-card-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.feature-card-icon.amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.feature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan-400);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* Mega feature card (full width) */
.feature-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.feature-card-wide .feature-visual img {
  border-radius: var(--radius-md);
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow-hero);
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, #060d25 100%);
  position: relative;
  overflow: hidden;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* connector line */
.steps-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400), var(--blue-500));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.1), 0 0 30px rgba(14, 165, 233, 0.3);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-item:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(14, 165, 233, 0.15), 0 0 50px rgba(14, 165, 233, 0.5);
}

.step-icon {
  font-size: 1.4rem;
}

.step-content {}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.87rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CHAT DEMO SECTION
═══════════════════════════════════════════════ */
.chat-demo {
  padding: 120px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.chat-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.chat-demo-content {}

.chat-demo-content .section-subtitle {
  margin-bottom: 36px;
}

.chat-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.chat-feature-item:hover {
  background: rgba(14, 165, 233, 0.13);
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateX(6px);
}

.chat-feature-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-glow);
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-feature-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Chat window mockup */
.chat-window {
  background: rgba(7, 15, 43, 0.9);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero), 0 0 60px rgba(14, 165, 233, 0.1);
}

.chat-topbar {
  background: rgba(13, 27, 72, 0.8);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-topbar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy-900);
}

.chat-topbar-info .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.chat-topbar-info .status {
  font-size: 0.72rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-topbar-info .status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: live-pulse 2s infinite;
}

.chat-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
}

.msg {
  display: flex;
  flex-direction: column;
  max-width: 78%;
  gap: 4px;
}

.msg.bot {
  align-self: flex-start;
}

.msg.user {
  align-self: flex-end;
}

.msg-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.msg.bot .msg-bubble {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom-left-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.msg.user .msg-bubble {
  background: var(--gradient-glow);
  color: var(--navy-900);
  border-bottom-right-radius: 6px;
  font-weight: 500;
}

.msg-time {
  font-size: 0.7rem;
  color: var(--gray-600);
}

.msg.user .msg-time {
  text-align: right;
}

.msg-typing .msg-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
}

.dot-typing {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  animation: typing-bounce 1.3s infinite ease-in-out;
}

.dot-typing:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-typing:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.chat-input-bar {
  padding: 16px 20px;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input-bar input {
  flex: 1;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition);
}

.chat-input-bar input:focus {
  border-color: var(--blue-500);
  background: rgba(14, 165, 233, 0.12);
}

.chat-input-bar input::placeholder {
  color: var(--gray-600);
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-glow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 0.95rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card.featured-t {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.12), rgba(0, 212, 255, 0.06));
  border-color: rgba(14, 165, 233, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: var(--shadow-card);
}

.quote-icon {
  font-size: 3rem;
  color: rgba(14, 165, 233, 0.3);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  font-family: var(--font-display);
  flex-shrink: 0;
  position: relative;
}

.author-avatar.has-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.stars {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(13, 27, 72, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-full);
  padding: 6px;
  margin-top: 28px;
}

.pricing-toggle-btn {
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray-400);
  transition: var(--transition);
  font-family: var(--font-body);
}

.pricing-toggle-btn.active {
  background: var(--gradient-glow);
  color: var(--navy-900);
}

.pricing-save {
  font-size: 0.72rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: var(--shadow-card);
}

.pricing-card.popular {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.15), rgba(0, 212, 255, 0.05));
  border-color: rgba(14, 165, 233, 0.5);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-glow);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 16px;
}

.plan-price {
  margin-bottom: 8px;
}

.plan-price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.plan-price .currency {
  font-size: 1.3rem;
  color: var(--gray-400);
  vertical-align: super;
}

.plan-price .period {
  font-size: 0.88rem;
  color: var(--gray-400);
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.plan-feature-item .fi {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.fi.yes {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.fi.no {
  background: rgba(100, 116, 139, 0.15);
  color: var(--gray-600);
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #040918 0%, #0d1b48 50%, #040c25 100%);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner .section-tag {
  margin: 0 auto 20px;
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 30%, var(--cyan-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--gray-400);
}

.trust-item .t-icon {
  font-size: 1rem;
  color: var(--cyan-400);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(14, 165, 233, 0.12);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
}

.footer-brand {}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.5);
  color: var(--cyan-400);
  transform: translateY(-2px);
}

.footer-col {}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cyan-400);
  padding-left: 4px;
}

.footer-subscribe {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-subscribe input {
  flex: 1;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition);
  min-width: 0;
}

.footer-subscribe input:focus {
  border-color: var(--blue-500);
}

.footer-subscribe input::placeholder {
  color: var(--gray-600);
}

.footer-subscribe button {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--gradient-glow);
  border: none;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: var(--font-body);
}

.footer-subscribe button:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: var(--gray-600);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: var(--gray-600);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--cyan-400);
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════════════ */
.gradient-text {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps-track::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 52px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: 2;
  }

  .chat-demo-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    display: none;
  }

  .hero-glow-ring {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .steps-track {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}