/* ═══════════════════════════════════════════════════════════
   BizGrip Landing Page — Clean White/Light Theme
   ═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.landing {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: #334e68;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── Hero Background ─────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(160deg, #f0fdf9 0%, #f0f9ff 30%, #faf5ff 60%, #fff 100%);
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  will-change: transform;
}
.aurora--1 {
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  top: -25%; right: -10%;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 70%);
  animation: aurora-drift-1 12s ease-in-out infinite;
}
.aurora--2 {
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  bottom: -15%; left: -5%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  animation: aurora-drift-2 15s ease-in-out infinite;
}
.aurora--3 {
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  top: 35%; left: 45%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  animation: aurora-drift-3 18s ease-in-out infinite;
}
@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.05); }
}
@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.08); }
}
@keyframes aurora-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -35px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16,42,67,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(16,42,67,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #102a43;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-brand-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13,148,136,0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #627d98;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #102a43; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #0d9488;
  border-radius: 1px;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(13,148,136,0.25);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13,148,136,0.35);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: #334e68; padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 16px; padding: 8px 0; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.15);
  font-size: 13px;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0d9488;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #102a43;
  margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #0d9488, #0f766e, #0d9488);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #627d98;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(13,148,136,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13,148,136,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334e68;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ── Section Base ─────────────────────────────────────────── */
.section {
  position: relative;
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #102a43;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.1rem;
  color: #627d98;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Alternating Section BG ───────────────────────────────── */
.section--gray { background: #f8fafc; padding-left: 0; padding-right: 0; max-width: 100%; }
.section--gray > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

/* ── Trusted By ───────────────────────────────────────────── */
.trusted-section {
  padding: 60px 24px;
  background: #f8fafc;
  border-top: 1px solid #f0f4f8;
  border-bottom: 1px solid #f0f4f8;
}
.trusted-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.trusted-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #829ab1;
  margin-bottom: 32px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.integration-badge:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.integration-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #334e68;
  white-space: nowrap;
}

/* ── Feature Cards ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  padding: 36px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f0f4f8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-color, #0d9488), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: #e2e8f0;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #102a43;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: #627d98;
  line-height: 1.7;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 16.6%;
  width: 66.6%; height: 2px;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
  opacity: 0.25;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
}

.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(13,148,136,0.25);
  position: relative;
  z-index: 2;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #102a43;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: #627d98;
  max-width: 300px;
  margin: 0 auto;
}

/* ── App Screenshots Carousel ─────────────────────────────── */
.screenshots-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  perspective: 1200px;
}
.screenshot-phone {
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
  background: #fff;
}
.screenshot-phone:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}
.screenshot-phone img {
  width: 100%;
  height: auto;
  display: block;
}
.screenshot-phone:nth-child(2) { transform: translateY(-20px); }
.screenshot-phone:nth-child(2):hover { transform: translateY(-32px) scale(1.02); }
.screenshot-phone:nth-child(4) { transform: translateY(-16px); }
.screenshot-phone:nth-child(4):hover { transform: translateY(-28px) scale(1.02); }

@media (max-width: 768px) {
  .screenshots-container { gap: 16px; }
  .screenshot-phone { width: 160px; border-radius: 20px; }
}
@media (max-width: 500px) {
  .screenshot-phone { width: 140px; border-radius: 16px; }
  .screenshots-container { gap: 10px; }
}

/* ── Stats Counter ────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #102a43;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #829ab1;
  font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f0f4f8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: #627d98;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: #102a43;
}
.testimonial-role {
  font-size: 13px;
  color: #829ab1;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.pricing-card {
  padding: 36px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f0f4f8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.pricing-card--popular {
  background: #fff;
  border-color: #0d9488;
  box-shadow: 0 4px 20px rgba(13,148,136,0.12);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(13,148,136,0.25);
}
.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: #102a43;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: #102a43;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: #829ab1;
}
.pricing-desc {
  font-size: 14px;
  color: #627d98;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #627d98;
}
.pricing-features li::before {
  content: '✓';
  color: #0d9488;
  font-weight: 700;
  font-size: 14px;
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.pricing-btn--primary {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  box-shadow: 0 4px 15px rgba(13,148,136,0.25);
}
.pricing-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(13,148,136,0.35); }
.pricing-btn--outline {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334e68;
}
.pricing-btn--outline:hover { background: #f8fafc; border-color: #0d9488; color: #0d9488; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0f4f8;
  overflow: hidden;
  transition: border-color 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.faq-item.open { border-color: rgba(13,148,136,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  color: #102a43;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: #0d9488; }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #829ab1;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: #0d9488; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #627d98;
  line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  text-align: center;
  overflow: hidden;
  margin: 0 24px;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 50%);
  animation: cta-pulse 6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-banner .btn-primary {
  background: #fff;
  color: #0d9488;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #102a43;
  color: #bcccdc;
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: 14px;
  color: #829ab1;
  max-width: 280px;
  margin-top: 12px;
  line-height: 1.7;
}
.footer-brand .nav-brand { color: #fff; font-size: 18px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: #829ab1;
  transition: color 0.2s;
}
.footer-col a:hover { color: #14b8a6; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: #627d98;
}

/* ── GSAP Reveal Animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
