/* ============================================================
   Anuvegsolis – IT Services & Consultancy
   style.css  |  Main Stylesheet
   Stack: Bootstrap 5 + Custom CSS
   ============================================================ */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

/* ────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
──────────────────────────────────────── */
:root {
  --blue:       #1E40AF;
  --blue-light: #3B82F6;
  --accent:     #06B6D4;
  --orange:     #F97316;
  --dark:       #0F172A;
  --navy:       #1E293B;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --light-bg:   #F8FAFC;
  --font:       'Plus Jakarta Sans', sans-serif;
  --display:    'Sora', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

/* ────────────────────────────────────────
   NAVBAR
──────────────────────────────────────── */
.navbar {
  background: #fff;
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.07);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.brand-name span { color: var(--blue-light); }

.brand-tagline {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

.navbar-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 13px !important;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue-light);
  background: rgba(59, 130, 246, 0.07);
}

.dropdown-menu {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  padding: 8px;
  min-width: 220px;
}

.dropdown-item {
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.dropdown-item i { color: var(--blue-light); font-size: 0.95rem; }
.dropdown-item:hover { background: rgba(59, 130, 246, 0.08); color: var(--blue); }

/* Navbar Buttons */
.btn-contact {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.35);
  color: #fff;
}

.btn-portal {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--blue-light);
  transition: background 0.2s, transform 0.2s;
}

.btn-portal:hover {
  background: rgba(59, 130, 246, 0.06);
  transform: translateY(-1px);
  color: var(--blue);
}

/* ────────────────────────────────────────
   HERO SECTION  (White / Light Theme)
──────────────────────────────────────── */
.hero {
  background: #ffffff;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Soft radial glow — matches original white hero look */
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.055) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after { display: none; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 10px;
}

