/* ============================================================
 *  Scanimart – Ultra-Premium Design System (styles3.css)
 * ============================================================
 *  Cinematic dark-mode · Glassmorphism · Gradient accents
 *  Inspired by Linear × Stripe × Vercel
 * ============================================================ */

/* ==========================================================
   1. CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ========================================================== */
:root {
  /* Backgrounds */
  --bg-primary: #050816;
  --bg-secondary: #0a0f2c;
  --bg-tertiary: #111842;
  --bg-glass: rgba(12, 17, 48, 0.6);

  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-violet: #8b5cf6;
  --accent-emerald: #10b981;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #3b82f6, #06b6d4);
  --gradient-glow: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
  --gradient-card: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.05));

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Borders & Shadows */
  --border-glass: rgba(255,255,255,0.08);
  --border-glow: rgba(59,130,246,0.3);
  --shadow-glow: 0 0 30px rgba(59,130,246,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==========================================================
   2. CSS RESET & BASE STYLES
   ========================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}


/* ==========================================================
   3. UTILITY CLASSES
   ========================================================== */
.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border-glow);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* ==========================================================
   4. NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1100px;
  z-index: 1000;
  background: rgba(10, 15, 44, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.5rem;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 8, 22, 0.95);
  border-color: rgba(255,255,255,0.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  top: 0.5rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.navbar .nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: var(--text-primary);
}

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

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-nav-outline {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glow);
  color: var(--accent-blue);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav-outline:hover {
  background: rgba(59,130,246,0.1);
  border-color: var(--accent-blue);
}

.btn-nav-primary {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--gradient-hero);
  color: white;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(59,130,246,0.3);
}

.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
}


/* ==========================================================
   5. MOBILE MENU OVERLAY
   ========================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 22, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay .nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-overlay .nav-links a {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-overlay .nav-links a:hover {
  color: var(--accent-blue);
}

.mobile-overlay .nav-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-close:hover {
  color: var(--accent-blue);
  transform: rotate(90deg);
}


/* ==========================================================
   6. HERO SECTION
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: floatBlob 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: floatBlob 25s ease-in-out infinite reverse;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--border-glow);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

.hero-tagline {
  font-size: 1.15rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: var(--gradient-hero);
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(59,130,246,0.08);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-primary i,
.btn-secondary i {
  font-size: 1.1rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero-trust-item .trust-number {
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 1.1rem;
}

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

.hero-phone {
  max-width: 280px;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: floatPhone 6s ease-in-out infinite;
}

.hero-phone img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(59,130,246,0.2));
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, rgba(6,182,212,0.1) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}


/* ==========================================================
   7. MARQUEE / TRUST BAR
   ========================================================== */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-secondary);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1.5rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.marquee-item i {
  font-size: 1.2rem;
  color: var(--accent-blue);
}

.marquee-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
  flex-shrink: 0;
}


/* ==========================================================
   8. SERVICES SECTION
   ========================================================== */
.services {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-glow);
}

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

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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


/* ==========================================================
   9. HOW IT WORKS – TIMELINE
   ========================================================== */
.timeline {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan), var(--accent-violet));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-card {
  width: calc(50% - 3rem);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  z-index: 2;
  box-shadow: 0 0 20px rgba(59,130,246,0.4);
  font-family: 'Space Grotesk', sans-serif;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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


/* ==========================================================
   10. STATS SECTION
   ========================================================== */
.stats {
  padding: 5rem 0;
  background: var(--bg-primary);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ==========================================================
   11. FEATURES – BENTO GRID
   ========================================================== */
.features {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bento-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.bento-card--large {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.bento-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ==========================================================
   12. FOUNDER QUOTE
   ========================================================== */
.founder {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.founder-image {
  flex-shrink: 0;
}

.founder-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-hero);
  box-shadow: 0 0 40px rgba(59,130,246,0.2);
}

.founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote {
  flex: 1;
}

.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-blue);
  opacity: 0.3;
  font-family: Georgia, 'Times New Roman', serif;
}

.founder-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  margin-top: -1rem;
}

.founder-author {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

.founder-author span {
  color: var(--accent-blue);
}


/* ==========================================================
   13. ABOUT SECTION
   ========================================================== */
.about {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.about-content h2 span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-content strong {
  color: var(--text-primary);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-highlight-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.about-highlight-card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.about-highlight-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.about-highlight-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}


/* ==========================================================
   14. TEAM SECTION
   ========================================================== */
.team {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.08);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,22,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(5,8,22,0.98) 100%);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 500;
  margin-top: 0.25rem;
}


/* ==========================================================
   15. REVIEWS SECTION
   ========================================================== */
.reviews {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.review-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.review-quote-mark {
  font-size: 3rem;
  color: var(--accent-blue);
  opacity: 0.4;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
}

.review-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.review-stars {
  color: #fbbf24;
  margin-top: 0.5rem;
  letter-spacing: 2px;
  font-size: 0.95rem;
}


/* ==========================================================
   16. CTA SECTION
   ========================================================== */
.cta-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, rgba(6,182,212,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

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

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================
   17. FAQ SECTION
   ========================================================== */
.faq {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-blue);
}

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

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

.faq-item.active .faq-question {
  color: var(--accent-blue);
}


/* ==========================================================
   18. FOOTER
   ========================================================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-glass);
}

.footer-gradient-border {
  height: 2px;
  background: var(--gradient-glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h6 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent-blue);
}

.footer-col li i {
  margin-right: 0.5rem;
  color: var(--accent-blue);
  font-size: 0.85rem;
  width: 16px;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-social a:hover {
  background: var(--gradient-hero);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-glass);
}

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


/* ==========================================================
   19. FLOATING SOCIALS
   ========================================================== */
.floating-socials {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
}

.floating-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  overflow: visible;
  position: relative;
}

.floating-btn:hover {
  border-color: var(--border-glow);
  transform: translateX(-4px);
  box-shadow: var(--shadow-glow);
}

.floating-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.floating-btn[aria-label="Email"] img {
  filter: invert(1) brightness(1.8);
}

.floating-btn i {
  font-size: 1.25rem;
}

.floating-btn .fa-facebook-f {
  color: #1877f2;
}

.floating-btn .tooltip {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid var(--border-glass);
}

.floating-btn:hover .tooltip {
  opacity: 1;
}


/* ==========================================================
   20. KEYFRAME ANIMATIONS
   ========================================================== */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}


/* ==========================================================
   21. RESPONSIVE DESIGN
   ========================================================== */

/* ── Tablets & Small Desktops (max 1024px) ── */
@media (max-width: 1024px) {
  .navbar .nav-links,
  .navbar .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }

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

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

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-phone {
    max-width: 260px;
  }

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

  .timeline-line {
    left: 2rem;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 4.5rem;
  }

  .timeline-dot {
    left: 2rem;
  }

  .timeline-card {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .bento-card--large {
    grid-column: span 1;
  }

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

  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

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

/* ── Large Mobile (max 768px) ── */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .floating-socials {
    display: none;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero {
    padding-top: 6rem;
  }

  .services,
  .timeline,
  .features,
  .founder,
  .about,
  .team,
  .reviews,
  .cta-section,
  .faq {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

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

  .navbar {
    width: calc(100% - 2rem);
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  .founder-text {
    font-size: 1.15rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
