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

:root {
  --primary: #467FF7;
  --primary-light: #6B9AFF;
  --primary-dark: #2B5FD9;
  --accent: #FF6200;
  --accent-hover: #E55800;
  --accent-light: #FF7A29;
  --bg-white: #FFFFFF;
  --bg-light: #F7F8FC;
  --bg-section: #F0F2F8;
  --bg-card: #FFFFFF;
  --text-heading: #121212;
  --text-body: #3D3D3D;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --gradient-primary: linear-gradient(135deg, #467FF7 0%, #6B9AFF 100%);
  --gradient-cta: linear-gradient(135deg, #FF6200 0%, #FF7A29 100%);
  --gradient-hero: linear-gradient(135deg, #EEF2FF 0%, #FFF7ED 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-blue: 0 8px 30px rgba(70,127,247,0.25);
  --shadow-orange: 0 8px 30px rgba(255,98,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
}

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

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

body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== PREMIUM NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem; height: 68px;
}
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo-link img { height: 32px; width: auto; }

/* Center items */
.nav-center {
  display: flex; align-items: center; gap: 0.25rem;
  flex: 1; justify-content: center;
}

/* Nav items with dropdowns */
.nav-item { position: relative; }
.nav-trigger {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-body);
  padding: 0.5rem 0.75rem; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-trigger:hover, .nav-item.open .nav-trigger {
  background: rgba(70,127,247,0.06); color: var(--text-heading);
}
.nav-chevron {
  width: 10px; height: 6px; transition: transform 0.25s;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Plain links */
.nav-plain-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-body);
  text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-plain-link:hover { background: rgba(70,127,247,0.06); color: var(--text-heading); }

/* === DROPDOWN PANELS === */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 260px; z-index: 999;
}
.nav-dropdown--wide { min-width: 680px; }
.nav-item.open .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-inner {
  display: flex; gap: 0; padding: 1.25rem;
}
.nav-dropdown-col { flex: 1; padding: 0.5rem; }
.nav-dropdown-heading {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.75rem; padding: 0 0.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Dropdown items */
.nav-dropdown-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.65rem 0.6rem; border-radius: 10px;
  text-decoration: none; transition: background 0.15s;
  margin-bottom: 0.2rem;
}
.nav-dropdown-item:hover { background: var(--bg-light); }
.nav-dropdown-item strong {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--text-heading); line-height: 1.3;
}
.nav-dropdown-item span {
  display: block; font-size: 0.78rem; color: var(--text-secondary);
  margin-top: 1px; line-height: 1.4;
}
.nav-dd-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 7px;
}
.nav-dd-icon svg { width: 100%; height: 100%; }

