*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
.btn, .cta-form-submit, .nav-cta, .sticky-bar-btn, .hamburger, .faq-question, .announcement-close, .sticky-bar-close { touch-action: manipulation; }

:root {
  --blue: #3366FF; --blue-accent: #60A5FA; --blue-light: #93C5FD;
  --navy: #0A0E27; --navy-dark: #070B1A; --ice: #E8F0FE;
  --white: #FFFFFF; --black: #111827; --gray-600: #6B7280; --gray-400: #9CA3AF; --gray-200: #E5E7EB;
  --font: 'Inter', system-ui, sans-serif;
  --fs-hero: clamp(2.5rem, 5vw, 4rem); --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.125rem, 2vw, 1.5rem); --fs-body: 1rem; --fs-sm: 0.875rem;
  --max-w: 1200px; --radius: 12px; --btn-radius: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06); --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15); --shadow-glow: 0 0 30px rgba(51,102,255,0.3);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); color: var(--black); line-height: 1.7; overflow-x: hidden; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; } .reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 250ms; } .reveal-delay-4 { transition-delay: 300ms; }
.reveal-delay-5 { transition-delay: 300ms; }

/* ─── SECTION TITLES ─── */
.section-label { font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.section-label::before, .section-label::after { content: ''; width: 30px; height: 2px; background: var(--blue); opacity: 0.4; }
.section-label-left { justify-content: flex-start; }
.section-label-left::after { display: none; }
.section-title { font-size: var(--fs-h2); font-weight: 800; line-height: 1.2; margin-bottom: 16px; text-align: center; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; margin: 0 auto 48px; text-align: center; line-height: 1.7; }
.section-title-light { color: var(--white); }
.section-subtitle-light { color: rgba(255,255,255,0.7); }

/* ─── FOCUS VISIBLE ─── */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--blue-accent); outline-offset: 3px; }
.faq-question:focus-visible { outline-offset: -2px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--btn-radius); font-family: var(--font); font-size: var(--fs-body); font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: #2952cc; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.hero-link-cta { color: rgba(255,255,255,0.65); font-size: var(--fs-sm); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.hero-link-cta:hover { color: var(--white); }
.hero-link-cta svg { width: 14px; height: 14px; }
.hero-ctas { display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.btn svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-primary::after, .btn-white::after { content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); transform: skewX(-15deg); animation: ctaShimmer 3.5s ease-in-out infinite; pointer-events: none; }
.btn-white::after { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent); animation-delay: 0.8s; }
@keyframes ctaShimmer { 0%, 60%, 100% { left: -120%; } 38% { left: 160%; } }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: linear-gradient(90deg, #1a3a8a 0%, var(--blue) 50%, #1a3a8a 100%); height: 44px; overflow: hidden; transition: height 0.4s var(--ease), opacity 0.4s ease; }
.announcement-bar.dismissed { height: 0; opacity: 0; pointer-events: none; }
.announcement-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 44px; display: flex; align-items: center; justify-content: center; gap: 16px; position: relative; }
.announcement-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.announcement-icon { width: 14px; height: 14px; color: #FCD34D; flex-shrink: 0; }
.announcement-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #FCD34D; font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 2px 10px; border-radius: 50px; white-space: nowrap; }
.announcement-text { font-size: 0.82rem; color: rgba(255,255,255,0.9); line-height: 1; margin: 0; text-align: center; }
.announcement-text strong { color: var(--white); font-weight: 700; }
.announcement-link { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.4); transition: text-decoration-color 0.2s; }
.announcement-link:hover { text-decoration-color: var(--white); }
.announcement-close { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; flex-shrink: 0; }
.announcement-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.announcement-close svg { width: 13px; height: 13px; }
@media (max-width: 768px) { .announcement-left { display: none; } .announcement-text { font-size: 0.75rem; } .announcement-close { right: 12px; } }