/* Orange gradient accent text — mirrors the reference design */
.hero h1 .gradient-text {
  background: linear-gradient(90deg, #F97316 10%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 560px;
  margin: 18px auto 32px;
  line-height: 1.75;
}

/* Trust Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-badge i { color: var(--blue-light); }

/* Active badge = purple pill (matches original "Pay-as-you-grow") */
.hero-badge.active {
  background: linear-gradient(135deg, #7B2FBE, #9B4DCA);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(123, 47, 190, 0.3);
}

.hero-badge.active i { color: #fff; }

/* CTA Buttons */
.hero-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
  color: #fff;
}

.btn-hero-secondary {
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-hero-secondary:hover {
  border-color: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Stats Row */
.stats-row {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 56px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ────────────────────────────────────────
   CLIENT LOGO SLIDER
──────────────────────────────────────── */
.clients-section {
  padding: 60px 0;
  background: var(--light-bg);
  overflow: hidden;
}

.clients-section h6 {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.slider-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: slideLogos 100s linear infinite;
}

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

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

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  transition: filter 0.3s;
  cursor: default;
  min-width: 160px;
}

.logo-slide img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-slide:hover { filter: grayscale(0%) opacity(1); }


/* ────────────────────────────────────────
   SHARED SECTION ELEMENTS
──────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.gradient-bar {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ────────────────────────────────────────
   SERVICES SECTION
──────────────────────────────────────── */
#services { padding: 80px 0; background: #fff; }

.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  height: 100%;
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  box-shadow: 0 16px 48px rgba(30, 64, 175, 0.12);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

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

.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Service icon color variants */
.si-blue   { background: rgba(59, 130, 246, 0.1); color: var(--blue-light); }
.si-cyan   { background: rgba(6, 182, 212, 0.1);  color: var(--accent); }
.si-violet { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.si-green  { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.si-rose   { background: rgba(244, 63, 94, 0.1);  color: #F43F5E; }
.si-amber  { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.si-indigo { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.si-teal   { background: rgba(20, 184, 166, 0.1); color: #14B8A6; }

.service-card h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-top: 16px;
  text-decoration: none;
  transition: gap 0.2s;
}

.service-card:hover .learn-more { gap: 8px; }

/* ────────────────────────────────────────
   SOLUTIONS SECTION
──────────────────────────────────────── */
#solutions { padding: 80px 0; background: var(--light-bg); }

.solution-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.sol-tab {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sol-tab.active,
.sol-tab:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.25);
}

.sol-panel { display: none; }
.sol-panel.active { display: flex; }

.sol-img-col {
  background: linear-gradient(135deg, #1E293B, #0F3460);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.sol-img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.2), transparent 60%);
}

.sol-big-icon {
  font-size: 5rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.sol-content h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.sol-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.sol-feature-list { list-style: none; padding: 0; margin: 0 0 24px; }

.sol-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
  padding: 6px 0;
}

.sol-feature-list li i { color: var(--blue-light); margin-top: 1px; flex-shrink: 0; }

/* ────────────────────────────────────────
   WHY US SECTION
──────────────────────────────────────── */
#why-us { padding: 80px 0; background: #fff; }

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 18px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.why-num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.why-card h5 { font-weight: 700; font-size: 1rem; color: var(--dark); margin: 10px 0 8px; }
.why-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ────────────────────────────────────────
   TESTIMONIALS SECTION
──────────────────────────────────────── */
#testimonials {
  padding: 80px 0;
  background: linear-gradient(160deg, #0F172A, #1E293B);
}

#testimonials .section-title  { color: #fff; }
#testimonials .section-subtitle { color: #94A3B8; }
#testimonials .section-eyebrow  { color: #60A5FA; }

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  transition: background 0.25s;
}

.testi-card:hover { background: rgba(255, 255, 255, 0.1); }

.testi-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 14px; }

.testi-text {
  color: #CBD5E1;
  font-size: 0.9rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 0.9rem; flex-shrink: 0;
}

.testi-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: #64748B; }

/* ────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────── */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue) 0%, #06B6D4 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

#cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

#cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.btn-cta-white {
  background: #fff; color: var(--blue);
  font-weight: 700; font-size: 1rem;
  padding: 15px 36px; border-radius: 12px; border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: var(--blue);
}

.btn-cta-outline {
  background: transparent; color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 15px 36px; border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s, transform 0.2s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #fff;
}

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
footer {
  background: #050D1A;
  color: #94A3B8;
  padding: 70px 0 0;
}

.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-name { color: #fff; }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #64748B;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8; font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--blue-light);
  color: #fff;
  border-color: transparent;
}

.footer-heading {
  font-weight: 700; color: #fff;
  font-size: 0.875rem; letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #64748B; text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}

.footer-links a:hover { color: #60A5FA; }
.footer-links a i { font-size: 0.75rem; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: #64748B;
  margin-bottom: 14px; line-height: 1.5;
}

.footer-contact-item i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #475569;
}

.footer-bottom a { color: #475569; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #60A5FA; }

.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60A5FA; font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}

/* ────────────────────────────────────────
   CHAT WIDGET
──────────────────────────────────────── */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; display: flex;
  flex-direction: column; align-items: flex-end; gap: 10px;
}

.chat-popup {
  background: #fff; border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 18px 20px; width: 230px;
  border: 1.5px solid var(--border);
  transform: scale(0.85) translateY(12px);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.chat-popup.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.chat-popup .status { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.chat-popup .dot    { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse 1.5s infinite; }
.chat-popup .offline .dot { background: #94A3B8; animation: none; }
.chat-popup .status-label { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.chat-popup .sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }

.chat-btn {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; border-radius: 50%; font-size: 1.4rem;
  box-shadow: 0 6px 22px rgba(30, 64, 175, 0.4);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5);
}

/* ────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero > .container > * {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero > .container > *:nth-child(1) { animation-delay: 0.05s; }
.hero > .container > *:nth-child(2) { animation-delay: 0.13s; }
.hero > .container > *:nth-child(3) { animation-delay: 0.22s; }
.hero > .container > *:nth-child(4) { animation-delay: 0.32s; }
.hero > .container > *:nth-child(5) { animation-delay: 0.42s; }

/* ────────────────────────────────────────
   RESPONSIVE OVERRIDES
──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 70px 0 50px; }
  .stats-row { padding: 24px 20px; }
  .sol-panel.active { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
  .hero-badges { gap: 10px; }
  .hero-ctas   { flex-direction: column; align-items: center; }
  .logo-slide  { padding: 0 24px; }
}