/* Promo column */
.nav-dropdown-promo {
  width: 200px; flex-shrink: 0;
  background: var(--bg-light); border-radius: 12px;
  padding: 1.25rem 1rem; margin: 0.5rem 0 0.5rem 0.5rem;
}
.nav-promo-btn {
  display: inline-flex; align-items: center;
  background: var(--primary); color: #fff;
  padding: 0.55rem 1.1rem; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.nav-promo-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-login {
  font-size: 0.88rem; font-weight: 500; color: var(--text-body);
  text-decoration: none; padding: 0.5rem 1rem; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-login:hover { background: var(--bg-light); color: var(--text-heading); }
.nav-get-started {
  background: var(--primary); color: #fff;
  padding: 0.55rem 1.3rem; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.nav-get-started:hover {
  background: var(--primary-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-blue);
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-heading); border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Old classes kept for compatibility */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important; padding: 0.55rem 1.6rem;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.nav-btn-blue {
  background: var(--primary) !important;
  color: #fff !important; padding: 0.55rem 1.6rem;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

/* Mobile */
@media (max-width: 960px) {
  .nav-hamburger { display: flex; }
  .nav-center {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow-y: auto; max-height: calc(100vh - 68px);
  }
  .nav-center.open { display: flex; }
  .nav-right { gap: 0.5rem; }
  .nav-login { display: none; }
  .nav-dropdown {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; min-width: auto;
    background: var(--bg-light); margin-top: 0.25rem; border-radius: 10px;
  }
  .nav-dropdown--wide { min-width: auto; }
  .nav-item.open .nav-dropdown { transform: none; }
  .nav-dropdown-inner { flex-direction: column; padding: 0.5rem; }
  .nav-dropdown-promo { width: auto; margin: 0.5rem 0 0; }
  .nav-trigger { width: 100%; justify-content: space-between; border-radius: 8px; }
  .nav-plain-link { display: block; }
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 4rem 2rem 4rem;
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(70,127,247,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,98,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center; gap: 20px;
}
.hero-text {
  flex: 0 1 600px;
}
.hero-visual {
  flex: 0 1 500px;
}
.hero-center .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-center .hero-btns {
  justify-content: center;
}
.hero-center .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero-center .hero-badge {
  margin-left: auto;
  margin-right: auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(70,127,247,0.08); 
  border: 1px solid rgba(70,127,247,0.15);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; color: var(--primary); font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both, shimmer 3s infinite linear;
  background-size: 200% auto;
  background-image: linear-gradient(90deg, rgba(70,127,247,0.08) 0%, rgba(70,127,247,0.2) 50%, rgba(70,127,247,0.08) 100%);
}
.hero-badge::before { content: '✦'; font-size: 0.9rem; }

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem; font-weight: 800; line-height: 1.2;
  margin-bottom: 2rem; color: var(--text-heading);
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.animate-phrase {
  display: inline;
  position: relative;
  z-index: 1;
  background: 
    linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%) padding-box,
    linear-gradient(rgba(70,127,247,0.12), rgba(70,127,247,0.12)) no-repeat;
  -webkit-background-clip: text, padding-box;
  -webkit-text-fill-color: transparent;
  background-clip: text, padding-box;
  background-size: 200% auto, 0% 35%;
  background-position: 0 center, 0 90%;
  animation: 
    shimmer 4s linear infinite,
    wipeInBG 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  padding: 0 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.highlight .animate-phrase {
  animation-delay: 0s, 1.4s;
}
.hero h1 .highlight {
  display: inline;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; width: 100%;
  height: 8px; background: rgba(70,127,247,0.1);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 1.15rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 100%;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-btns { 
  display: flex; gap: 1rem; flex-wrap: wrap; 
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.95rem 2.2rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Inter Tight', sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.btn-secondary {
  background: var(--primary); color: #fff;
  padding: 0.95rem 2.2rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Inter Tight', sans-serif;
  transition: all 0.3s;
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.btn-outline {
  background: transparent; color: var(--primary);
  padding: 0.95rem 2.2rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--primary); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Inter Tight', sans-serif;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--primary);
}
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }
.hero-visual {
  background: transparent; border: none;
  border-radius: 0; padding: 0;
  box-shadow: none;
  display: flex; align-items: flex-start; justify-content: flex-start;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1280px; margin: 0 auto;
}
.section-alt {
  background: var(--bg-light);
  padding: 6rem 2rem;
}
.section-alt .section-inner { max-width: 1280px; margin: 0 auto; }
.section-blue {
  background: var(--primary);
  padding: 6rem 2rem;
  color: #fff;
}
.section-blue .section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem; font-weight: 800; line-height: 1.2;
  margin-bottom: 1rem; color: var(--text-heading);
}
.section-title .highlight { color: var(--primary); }
.section-subtitle {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 640px; margin-bottom: 3rem; line-height: 1.8;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.4s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--primary); transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(70,127,247,0.08); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 0.7rem;
  color: var(--text-heading);
}
.card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ===== TABLE ===== */
.styled-table {
  width: 100%; border-collapse: collapse;
  margin: 2rem 0; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  background: var(--bg-white);
}
.styled-table thead { background: var(--primary); }
.styled-table th {
  padding: 1rem 1.5rem; text-align: left;
  font-weight: 600; font-size: 0.9rem;
  color: #fff; font-family: 'Poppins', sans-serif;
}
.styled-table td {
  padding: 1rem 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-body);
}
.styled-table tbody tr { transition: background 0.3s; }
.styled-table tbody tr:hover { background: rgba(70,127,247,0.03); }

/* ===== PROCESS / CARDS ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.process-step {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative; padding-top: 3.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.process-step:hover {
  border-color: var(--primary); transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.process-step::before {
  content: attr(data-step); position: absolute; top: 1.2rem; left: 1.5rem;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  font-family: 'Poppins', sans-serif;
}
.process-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem;
  color: var(--text-heading);
}
.process-step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.process-step ul { list-style: none; margin-top: 0.8rem; }
.process-step ul li {
  color: var(--text-secondary); font-size: 0.88rem;
  padding: 0.3rem 0; padding-left: 1.4rem; position: relative;
}
.process-step ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-lg); padding: 4rem;
  text-align: center; margin: 2rem 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem;
  position: relative; color: #fff;
}
.cta-banner p {
  font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem;
  position: relative; color: #fff;
}
.cta-banner .btn-white {
  background: #fff; color: var(--primary);
  padding: 1rem 2.5rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'Inter Tight', sans-serif;
}
.cta-banner .btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.cta-banner-orange {
  background: var(--accent);
}
.cta-banner-orange .btn-white { color: var(--accent); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 1rem; overflow: hidden;
  background: var(--bg-white);
}
.faq-q {
  padding: 1.2rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  transition: background 0.3s;
}
.faq-q:hover { background: rgba(70,127,247,0.03); }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-q { background: rgba(70,127,247,0.05); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.5rem 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative; box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial::before {
  content: '"'; font-size: 4rem; color: var(--primary);
  opacity: 0.2; position: absolute; top: 0.5rem; left: 1.5rem;
  font-family: Georgia, serif;
}
.testimonial p {
  font-style: italic; margin-bottom: 1.2rem; padding-top: 1.5rem;
  color: var(--text-body); line-height: 1.8;
}
.testimonial-author {
  font-weight: 600; font-size: 0.9rem; color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

/* ===== RESULTS METRICS ===== */
.metrics-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.metric {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.metric:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.metric h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--primary);
}
.metric p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.industry-tag {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  font-size: 0.95rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--text-body);
  transition: all 0.3s;
}
.industry-tag:hover { border-color: var(--primary); background: rgba(70,127,247,0.03); transform: translateY(-2px); }

