/* ============================================================
   AKN — Aspire Kinetic Network  ·  Design System
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --navy: #1a3a6b;
  --navy-deep: #0d1f3c;
  --teal: #2ab5a5;
  --teal-dark: #1e8a7d;
  --copper: #c8761a;
  --copper-light: #e09430;
  --off-white: #f5f0eb;
  --off-white-dim: rgba(245, 240, 235, 0.7);
  --glass-bg: rgba(13, 31, 60, 0.72);
  --glass-border: rgba(42, 181, 165, 0.15);
  --card-bg: rgba(26, 58, 107, 0.18);
  --card-border: rgba(42, 181, 165, 0.12);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --section-pad: clamp(80px, 12vw, 160px);
  --container: min(1200px, 90vw);
  --radius: 16px;
  --radius-sm: 10px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  background: var(--navy-deep);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
.section-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--off-white-dim);
  max-width: 600px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* word-by-word reveal */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
  margin-right: 0.3em;
}
.word-reveal.revealed .word {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--glass-border), 0 8px 32px rgba(0,0,0,0.25);
}

.nav-inner {
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: var(--off-white-dim);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--navy-deep);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(42,181,165,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  background: rgba(13, 31, 60, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out-expo);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--off-white-dim);
  transition: color 0.3s, transform 0.3s;
}

.mobile-drawer a:hover {
  color: var(--teal);
  transform: translateX(8px);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1004;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

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

/* Animated gradient mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26, 58, 107, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(42, 181, 165, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(200, 118, 26, 0.12) 0%, transparent 70%),
    var(--navy-deep);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%; }
  50% { background-position: 10% 20%, 90% 10%, 40% 80%; }
  100% { background-position: 5% 10%, 80% 25%, 60% 70%; }
}

/* floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb--teal {
  width: 500px;
  height: 500px;
  background: rgba(42, 181, 165, 0.15);
  top: -10%;
  right: -5%;
  animation-duration: 10s;
}

.hero-orb--copper {
  width: 350px;
  height: 350px;
  background: rgba(200, 118, 26, 0.08);
  bottom: -5%;
  left: 5%;
  animation-duration: 14s;
  animation-delay: -3s;
}

.hero-orb--navy {
  width: 400px;
  height: 400px;
  background: rgba(26, 58, 107, 0.3);
  top: 30%;
  left: 40%;
  animation-duration: 12s;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-tagline .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.hero-tagline .line.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline .line--white { color: var(--off-white); }
.hero-tagline .line--teal { color: var(--teal); }
.hero-tagline .line--copper { color: var(--copper); }

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--off-white-dim);
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.6s var(--ease-out-expo), transform 0.8s 0.6s var(--ease-out-expo);
}

.hero-sub.visible { opacity: 1; transform: translateY(0); }

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.9s var(--ease-out-expo), transform 0.8s 0.9s var(--ease-out-expo);
}

.hero-buttons.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--navy-deep);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(42, 181, 165, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--off-white-dim);
  color: var(--off-white);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
  background: rgba(200, 118, 26, 0.08);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(26, 58, 107, 0.25);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
}

.stats-grid > *:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--teal);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--off-white-dim);
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo), border-color 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(42, 181, 165, 0.3);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(42, 181, 165, 0.15), rgba(42, 181, 165, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: 8px;
}

.service-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--copper);
  margin-bottom: 16px;
}

.service-card p {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--off-white-dim);
  line-height: 1.65;
}

/* ============================================================
   WHY AKN — REASON CARDS
   ============================================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.reason-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.reason-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.reason-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--off-white);
  margin-bottom: 10px;
}

.reason-card p {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--off-white-dim);
  line-height: 1.65;
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--copper));
  border-radius: 2px;
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: 6px;
}

.step-content p {
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--off-white-dim);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.testimonial-stars {
  color: var(--copper);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--off-white-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--off-white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--off-white-dim);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
  padding: var(--section-pad) 20px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42, 181, 165, 0.08);
  filter: blur(80px);
  top: -200px;
  right: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200, 118, 26, 0.06);
  filter: blur(80px);
  bottom: -150px;
  left: -100px;
}

.cta-banner .section-title {
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 1.1rem;
  padding: 18px 44px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(42, 181, 165, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--off-white);
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--teal); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 58, 107, 0.3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(26, 58, 107, 0.45);
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5f0eb' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy-deep);
  color: var(--off-white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(13, 31, 60, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--off-white-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(42, 181, 165, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--off-white);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list a,
.footer-contact-list span {
  font-size: 0.88rem;
  color: var(--off-white-dim);
}

.footer-contact-list a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--off-white-dim);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   FOUNDERS PAGE
   ============================================================ */
.founders-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 60px;
  text-align: center;
}

.founders-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.founder-avatar {
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(42, 181, 165, 0.15), rgba(200, 118, 26, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(42, 181, 165, 0.3);
}

.founder-info { display: flex; flex-direction: column; justify-content: center; }

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(200, 118, 26, 0.12);
  border: 1px solid rgba(200, 118, 26, 0.25);
  color: var(--copper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--off-white);
  margin-bottom: 4px;
}

.founder-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 20px;
}

.founder-bio {
  font-weight: 300;
  font-size: 1rem;
  color: var(--off-white-dim);
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

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

  .stats-grid > * { border-right: none; border-bottom: 1px solid var(--glass-border); }
  .stats-grid > *:nth-child(odd) { border-right: 1px solid var(--glass-border); }
  .stats-grid > *:nth-last-child(-n+2) { border-bottom: none; }

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

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

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

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }

  .founder-avatar {
    width: 140px;
    height: 140px;
    font-size: 3rem;
    margin: 0 auto;
  }

  .founder-badge { margin: 0 auto 16px; }

  .process-timeline::before { left: 20px; }
  .step-number { width: 40px; height: 40px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: clamp(2rem, 10vw, 3rem); }

  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > * { border: none; border-bottom: 1px solid var(--glass-border); }
  .stats-grid > *:last-child { border-bottom: none; }

  .hero-buttons { flex-direction: column; align-items: center; }
}
