:root {
  --bg: #f8f9fc;
  --bg-2: #f0f2f7;
  --panel: #ffffff;
  --panel-hover: #f5f6fa;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.12);
  --text: #1a1f36;
  --text-secondary: #4a5568;
  --muted: #718096;
  --accent: #2563eb;
  --accent-2: #0891b2;
  --accent-dim: rgba(37, 99, 235, 0.08);
  --accent-glow: rgba(37, 99, 235, 0.18);
  --gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
  --gradient-reverse: linear-gradient(135deg, var(--accent-2), var(--accent));
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37, 99, 235, 0.04), transparent),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(8, 145, 178, 0.03), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(37, 99, 235, 0.02), transparent);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent);
}

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

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── FLOATING PARTICLES (CSS-only) ─────────────────── */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 25s; animation-delay: 3s; width: 3px; height: 3px; background: var(--accent-2); }
.particle:nth-child(3) { left: 40%; animation-duration: 18s; animation-delay: 6s; }
.particle:nth-child(4) { left: 55%; animation-duration: 22s; animation-delay: 2s; width: 2px; height: 2px; background: var(--accent-2); }
.particle:nth-child(5) { left: 70%; animation-duration: 28s; animation-delay: 8s; }
.particle:nth-child(6) { left: 85%; animation-duration: 19s; animation-delay: 4s; width: 3px; height: 3px; background: var(--accent-2); }
.particle:nth-child(7) { left: 15%; animation-duration: 24s; animation-delay: 10s; width: 2px; height: 2px; }
.particle:nth-child(8) { left: 60%; animation-duration: 21s; animation-delay: 7s; background: var(--accent-2); }
.particle:nth-child(9) { left: 90%; animation-duration: 26s; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(10) { left: 35%; animation-duration: 23s; animation-delay: 5s; width: 2px; height: 2px; background: var(--accent-2); }

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.25; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ─── NAV ──────────────────────────────────────────── */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  width: 100%;
  padding-left: max(1.25rem, calc((100vw - 1200px) / 2));
  padding-right: max(1.25rem, calc((100vw - 1200px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-hero {
  position: relative;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  gap: 0.5rem;
  animation: logoEntry 0.8s ease-out both;
}

@keyframes logoEntry {
  0% { opacity: 0; transform: scale(0.8) translateX(-10px); }
  100% { opacity: 1; transform: scale(1) translateX(0); }
}

.logo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(16px);
  display: none;
}

.logo:hover::before {
  opacity: 0.4;
}

.logo-mark {
  height: 84px;
  width: auto;
  border-radius: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
  border: none;
  padding: 0;
  background: transparent;
}

.logo:hover .logo-mark {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.3));
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  line-height: 1;
  transition: opacity var(--transition);
}

.logo:hover .logo-text {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--accent);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  transition: width var(--transition), left var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 50%;
  left: 25%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

/* ─── HERO (shared for all pages) ──────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04), rgba(8, 145, 178, 0.02), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: heroPulse 10s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 1rem 0 4rem;
  flex: 1;
}

/* ─── EYEBROW ──────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-2);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent-2); }
  50% { box-shadow: 0 0 16px var(--accent-2), 0 0 32px rgba(8, 145, 178, 0.2); }
}

/* ─── TYPOGRAPHY ───────────────────────────────────── */

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ─── BUTTONS ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 4px 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.35), 0 0 40px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-secondary {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

/* ─── HERO CARD ────────────────────────────────────── */

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(37, 99, 235, 0.04);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(37, 99, 235, 0.06);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(8, 145, 178, 0.04));
  z-index: -1;
  filter: blur(1px);
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 70%);
  pointer-events: none;
}

.hero-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.hero-card ul { list-style: none; }

.hero-card li {
  padding: 0.6rem 0 0.6rem 1.6rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.hero-card li:hover {
  color: var(--text);
  padding-left: 1.8rem;
}

.hero-card li:last-child { border-bottom: none; }

.hero-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 6px rgba(8, 145, 178, 0.4);
  transition: box-shadow var(--transition);
}

.hero-card li:hover::before {
  box-shadow: 0 0 12px rgba(8, 145, 178, 0.6), 0 0 24px rgba(8, 145, 178, 0.2);
}

/* ─── SECTIONS ─────────────────────────────────────── */

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02));
}

.section + .section-alt,
.section-alt + .section {
  border-top: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.about-grid h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading p {
  margin-top: 0.8rem;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ─── CARDS ────────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-card), 0 0 30px rgba(37, 99, 235, 0.06);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(8, 145, 178, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(8, 145, 178, 0.1));
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.2rem;
}

.service-card li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* ─── ABOUT ────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-grid h2 { margin-bottom: 1rem; }