/* ===== FOOTER ===== */
/* ===== MODERN FOOTER V2 (Runway Style) ===== */
.footer {
  background: var(--bg-white);
  padding: 8rem 2rem 4rem;
  border-top: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}


.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(6, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-tools-row {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding-top: 4rem;
  border-top: 1px solid #f1f5f9;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}




.footer-brand-col {
  padding-right: 4rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 300px;
}

.ask-ai-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ask-ai-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
}

.ask-ai-icons {
  display: flex;
  gap: 0.8rem;
}

.ai-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.ai-icon:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

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

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

.footer-col ul li a {
  color: #1e293b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-col ul li a .external-arrow {
  font-size: 0.7rem;
  margin-left: 4px;
  opacity: 0.4;
}

.badge-hiring {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: capitalize;
}

.footer-bg-text {
  width: 100%;
  text-align: center;
  font-size: 22vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(226, 232, 240, 1);
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  line-height: 0.8;
  margin-bottom: -5vw; /* was -11vw — reduced to prevent bleeding above footer */
  display: block;
  user-select: none;
  opacity: 0.8;
}





.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom-right {
  display: flex;
  gap: 2rem;
}

.footer-bottom-right a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: var(--primary);
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}


/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex; gap: 2rem; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 2rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  margin: 2rem 0; background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-body); font-size: 0.85rem; font-weight: 500; }
.trust-item .check { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* ===== FEATURED IN BAR ===== */
.featured-bar {
  display: flex; gap: 3rem; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 2.5rem;
  opacity: 0.5;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  color: var(--text-muted);
}
.featured-bar span { white-space: nowrap; }

/* ===== INDEX / LIST PAGE ===== */
.page-list { list-style: none; }
.page-list li { margin-bottom: 0.5rem; }
.page-list a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; background: var(--bg-white);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-heading); text-decoration: none;
  font-weight: 500; transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.page-list a:hover { border-color: var(--primary); transform: translateX(4px); box-shadow: var(--shadow-md); }