/* ─── NAVBAR ─── */
.navbar { position: fixed; top: 44px; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, top 0.4s ease; }
.navbar.bar-hidden { top: 0; }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.navbar .container { display: flex; align-items: center; justify-content: center; }
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: var(--fs-sm); font-weight: 500; color: var(--white); position: relative; transition: color 0.3s; }
.navbar.scrolled .nav-links a { color: var(--black); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--white); color: var(--blue); padding: 10px 24px; border-radius: var(--btn-radius); font-weight: 600; font-size: var(--fs-sm); transition: all 0.3s ease; }
.navbar.scrolled .nav-cta { background: var(--blue); color: var(--white); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.hamburger { display: none !important; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; border-radius: 2px; }
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transition: right 0.4s var(--ease); z-index: 999; }
.mobile-nav.open { right: 0; }
.mobile-nav a { color: var(--white); font-size: 1.5rem; font-weight: 600; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; background-color: #070b1a; overflow: hidden; padding: clamp(160px, 20vh, 200px) 0 clamp(100px, 12vh, 140px); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; pointer-events: none; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(7,11,26,0.72); pointer-events: none; z-index: 1; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--btn-radius); padding: 8px 20px; font-size: 0.8rem; color: rgba(255,255,255,0.95); margin-bottom: 28px; backdrop-filter: blur(10px); letter-spacing: 0.3px; }
.hero-badge svg { width: 16px; height: 16px; color: var(--blue-accent); }
.hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--blue-accent), #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
/* .hero-ctas — rule lives in the buttons block above (gap:20px, align-items:center) */
.hero-trust { font-size: 0.8rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.hero-trust span { display: flex; align-items: center; gap: 5px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--blue-accent); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: flex-end; padding: 40px 0 40px 20px; }
.hero-visual-img { width: 100%; max-width: 500px; border-radius: 20px; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes heroGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.particle { position: absolute; width: 6px; height: 6px; background: rgba(255,255,255,0.15); border-radius: 50%; animation: drift linear infinite; }
@keyframes drift { 0% { transform: translateY(0) translateX(0); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(-100vh) translateX(40px); opacity: 0; } }

/* ─── WAVE DIVIDER ─── */
.wave-divider { position: relative; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; }

/* ─── TRUSTED BY ─── */
.trusted { padding: 36px 0; background: var(--white); overflow: hidden; }
.trusted-label { text-align: center; font-size: 0.7rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px; }
.logo-carousel { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); }
.logo-track { display: flex; align-items: center; gap: 0; animation: scroll-logos 32s linear infinite; width: max-content; }
.logo-track:hover { animation-play-state: paused; }
.logo-item { display: flex; align-items: center; height: 48px; padding: 0 28px; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); margin: 0 10px; opacity: 0.55; transition: all 0.3s ease; flex-shrink: 0; font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--black); white-space: nowrap; box-shadow: var(--shadow-sm); }
.logo-item:hover { opacity: 1; border-color: var(--blue); color: var(--blue); box-shadow: 0 4px 16px rgba(51,102,255,0.12); transform: translateY(-2px); }
.logo-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gray-200); flex-shrink: 0; margin: 0 6px; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SERVICES ─── */
.services { padding: clamp(60px, 8vw, 120px) 0; background: var(--white); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--gray-200); position: relative; overflow: hidden; transition: all 0.4s ease; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--ice); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.35s ease, box-shadow 0.35s ease; }
.service-icon svg { width: 26px; height: 26px; color: var(--blue); transition: transform 0.35s var(--ease), color 0.35s ease; }
.service-card:hover .service-icon { background: var(--blue); box-shadow: 0 8px 24px rgba(51,102,255,0.3); }
.service-card:hover .service-icon svg { color: var(--white); transform: scale(1.12) rotate(-6deg); }
.service-card h3 { font-size: var(--fs-h3); font-weight: 700; margin-bottom: 10px; color: var(--black); }
.service-card p { font-size: var(--fs-sm); color: var(--gray-600); line-height: 1.7; }

