/* ============================================
   MMM MARKETERS — PREMIUM PPC LANDING PAGE
   Design System: Deep Navy + Electric Indigo
   ============================================ */

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

:root {
  --navy:       #050A1A;
  --navy-2:     #080F24;
  --navy-3:     #0D162E;
  --indigo:     #4F46E5;
  --indigo-light: #6366F1;
  --cyan:       #06B6D4;
  --gold:       #F59E0B;
  --green:      #10B981;
  --purple:     #8B5CF6;
  --white:      #FFFFFF;
  --white-60:   rgba(255,255,255,0.6);
  --white-30:   rgba(255,255,255,0.3);
  --white-10:   rgba(255,255,255,0.1);
  --white-6:    rgba(255,255,255,0.06);
  --glass:      rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --grad-main:  linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --grad-gold:  linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(79,70,229,0.3);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
}

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--white-60);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--trans);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,70,229,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-primary--lg { padding: 16px 36px; font-size: 1rem; }
.btn-primary--full { width: 100%; justify-content: center; padding: 18px; font-size: 1.05rem; border-radius: var(--r-md); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-wa:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.btn-wa--lg { padding: 16px 32px; font-size: 1rem; }
.btn-wa--header { padding: 10px 20px; font-size: 0.85rem; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--trans);
}

.site-header.scrolled {
  background: rgba(5,10,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-mmm { color: var(--white); }
.logo-marketers {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--trans);
}

.header-nav a:hover { color: var(--white); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: rgba(79,70,229,0.25);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(6,182,212,0.2);
  bottom: -50px; right: -50px;
  animation-delay: 3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(139,92,246,0.15);
  top: 40%; left: 50%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--white-60);
  margin-bottom: 32px;
  line-height: 1.7;
}

.trust-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.trust-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--white-60);
}

.check {
  color: var(--green);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -8px;
}

.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.av2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.av3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.av4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.stars { color: var(--gold); font-size: 0.9rem; }
.proof-text { font-size: 0.8rem; color: var(--white-60); }

/* ---- DASHBOARD MOCKUP ---- */
.hero-dashboard {
  position: relative;
}

.dashboard-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(79,70,229,0.2);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-dot--green { background: #10B981; }
.dash-dot--yellow { background: #F59E0B; }
.dash-dot--red { background: #EF4444; }

.dash-title {
  font-size: 0.8rem;
  color: var(--white-60);
  margin-left: 6px;
  font-weight: 500;
}

.dash-metrics { margin-bottom: 20px; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.metric-item {
  background: var(--white-6);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
}

.metric-label { font-size: 0.7rem; color: var(--white-60); margin-bottom: 6px; }

.metric-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-val--blue { color: var(--indigo-light); }
.metric-val--green { color: var(--green); }
.metric-val--purple { color: var(--purple); }

.metric-change { font-size: 0.7rem; font-weight: 600; }
.metric-change--up { color: var(--green); }
.metric-change--down { color: var(--cyan); }

.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-bottom: 12px;
}

.bar {
  flex: 1;
  background: rgba(99,102,241,0.4);
  border-radius: 3px 3px 0 0;
  transition: var(--trans);
}
.bar--active { background: var(--indigo-light); }

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--white-60);
}

.live-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.dash-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-badge {
  font-size: 0.75rem;
  background: var(--white-10);
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Floating notification cards */
.notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: floatNotif 4s ease-in-out infinite;
}

.notif-1 {
  right: -30px;
  top: 20px;
  animation-delay: 0s;
}
.notif-2 {
  left: -40px;
  bottom: 20px;
  animation-delay: 2s;
}

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

.notif-icon { font-size: 1.4rem; }
.notif-title { font-size: 0.8rem; font-weight: 600; }
.notif-sub { font-size: 0.7rem; color: var(--white-60); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--indigo), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-hint span { font-size: 0.7rem; color: var(--white-30); letter-spacing: 0.1em; }

/* ---- TRUST BAR ---- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--white-6);
}

.trust-bar-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tl {
  background: var(--white-6);
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ---- RESULTS COUNTERS ---- */
.results-section { background: var(--navy-2); }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.counter-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
}

.counter-card:hover {
  border-color: var(--indigo);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(79,70,229,0.2);
}

.counter-icon { font-size: 2rem; margin-bottom: 16px; }

.counter-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--white-60);
  font-weight: 500;
}

/* ---- SERVICES ---- */
.services-section { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(79,70,229,0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(79,70,229,0.15);
}

.service-card:hover .sc-glow {
  opacity: 1;
}

.sc-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-main);
  opacity: 0;
  transition: var(--trans);
}

.sc-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sc-cta {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--trans);
}

.sc-cta:hover { gap: 8px; }

/* ---- WHY SECTION ---- */
.why-section { background: var(--navy-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--trans);
}

.why-card:hover {
  border-color: rgba(6,182,212,0.4);
  transform: translateY(-4px);
}

.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; }

/* ---- CASE STUDIES ---- */
.cases-section { background: var(--navy); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--trans);
}

.case-card:hover { transform: translateY(-4px); border-color: rgba(79,70,229,0.4); }

.case-industry {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cyan);
  margin-bottom: 16px;
}

.case-challenge, .case-strategy {
  font-size: 0.85rem;
  color: var(--white-60);
  margin-bottom: 12px;
  line-height: 1.6;
}
.case-challenge strong, .case-strategy strong { color: var(--white); }

.case-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.cr-metric { text-align: center; }
.cr-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cr-label { font-size: 0.7rem; color: var(--white-60); margin-top: 4px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--navy-2); }