.page-list .num { color: var(--primary); font-weight: 700; font-family: 'Poppins', sans-serif; min-width: 30px; }
.page-list .meta { margin-left: auto; font-size: 0.8rem; color: var(--text-muted); }

/* ===== COMPARISON BOX ===== */
.comparison-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0;
}
.comparison-col {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.comparison-col.highlight {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.comparison-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-heading);
}
.comparison-col.highlight h3 { color: var(--primary); }
.comparison-col ul { list-style: none; }
.comparison-col ul li {
  padding: 0.5rem 0; font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.5rem; position: relative;
}
.comparison-col ul li::before {
  position: absolute; left: 0; font-size: 0.85rem;
}
.comparison-col.highlight ul li::before { content: '✅'; }
.comparison-col:not(.highlight) ul li::before { content: '❌'; }

/* ===== SNIPPET BOX (for featured snippet optimization) ===== */
.snippet-box {
  background: rgba(70,127,247,0.04);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.snippet-box strong { color: var(--text-heading); }
.snippet-box p { color: var(--text-body); margin-top: 0.5rem; }

/* ===== INFOGRAPHIC LAYOUTS ===== */

/* Content + Visual side-by-side row */
.content-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin: 3rem 0;
}
.content-visual.reverse { direction: rtl; }
.content-visual.reverse > * { direction: ltr; }
.content-visual-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--text-heading);
}
.content-visual-text p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 1rem; }
.content-visual-text ul { list-style: none; margin-top: 0.8rem; }
.content-visual-text ul li {
  color: var(--text-secondary); font-size: 0.95rem;
  padding: 0.4rem 0; padding-left: 1.5rem; position: relative;
}
.content-visual-text ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.content-visual-img {
  display: flex; align-items: center; justify-content: center;
}
.content-visual-img img {
  width: 100%; max-width: 340px; max-height: 300px; height: auto;
  object-fit: contain;
}

/* Infographic icon strip (row of small icons) */
.infographic-strip {
  display: flex; gap: 2rem; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 2.5rem 0; margin: 2rem 0;
}
.infographic-strip img {
  width: 72px; height: 72px; object-fit: contain;
  opacity: 0.85; transition: all 0.4s;
}

/* Infographic grid (2x or 3x columns of larger icons) */
.infographic-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.infographic-grid-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1.5rem 1rem;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.infographic-grid-item:hover {
  border-color: var(--primary); transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.infographic-grid-item img {
  width: 64px; height: 64px; object-fit: contain; margin-bottom: 0.8rem;
}
.infographic-grid-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem; font-weight: 600; color: var(--text-heading);
}

/* Floating section accent (decorative infographic) */
.section-accent {
  position: absolute; opacity: 0.07; pointer-events: none;
  z-index: 0;
}
.section-accent.top-right { top: 2rem; right: 2rem; width: 200px; }
.section-accent.bottom-left { bottom: 2rem; left: 2rem; width: 180px; }

/* Card with infographic icon */
.card .card-infographic {
  width: 64px; height: 64px; object-fit: contain;
  margin-bottom: 1.2rem;
}

/* Process step infographic */
.process-step .step-infographic {
  width: 56px; height: 56px; object-fit: contain;
  position: absolute; top: 1.5rem; right: 1.5rem;
  opacity: 0.6;
}

/* Metric card infographic */
.metric .metric-infographic {
  width: 48px; height: 48px; object-fit: contain;
  margin: 0 auto 0.8rem;
  opacity: 0.8;
}

/* Testimonial visual row */
.testimonial-visual-row {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem;
  align-items: start; margin: 3rem 0;
}
.testimonial-visual-row .testimonial-grid { flex: 1; }
.testimonial-visual-row .testimonial-accent {
  width: 200px; opacity: 0.15;
}