/* ─── PROCESS ─── */
.process { padding: clamp(60px, 8vw, 120px) 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 16.66%; right: 16.66%; height: 2px; background: repeating-linear-gradient(90deg, var(--blue) 0, var(--blue) 8px, transparent 8px, transparent 16px); opacity: 0.3; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--blue); background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.5rem; font-weight: 800; color: var(--blue); transition: all 0.4s ease; }
.step-card:hover .step-number { background: var(--blue); color: var(--white); box-shadow: var(--shadow-glow); }
.step-icon { margin: 0 auto 16px; width: 44px; height: 44px; color: var(--blue); }
.step-card h3 { font-size: var(--fs-h3); font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: var(--fs-sm); color: var(--gray-600); max-width: 300px; margin: 0 auto; line-height: 1.7; }

/* ─── RESULTS ─── */
.results { padding: clamp(24px, 3vw, 48px) 0; background: var(--navy); position: relative; overflow: hidden; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.result-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 36px 24px; text-align: center; backdrop-filter: blur(10px); transition: all 0.4s ease; }
.result-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(51,102,255,0.3); }
.result-icon { margin: 0 auto 16px; width: 44px; height: 44px; color: var(--blue-accent); }
.result-number { font-size: 2.5rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.result-label { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); }

/* ─── TEAM SECTION ─── */
.team-section { padding: clamp(60px, 8vw, 120px) 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.team-card { text-align: center; }
.team-card-img { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; border: 4px solid var(--ice); box-shadow: 0 8px 28px rgba(51,102,255,0.12); transition: box-shadow 0.3s, transform 0.3s; }
.team-card:hover .team-card-img { box-shadow: 0 12px 36px rgba(51,102,255,0.22); transform: translateY(-4px); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card-info h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card-info p { font-size: 0.82rem; color: var(--blue); font-weight: 600; letter-spacing: 0.3px; }
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .team-card-img { width: 120px; height: 120px; } }

/* ─── OUR WORK / PORTFOLIO ─── */
.our-work { padding: clamp(60px, 8vw, 120px) 0; background: var(--ice); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.portfolio-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(51,102,255,0.82); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.portfolio-overlay span { color: var(--white); font-weight: 700; font-size: 1rem; letter-spacing: 0.5px; text-transform: uppercase; }
.portfolio-tag { position: absolute; bottom: 12px; left: 12px; z-index: 2; background: rgba(10,14,39,0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); pointer-events: none; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ─── CASES ─── */
.cases { padding: clamp(60px, 8vw, 120px) 0; background: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.4s ease; background: var(--white); }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-img { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: #1a3a8a; }
.case-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.case-card:hover .case-img img { transform: scale(1.04); }
.case-tag { position: absolute; top: 16px; left: 16px; background: var(--white); color: var(--blue); padding: 4px 14px; border-radius: var(--btn-radius); font-size: 0.75rem; font-weight: 600; }
.case-body { padding: 24px; display: flex; flex-direction: column; }
.case-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.case-metric { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.case-metric svg { width: 16px; height: 16px; }
.case-link { font-size: var(--fs-sm); font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s ease; margin-top: auto; padding-top: 12px; }
.case-link:hover { gap: 10px; }
.case-link svg { width: 16px; height: 16px; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: clamp(60px, 8vw, 120px) 0; background: var(--ice); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote-icon { width: 40px; height: 40px; color: var(--blue); opacity: 0.25; margin: 0 auto 20px; }
.testimonial-text { font-size: 1.1rem; line-height: 1.8; color: var(--black); margin-bottom: 24px; font-style: italic; }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-accent)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 1.1rem; margin: 0 auto 12px; position: relative; border: 3px solid rgba(51,102,255,0.15); box-shadow: 0 0 0 5px rgba(51,102,255,0.08); }
.testimonial-avatar::after { content: '\2713'; position: absolute; bottom: -2px; right: -3px; width: 20px; height: 20px; border-radius: 50%; background: #10B981; color: white; font-size: 0.6rem; font-weight: 900; line-height: 20px; text-align: center; border: 2px solid var(--white); }
.testimonial-avatar-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-accent)); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; border: 3px solid rgba(51,102,255,0.15); box-shadow: 0 0 0 5px rgba(51,102,255,0.08); }
.testimonial-avatar-icon svg { width: 28px; height: 28px; color: var(--white); }
.testimonial-name { font-weight: 700; font-size: var(--fs-body); color: var(--black); }
.testimonial-role { font-size: var(--fs-sm); color: var(--gray-600); }
.testimonial-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; color: #FBBF24; fill: #FBBF24; }
.testimonial-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); border: none; cursor: pointer; transition: all 0.3s; }
.testimonial-dot.active { background: var(--blue); width: 28px; border-radius: 5px; }
.testimonial-arrows { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.testimonial-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.testimonial-arrow:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.testimonial-arrow svg { width: 18px; height: 18px; }

/* ─── REVIEW BADGES (testimonials) ─── */
.review-badges { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.review-badge-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 12px 20px; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s; }
a.review-badge-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rbi-stars { display: flex; gap: 2px; }
.rbi-stars svg { width: 13px; height: 13px; }
.rbi-info { display: flex; flex-direction: column; gap: 1px; }
.rbi-info strong { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.rbi-info span { font-size: 0.7rem; color: var(--gray-400); }
.rbi-divider { width: 1px; height: 36px; background: var(--gray-200); }
.rbi-source { font-size: 0.75rem; font-weight: 700; color: var(--gray-600); border-left: 3px solid var(--blue); padding-left: 10px; }

/* ─── FAQ ─── */
.faq-section { padding: clamp(60px, 8vw, 120px) 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--black); transition: color 0.3s; }
.faq-question:hover { color: var(--blue); }
.faq-question[aria-expanded="true"] { color: var(--blue); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.35s var(--ease); color: var(--blue); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 0 22px; font-size: var(--fs-sm); color: var(--gray-600); line-height: 1.85; }
.faq-answer p strong { color: var(--black); }

/* ─── CTA BANNER ─── */
.cta-banner { padding: clamp(80px, 10vw, 140px) 0; background: linear-gradient(135deg, #1a3a8a 0%, #3366FF 45%, #0A0E27 100%); position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(51,102,255,0.18), transparent 70%); top: 50%; left: 30%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.cta-left h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.cta-left-sub { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 28px; }
.cta-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; padding: 0; }
.cta-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.cta-checklist li svg { width: 16px; height: 16px; flex-shrink: 0; color: #34D399; margin-top: 2px; }
.cta-social-proof { display: flex; align-items: center; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.csp-stars { display: flex; gap: 2px; }
.csp-stars svg { width: 14px; height: 14px; }
.cta-social-proof span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.cta-social-proof strong { color: var(--white); }

/* ─── CONTACT FORM ─── */
.cta-form-wrap { position: relative; z-index: 2; }
.cta-form-card { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05); }
.cta-form-header { margin-bottom: 22px; }
.cta-form-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.cta-form-subhead { margin: 0; }
.spots-indicator { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--gray-600); }
.spots-dot { width: 8px; height: 8px; border-radius: 50%; background: #EF4444; display: inline-block; flex-shrink: 0; }
.spots-indicator strong { color: #EF4444; }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--black); }
.form-group input, .form-group select { padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-family: var(--font); font-size: 0.875rem; color: var(--black); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; appearance: none; }
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(51,102,255,0.1); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form-submit { width: 100%; padding: 14px 20px; border-radius: var(--btn-radius); background: var(--blue); color: var(--white); border: none; font-family: var(--font); font-size: 0.95rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s ease; margin-top: 4px; position: relative; overflow: hidden; }
.cta-form-submit svg { width: 16px; height: 16px; }
.cta-form-submit:hover { background: #2952cc; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.cta-form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.cta-form-submit::after { content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); transform: skewX(-15deg); animation: ctaShimmer 4s ease-in-out infinite 1.5s; pointer-events: none; }
.cta-form-submit:disabled::after { display: none; }
.form-disclaimer { font-size: 0.72rem; color: var(--gray-400); display: flex; align-items: center; gap: 5px; justify-content: center; margin: 6px 0 0; }
.form-disclaimer svg { width: 11px; height: 11px; flex-shrink: 0; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #059669, #34D399); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success-icon svg { width: 30px; height: 30px; color: var(--white); }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.form-success p { font-size: var(--fs-sm); color: var(--gray-600); line-height: 1.75; margin-bottom: 6px; }
.form-success-meta a { color: var(--blue); text-decoration: underline; }

/* ─── STICKY BAR ─── */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); transform: translateY(100%); transition: transform 0.4s var(--ease); padding: 14px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.3); }
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-bar-text { font-size: 0.875rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; flex: 1; }
.sticky-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: #EF4444; flex-shrink: 0; animation: pulseDot 1.5s ease-in-out infinite; }
.sticky-bar-text strong { color: var(--white); }
.sticky-bar-btn { padding: 10px 24px; border-radius: var(--btn-radius); background: var(--blue); color: var(--white); font-family: var(--font); font-size: 0.875rem; font-weight: 600; white-space: nowrap; transition: all 0.3s; flex-shrink: 0; }
.sticky-bar-btn:hover { background: #2952cc; transform: translateY(-1px); }
.sticky-bar-close { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.sticky-bar-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.sticky-bar-close svg { width: 13px; height: 13px; }

/* ─── CONTACT MODAL ─── */
.contact-modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.contact-modal[hidden] { display: none !important; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(10,14,39,0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); cursor: pointer; }
.contact-modal-box { position: relative; z-index: 1; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; border-radius: var(--radius); animation: modalIn 0.3s var(--ease); }
.contact-modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-200); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.contact-modal-close:hover { background: var(--gray-100); transform: rotate(90deg); }
.contact-modal-close svg { width: 15px; height: 15px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ─── URGENCY FLOAT CTA ─── */
.urgency-float { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); width: auto; max-width: min(660px, 88vw); z-index: 990; display: flex; align-items: center; justify-content: center; gap: 12px; background: var(--navy); border: 1px solid rgba(255,255,255,0.14); border-radius: 50px; padding: 10px 10px 10px 18px; box-shadow: 0 8px 28px rgba(0,0,0,0.28), 0 0 0 1px rgba(51,102,255,0.15); text-decoration: none; cursor: pointer; animation: urgencyAttention 3s ease-in-out infinite; }
.urgency-float:hover { animation-play-state: paused; transform: translateX(-50%) translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 2px rgba(51,102,255,0.45); }
@keyframes urgencyAttention {
  0%, 78%, 100% { transform: translateX(-50%) translateY(0) scale(1); box-shadow: 0 8px 28px rgba(0,0,0,0.28), 0 0 0 1px rgba(51,102,255,0.15); }
  84% { transform: translateX(-50%) translateY(-7px) scale(1.025); box-shadow: 0 18px 44px rgba(0,0,0,0.35), 0 0 0 3px rgba(51,102,255,0.55); }
  91% { transform: translateX(-50%) translateY(-3px) scale(1.01); box-shadow: 0 12px 34px rgba(0,0,0,0.3), 0 0 0 2px rgba(51,102,255,0.3); }
}
.urgency-float-dot { width: 9px; height: 9px; border-radius: 50%; background: #EF4444; flex-shrink: 0; animation: pulseDot 1.5s ease-in-out infinite; }
.urgency-float-text { font-size: 0.83rem; color: rgba(255,255,255,0.85); white-space: nowrap; }
.urgency-float-text strong { color: var(--white); }
.urgency-float-sub { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.urgency-float-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.18); flex-shrink: 0; }
.urgency-float-meta { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: rgba(255,255,255,0.8); white-space: nowrap; }
.urgency-float-meta svg { width: 13px; height: 13px; color: #FBBF24; flex-shrink: 0; }
.urgency-float-meta strong { color: var(--white); }
.urgency-float-btn { background: var(--blue); color: var(--white); font-family: var(--font); font-size: 0.82rem; font-weight: 700; padding: 9px 20px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.2px; flex-shrink: 0; }
/* Tablet: hide clock meta */
@media (max-width: 768px) { .urgency-float-meta.urgency-float-sub { display: none; } .urgency-float-divider:last-of-type { display: none; } }
/* Mobile: compact urgency float */
@media (max-width: 520px) { .urgency-float { bottom: 16px; padding: 9px 8px 9px 14px; gap: 8px; } .urgency-float-meta { display: none; } .urgency-float-divider { display: none; } .urgency-float-sub { display: none; } .urgency-float-btn { font-size: 0.78rem; padding: 8px 14px; } }
/* Hide sticky bar — urgency float handles all viewports */
.sticky-bar { display: none !important; }

/* ─── WHATSAPP IN FORM ─── */
.form-whatsapp-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0 12px; }
.form-whatsapp-divider::before, .form-whatsapp-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.form-whatsapp-divider span { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.btn-whatsapp-form { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px 20px; border-radius: var(--btn-radius); background: #f0fdf4; border: 1.5px solid #25D366; color: #15803d; font-family: var(--font); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-whatsapp-form:hover { background: #dcfce7; transform: translateY(-1px); }
.btn-whatsapp-form svg { width: 20px; height: 20px; color: #25D366; flex-shrink: 0; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float { position: fixed; bottom: 80px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 997; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.2s, box-shadow 0.2s; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 520px) { .whatsapp-float { bottom: 76px; right: 16px; width: 48px; height: 48px; } .whatsapp-float svg { width: 24px; height: 24px; } }

/* ─── CTA RESPONSIVE ─── */
@media (max-width: 968px) { .cta-grid { grid-template-columns: 1fr; } .cta-left { text-align: center; } .cta-social-proof { justify-content: center; } .cta-checklist { display: inline-flex; text-align: left; } }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } .cta-form-card { padding: 24px; } .form-group input, .form-group select { font-size: 16px; } .sticky-bar-text { display: none; } .sticky-bar-inner { justify-content: center; gap: 12px; } }

/* ─── FOOTER ─── */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { background: var(--blue); border-color: var(--blue); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }
.footer-social a:hover svg { color: var(--white); }
.footer h4 { font-size: var(--fs-sm); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links a { display: block; font-size: var(--fs-sm); color: rgba(255,255,255,0.5); padding: 6px 0; transition: all 0.3s; }
.footer-links a:hover { color: var(--blue-accent); transform: translateX(4px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: var(--fs-sm); color: rgba(255,255,255,0.5); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue-accent); flex-shrink: 0; margin-top: 3px; }

.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── HERO DASHBOARD VISUAL ─── */
.hero-dashboard { position: relative; animation: heroFloat 6s ease-in-out infinite; filter: drop-shadow(0 32px 64px rgba(0,0,0,0.5)); }
.hero-visual::before { content: ''; position: absolute; top: 50%; left: 40%; transform: translate(-50%,-50%); width: 360px; height: 360px; background: radial-gradient(circle, rgba(51,102,255,0.15), transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.dash-card { background: rgba(8,12,35,0.88); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 28px; backdrop-filter: blur(24px); box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(51,102,255,0.2), inset 0 1px 0 rgba(255,255,255,0.05); min-width: 340px; max-width: 420px; position: relative; z-index: 1; }
.dash-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot-red { background: #FF5F57; }
.dash-dot-yellow { background: #FEBC2E; }
.dash-dot-green { background: #28C840; }
.dash-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 4px; }
.dash-chart { margin-bottom: 20px; background: rgba(255,255,255,0.02); border-radius: 8px; padding: 8px; }
.dash-chart svg { width: 100%; height: auto; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; }
.dash-stat { text-align: center; }
.dash-stat-val { display: block; font-size: 1.1rem; font-weight: 800; color: var(--white); }
.dash-stat-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.dash-badge { position: absolute; background: rgba(10,14,39,0.9); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 8px 16px; font-size: 0.78rem; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 8px; backdrop-filter: blur(10px); white-space: nowrap; }
.dash-badge svg { width: 14px; height: 14px; color: var(--blue-accent); }
.dash-badge-live { top: -14px; right: 20px; color: #34D399; box-shadow: 0 4px 16px rgba(52,211,153,0.2); }
.dash-badge-growth { bottom: -14px; left: 20px; box-shadow: 0 4px 16px rgba(51,102,255,0.25); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; display: inline-block; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.4); } 50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); } }

/* ─── HERO SCROLL INDICATOR ─── */
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; z-index: 3; animation: scrollBob 2s ease-in-out infinite; cursor: pointer; text-decoration: none; }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── LOGO CAROUSEL — handled above in TRUSTED BY block ─── */

/* ─── SECTION CTA BLOCKS ─── */
.section-cta { display: flex; align-items: center; gap: 20px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--gray-200); flex-wrap: wrap; }
.section-cta p { font-size: var(--fs-sm); color: var(--gray-600); margin: 0; }
.section-cta-centered { justify-content: center; flex-direction: column; text-align: center; gap: 12px; padding-top: 0; border-top: none; margin-top: 48px; }
.section-cta-note { font-size: 0.78rem; color: var(--gray-400); }

/* ─── RESULTS QUALIFIER ─── */
.results-qualifier { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-bottom: 40px; letter-spacing: 0.5px; }

/* ─── RESULTS WAVES ─── */
.wave-top { margin-bottom: -2px; }
.wave-bottom { margin-top: 0; }

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--blue), var(--blue-accent), #a5b4fc); z-index: 9999; transition: width 0.08s linear; pointer-events: none; border-radius: 0 2px 2px 0; }

/* ─── ACTIVE NAV LINK ─── */
.nav-links a.active { color: var(--blue-accent) !important; }
.nav-links a.active::after { width: 100%; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual-img { max-width: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-card { min-width: 280px; max-width: 320px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dash-card { min-width: 260px; max-width: 100%; }
  .hero-dashboard { margin-top: 24px; }
  .dash-badge { display: none; }
  .hero-visual { justify-content: center; padding: 24px 0; }
  .section-cta { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  html { scroll-padding-top: 110px; }
  .section-subtitle { margin-bottom: 28px; }
  .hero { padding-top: 120px; padding-bottom: 60px; }
  .hero h1 br { display: none; }
  .hero-scroll { display: none; }
}

/* ─── SMALL PHONES (≤480px) ─── */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .hero { padding-top: 110px; padding-bottom: 50px; }
  .results-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 0; }
  .section-label { letter-spacing: 2px; }
  .section-subtitle { margin-bottom: 20px; }

  .hero-trust { flex-direction: column; gap: 8px; align-items: center; }
  .review-badges { flex-direction: column; align-items: center; gap: 10px; }
  .rbi-divider { display: none; }
}

/* ─── PREFERS REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none !important; background-size: 100% 100% !important; }
  .hero-dashboard, .hero-scroll { animation: none !important; }
  .logo-track { animation: none !important; }
  .particle { display: none !important; }
  .sticky-bar-dot { animation: none !important; }
  .btn-primary::after, .btn-white::after, .cta-form-submit::after { display: none !important; }
  .reveal { transition: opacity 0.3s ease !important; transform: none !important; }
}