.about-grid > div:first-child p:last-of-type {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.stats { display: grid; gap: 0.8rem; }

.stat-item {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.stat-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
  background: rgba(37, 99, 235, 0.03);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.06);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── PROCESS / STEPS ──────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─────────────────────────────────── */

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

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}

.testimonial-card blockquote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-info span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ─── FEATURES / WHY CHOOSE US ─────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── CONTACT BOX (index CTA) ──────────────────────── */

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(8, 145, 178, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-box:hover {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.08);
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.contact-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ─── CONTACT FORM ─────────────────────────────────── */

.contact-form-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(37, 99, 235, 0.03);
  align-items: start;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.04), transparent 70%);
  pointer-events: none;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-info .info-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.contact-info .info-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.contact-info .info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-info .info-item span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 0 20px rgba(37, 99, 235, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ─── NEWSLETTER ───────────────────────────────────── */

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

.newsletter-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04), transparent 70%);
  pointer-events: none;
}

.newsletter-card .section-heading {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 0 20px rgba(37, 99, 235, 0.06);
}

.newsletter-form .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── VALUES GRID ──────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.value-card:hover .value-icon {
  background: rgba(37, 99, 235, 0.12);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── TEAM ─────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-card);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--panel);
}

.team-avatar span {
  position: relative;
  z-index: 1;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.team-card .team-role {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 500;
}

.team-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.6rem;
}

/* ─── TIMELINE ─────────────────────────────────────── */

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), transparent);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-item .timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.timeline-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── FAQ ──────────────────────────────────────────── */

.faq-item {
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0.8rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── FOOTER ───────────────────────────────────────── */

.footer {
  padding: 0;
  position: relative;
  z-index: 1;
}

.footer-top {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.03), rgba(8, 145, 178, 0.01));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-brand .logo-mark {
  height: 56px;
  filter: drop-shadow(0 2px 10px rgba(37, 99, 235, 0.2));
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.footer-social a svg {
  width: 17px;
  height: 17px;
  fill: var(--accent);
  transition: fill var(--transition);
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.015);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color var(--transition);
}

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

/* ─── PAGE LOADER ─────────────────────────────────── */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  height: 64px;
  width: auto;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ─── SCROLL PROGRESS BAR ─────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* ─── BACK TO TOP ─────────────────────────────────── */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── PAGE LOAD FADE ──────────────────────────────── */

body {
  animation: pageLoad 0.5s ease-out 0.6s both;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── CARD HOVER GRADIENT BORDER ──────────────────── */

.card::after,
.testimonial-card::after,
.feature-card::after,
.value-card::after,
.team-card::after,
.process-step::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover::after,
.testimonial-card:hover::after,
.feature-card:hover::after,
.value-card:hover::after,
.team-card:hover::after,
.process-step:hover::after {
  opacity: 0.15;
}

/* ─── CURSOR GLOW (hero only) ─────────────────────── */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ─── SMOOTH LINK UNDERLINE ───────────────────────── */

.footer-col a,
.service-card li a,
.nav-links a {
  position: relative;
}

.footer-col a::after,
.service-card li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-col a:hover::after,
.service-card li a:hover::after {
  width: 100%;
}

/* ─── GRADIENT DIVIDER ────────────────────────────── */

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), rgba(8, 145, 178, 0.15), transparent);
  margin: 0 auto;
  max-width: 900px;
}

/* ─── FAQ LIST ────────────────────────────────────── */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

/* ─── SCROLL REVEAL ────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  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; }

/* ─── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 1024px) {
  .logo-mark { height: 68px; }
  .process-steps,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .cards,
  .contact-form-card {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-box,
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(28px) saturate(1.2);
    -webkit-backdrop-filter: blur(28px) saturate(1.2);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg), 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

  .process-steps,
  .testimonials-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding: 3rem 0;
    grid-template-columns: 1fr;
  }

  h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .logo-mark { height: 56px; }

  .contact-form-card {
    padding: 1.5rem;
    gap: 2rem;
  }

  .section { padding: 3.5rem 0; }
}

/* ─── ANIMATIONS ───────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 40px rgba(37, 99, 235, 0.35), 0 0 60px rgba(37, 99, 235, 0.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero {
  animation: fadeIn 0.6s ease-out;
}

.nav {
  animation: fadeIn 0.5s ease-out;
}

.hero-copy {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-card {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.eyebrow {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.lead {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-actions {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.btn-primary {
  animation: glow 3s ease-in-out infinite;
}

.card {
  animation: fadeInUp 0.6s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card:hover {
  animation: none;
}

.stat-item {
  animation: scaleIn 0.5s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.section-heading {
  animation: fadeInUp 0.6s ease-out both;
}

.contact-box {
  animation: fadeInUp 0.6s ease-out both;
}

.contact-form-card {
  animation: fadeInUp 0.6s ease-out both;
}

.footer {
  animation: fadeIn 0.6s ease-out both;
}