/* Section with relative positioning for accents */
.section-relative { position: relative; overflow: hidden; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .section-title { font-size: 1.8rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .nav-links { display: none; }
  .comparison-box { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; }
  .content-visual { grid-template-columns: 1fr; gap: 2rem; }
  .content-visual.reverse { direction: ltr; }
  .content-visual-img img { max-width: 240px; }
  .infographic-strip img { width: 52px; height: 52px; }
  .infographic-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 1rem; }
  .section-accent { display: none; }
  .process-step .step-infographic { width: 36px; height: 36px; }
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee-section {
  padding: 3rem 0 3.5rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.logo-marquee-section::before,
.logo-marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white), transparent);
}
.logo-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white), transparent);
}
.logo-marquee-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}
.marquee-container {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}
.marquee-container:hover {
  animation-play-state: paused;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding-right: 4.5rem;
}
.marquee-track img {
  height: 45px;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s;
}
.marquee-track img:hover {
  transform: scale(1.1);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wipeInBG {
  to { background-size: 200% auto, 100% 35%; }
}

@keyframes shimmer {
  to { background-position: 200% center, 0 90%; }
}

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

@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.hero ul li {
  animation: listSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero ul li:nth-child(1) { animation-delay: 0.5s; }
.hero ul li:nth-child(2) { animation-delay: 0.6s; }
.hero ul li:nth-child(3) { animation-delay: 0.7s; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
}

/* ===== CASE STUDIES ===== */
.case-studies-section {
  padding: 8rem 2rem;
  background: #fff;
  text-align: center;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.case-card {
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.case-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.case-metric {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.1;
}
.case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  display: block;
}
.case-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.case-stats-bar {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.case-stat-item {
  display: flex;
  flex-direction: column;
}
.case-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}
.case-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
}
.case-link::after { content: "→"; transition: transform 0.3s; }
.case-link:hover::after { transform: translateX(5px); }

.bg-soft-blue { background: #f0f7ff; }
.bg-soft-green { background: #f2faf3; }
.bg-soft-purple { background: #f8f4ff; }
.bg-soft-orange { background: #fff8f0; }

/* ============================================================
   COMPREHENSIVE MOBILE OPTIMISATION
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

/* ── Performance: reduce animations on mobile ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Images: always responsive, lazy-load ready ───────────── */
img { max-width: 100%; height: auto; }

/* ── Tablet (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  .nav-inner { padding: 0 1rem; gap: 1rem; }
  .nav-center { gap: 0; }
  .nav-trigger { padding: 0.45rem 0.55rem; font-size: 0.85rem; }
  .nav-plain-link { padding: 0.45rem 0.55rem; font-size: 0.85rem; }

  /* Hero */
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-inner { gap: 2rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-visual { flex: 0 1 380px; }

  /* Sections */
  .section { padding: 4rem 1.5rem; }
  .section-alt { padding: 4rem 1.5rem; }
  .section-blue { padding: 4rem 1.5rem; }

  /* Footer */
  .footer { padding: 5rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .footer-brand-col { grid-column: 1 / -1; padding-right: 0; margin-bottom: 2rem; }
  .footer-tools-row { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile (≤768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* ── Global spacing ── */
  body { font-size: 15px; }

  /* ── Nav ── */
  .nav-inner { height: 60px; padding: 0 1rem; }
  .nav-logo-link img { height: 28px; }
  .nav-right .nav-login { display: none; }
  .nav-get-started { padding: 0.45rem 1rem; font-size: 0.82rem; }

  /* ── Hero: stack vertically, hide decorative right column ── */
  .hero { min-height: auto; padding: 5.5rem 1.25rem 3rem; }
  .hero-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .hero-text { flex: none; width: 100%; }
  .hero-visual { display: none; } /* hide scrolling card grid on mobile */
  .hero h1 { font-size: 2rem; line-height: 1.25; letter-spacing: -0.02em; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-badge { margin: 0 auto 1.5rem; }
  .hero-btns { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .hero-stat h3 { font-size: 1.5rem; }

  /* ── Sections ── */
  .section { padding: 3rem 1.25rem; }
  .section-alt { padding: 3rem 1.25rem; }
  .section-blue { padding: 3rem 1.25rem; }
  .section-title { font-size: 1.7rem; line-height: 1.2; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }

  /* ── Cards ── */
  .cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .card { padding: 1.5rem; }
  .card h3 { font-size: 1.05rem; }
  .card p { font-size: 0.9rem; }

  /* ── Process steps ── */
  .process-steps { grid-template-columns: 1fr; }

  /* ── Metrics ── */
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .metric h3 { font-size: 2rem; }

  /* ── Industries ── */
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* ── Comparison box ── */
  .comparison-box { grid-template-columns: 1fr; }

  /* ── Content + visual side-by-side ── */
  .content-visual { grid-template-columns: 1fr; gap: 1.5rem; }
  .content-visual.reverse { direction: ltr; }
  .content-visual-img { display: none; } /* hide side images on mobile */

  /* ── CTA banner ── */
  .cta-banner { padding: 2rem 1.25rem; border-radius: var(--radius); }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 0.95rem; }
  .cta-banner .btn-white { width: 100%; justify-content: center; }

  /* ── Testimonials ── */
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-visual-row { grid-template-columns: 1fr; }
  .testimonial-visual-row .testimonial-accent { display: none; }

  /* ── FAQ ── */
  .faq-list { max-width: 100%; }
  .faq-q { font-size: 0.95rem; padding: 1rem 1.25rem; }

  /* ── Footer ── */
  .footer { padding: 3.5rem 1.25rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-brand-col { grid-column: 1 / -1; padding-right: 0; margin-bottom: 1.5rem; }
  .footer-tools-row { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-col h4 { font-size: 0.8rem; margin-bottom: 1rem; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { font-size: 0.85rem; }
  .footer-bg-text { display: none; } /* heavy element — hide on mobile */
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-right { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-tagline { max-width: 100%; }

  /* ── Tables ── */
  .styled-table { font-size: 0.85rem; }
  .styled-table th, .styled-table td { padding: 0.75rem 1rem; }

  /* ── Infographics ── */
  .infographic-strip { gap: 1.25rem; }
  .infographic-strip img { width: 44px; height: 44px; }
  .infographic-grid { grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 0.75rem; }
  .section-accent { display: none; }
  .process-step .step-infographic { display: none; }

  /* ── Case studies ── */
  .case-studies-grid { grid-template-columns: 1fr; }
  .case-studies-section { padding: 4rem 1.25rem; }
  .case-metric { font-size: 2.2rem; }
  .case-stats-bar { flex-direction: column; gap: 0.75rem; }

  /* ── Marquee — pause & reduce on mobile ── */
  .logo-marquee-section { padding: 2rem 0; }
  .marquee-container { animation-duration: 30s; }
  .marquee-track img { height: 32px; max-width: 110px; }
  .marquee-track { gap: 3rem; padding-right: 3rem; }

  /* ── Snippet / misc ── */
  .snippet-box { padding: 1.25rem; }
  .featured-bar { gap: 1.5rem; padding: 1.5rem; }

  /* ── Scrolling hero grid (disable on mobile) ── */
  .scrolling-grid { display: none !important; }

  /* ── Reduce heavy animations on mobile ── */
  .animate-phrase {
    animation: shimmer 6s linear infinite;
    background-image: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  }
  .hero-badge { animation: none; }
}

/* ── Small mobile (≤480px) ────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .metrics-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-tools-row { grid-template-columns: 1fr; }
  .nav-get-started { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary, .btn-outline {
    font-size: 0.92rem; padding: 0.85rem 1.5rem;
  }
}

/* ── Touch-device improvements ─────────────────────────────── */
@media (hover: none) {
  .card:hover, .process-step:hover, .metric:hover, .testimonial:hover {
    transform: none; box-shadow: var(--shadow-sm);
  }
  .nav-dropdown-item:hover { background: none; }
}