.testimonials-track-outer {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-card {
  min-width: calc(33.333% - 16px);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  flex-shrink: 0;
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.t-text {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.t-name { font-weight: 600; font-size: 0.9rem; }
.t-role { font-size: 0.8rem; color: var(--white-60); }

.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover { border-color: var(--indigo); background: var(--indigo); }

.t-dots {
  display: flex;
  gap: 6px;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white-30);
  cursor: pointer;
  transition: var(--trans);
}
.t-dot.active { background: var(--indigo); width: 24px; border-radius: 4px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(79,70,229,0.2) 0%, rgba(6,182,212,0.2) 100%);
  border-top: 1px solid rgba(79,70,229,0.3);
  border-bottom: 1px solid rgba(79,70,229,0.3);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h2 { font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { color: var(--white-60); }

.cta-banner-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--navy); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info { padding-top: 16px; }
.contact-info p { color: var(--white-60); margin-bottom: 32px; line-height: 1.7; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cm-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-decoration: none;
  transition: var(--trans);
}
.cm-item:hover { border-color: var(--indigo); transform: translateX(4px); }

.cm-icon { font-size: 1.4rem; }
.cm-label { font-size: 0.75rem; color: var(--white-60); }
.cm-val { font-weight: 600; color: var(--white); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tb {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.form-header { margin-bottom: 28px; }
.form-header h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-header p { font-size: 0.88rem; color: var(--white-60); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  position: relative;
  margin-bottom: 20px;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 18px 16px 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--trans);
  appearance: none;
  -webkit-appearance: none;
}

.field-group select {
  padding: 14px 16px;
  cursor: pointer;
}
.select-label { top: 50%; transform: translateY(-50%); }
.field-group select:focus ~ .select-label,
.field-group select:valid ~ .select-label {
  top: 6px;
  transform: none;
  font-size: 0.7rem;
  color: var(--cyan);
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--indigo);
  background: rgba(79,70,229,0.1);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.field-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--white-60);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--trans);
}

.field-group textarea ~ label {
  top: 20px;
  transform: none;
}

.field-group input:focus ~ label,
.field-group input:not(:placeholder-shown) ~ label,
.field-group textarea:focus ~ label,
.field-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: none;
  font-size: 0.7rem;
  color: var(--cyan);
}

.field-err {
  display: block;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  min-height: 16px;
}

.field-group.error input,
.field-group.error select {
  border-color: #EF4444;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-60);
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--white-60); margin-bottom: 24px; }

/* ---- FAQ ---- */
.faq-section { background: var(--navy-2); }

.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--trans);
}

.faq-item.open { border-color: rgba(79,70,229,0.4); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--trans);
}

.faq-q:hover { color: var(--cyan); }
.faq-arrow { font-size: 1.1rem; transition: var(--trans); flex-shrink: 0; color: var(--indigo); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.8;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-3);
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 20px 40px;
}

.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; margin-bottom: 24px; }

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

.fsoc {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--trans);
  text-transform: uppercase;
}
.fsoc:hover { border-color: var(--indigo); color: var(--white); background: var(--indigo); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--white-60);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--trans);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--white-60);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: var(--white-60); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
  transition: var(--trans);
}

.wa-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-3);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---- STICKY MOBILE BAR ---- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(5,10,26,0.97);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}

.smb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: var(--trans);
}

.smb-btn--wa { background: #25D366; color: white; }
.smb-btn--call { background: var(--indigo); color: white; }
.smb-btn--quote {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
}

.smb-btn:active { transform: scale(0.96); }

/* ---- POPUPS ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,10,26,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.popup-box {
  background: var(--navy-3);
  border: 1px solid rgba(79,70,229,0.4);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(79,70,229,0.2);
}

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.popup-close:hover { background: rgba(239,68,68,0.2); border-color: #EF4444; }

.popup-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--indigo-light);
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(79,70,229,0.3);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.popup-badge--gold {
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
}

.popup-box h2 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.2; }
.popup-box p { color: var(--white-60); font-size: 0.9rem; margin-bottom: 24px; }

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-form input {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  transition: var(--trans);
}
.popup-form input:focus { border-color: var(--indigo); }
.popup-form input::placeholder { color: var(--white-30); }

.popup-note {
  font-size: 0.78rem;
  color: var(--white-30);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-dashboard { display: none; }
  .notif { display: none; }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
  .t-card { min-width: calc(50% - 12px); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .hero { padding: 100px 0 40px; min-height: auto; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-wa { text-align: center; justify-content: center; }
  .trust-checks { grid-template-columns: 1fr; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .counter-card { padding: 24px 16px; }
  .counter-number { font-size: 2rem; }

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

  .t-card { min-width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

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

  /* Show sticky mobile bar */
  .sticky-mobile-bar { display: flex; }

  /* Push WA float up */
  .wa-float { bottom: 80px; right: 16px; width: 52px; height: 52px; }

  /* Header simplify */
  .header-ctas .btn-primary { display: none; }
  .header-ctas .btn-wa--header { padding: 10px 16px; font-size: 0.8rem; }

  .cta-banner-inner { padding: 40px 20px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .cta-banner-btns .btn-primary, .cta-banner-btns .btn-wa { justify-content: center; }
}

@media (max-width: 480px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .popup-box { padding: 28px 20px; }
  .popup-box h2 { font-size: 1.2rem; }
  h1 { font-size: 1.9rem; }
  .hero-headline { font-size: 1.9rem; }
  .section-title { font-size: 1.5rem; }
}

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