/* ===================================================
   Dealership 360 Academy — Lead Magnet Landing Page
   styles.css
   =================================================== */

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

:root {
  --blue:        #086E9D;
  --blue-light:  #0e8fc9;
  --blue-pale:   #dff0f9;
  --blue-dark:   #054f72;
  --orange:      #FF8F1F;
  --orange-light:#ffab57;
  --orange-pale: #fff4e6;
  --dark:        #0a0e12;
  --dark2:       #10161e;
  --white:       #ffffff;
  --off:         #f5f7fa;
  --muted:       #6b7280;
  --border:      rgba(8,110,157,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* ─── URGENCY BAR ─── */
.urgency-bar {
  background: linear-gradient(90deg, #054f72, #086E9D, #0e8fc9);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.urgency-bar strong { color: #FFD97A; font-weight: 700; }

/* ─── NAV ─── */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-cta {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  background: #fff;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(8,110,157,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 10% 80%, rgba(255,143,31,0.045) 0%, transparent 55%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,110,157,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,110,157,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.75rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  animation: fadeUp 0.55s ease both;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1.4rem;
  letter-spacing: -0.03em;
  animation: fadeUp 0.55s 0.08s ease both;
}
.hero h1 em   { color: var(--orange); font-style: normal; }
.hero h1 .line-blue { color: var(--blue); }
.hero-sub {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
  animation: fadeUp 0.55s 0.16s ease both;
  font-family: 'DM Sans', sans-serif;
}

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 12px 40px rgba(8,110,157,0.1), 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  animation: fadeUp 0.55s 0.1s ease both;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--orange));
  border-radius: 12px 12px 0 0;
}
.hfc-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
}
.hfc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hfc-title em { color: var(--blue); font-style: normal; }
.hfc-sub {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.hfc-perks {
  list-style: none;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hfc-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}
.hfc-perks li .ck {
  width: 18px; height: 18px; min-width: 18px;
  background: rgba(8,110,157,0.1);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.hfc-perks li .ck img {
  width: 9px; height: 9px;
}

/* Kajabi embed form — scoped overrides to match page style */
.hero-form-card iframe,
#popupFormView iframe {
  width: 100% !important;
  border: none !important;
}

/* Hero proof numbers */
.hero-proof {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.24s ease both;
}
.proof-item { text-align: left; }
.proof-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.73rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
.proof-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--dark);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  padding: 0 0.75rem;
  text-transform: uppercase;
}
.marquee-dot { color: var(--orange); font-size: 0.6rem; }

/* ─── SHARED ─── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-family: 'DM Sans', sans-serif;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.13;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.section-title em   { color: var(--orange); font-style: normal; }
.section-title .blue { color: var(--blue); }

/* ─── WHAT'S INSIDE ─── */
.inside { padding: 6rem 2rem; background: var(--off); }
.inside-inner { max-width: 1100px; margin: 0 auto; }
.inside-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.inside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.inside-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(8,110,157,0.08);
}
.inside-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.inside-card:hover::after { transform: scaleX(1); }
.inside-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(8,110,157,0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.inside-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.inside-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.inside-cta { margin-top: 3rem; text-align: center; }

/* ─── SOCIAL PROOF STRIP ─── */
.proof-strip { background: var(--blue); padding: 3.5rem 2rem; }
.proof-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.ps-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ps-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 500;
}

/* ─── ABOUT MAX ─── */
.about { padding: 6rem 2rem; background: #fff; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8,110,157,0.14);
  position: relative;
  aspect-ratio: 3/4;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-nameplate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(5,25,40,0.95));
  padding: 3rem 1.5rem 1.5rem;
}
.about-nameplate h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.about-nameplate p {
  font-size: 0.75rem;
  color: #86c9e8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
  font-family: 'DM Sans', sans-serif;
}
.about-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(255,143,31,0.4);
}
.about-content p {
  font-size: 0.97rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.books-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.5rem; }
.book-pill {
  background: var(--blue-pale);
  border: 1px solid rgba(8,110,157,0.25);
  color: var(--blue-dark);
  font-size: 0.76rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

/* ─── HOW IT WORKS ─── */
.how { padding: 6rem 2rem; background: var(--off); }
.how-inner { max-width: 1000px; margin: 0 auto; }
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(8,110,157,0.08));
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  align-items: start;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(8,110,157,0.3);
}
.step-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── MAX SAYS ─── */
.maxsays { background: var(--dark); padding: 6rem 2rem; position: relative; overflow: hidden; }
.maxsays-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(8,110,157,0.15) 0%, transparent 65%);
}
.maxsays-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.maxsays-portrait {
  width: 220px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(8,110,157,0.6);
  box-shadow: 0 0 0 6px rgba(8,110,157,0.1);
}
.maxsays-portrait img {
  width: 100%; height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.maxsays-text blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.maxsays-text blockquote em { color: var(--orange); font-style: normal; }
.maxsays-credit { display: flex; align-items: center; gap: 1rem; }
.maxsays-credit-line { width: 40px; height: 2px; background: var(--orange); }
.maxsays-credit-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.maxsays-credit-name strong { color: #fff; font-weight: 700; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 6rem 2rem; background: #fff; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(8,110,157,0.07);
}
.testi-quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  color: rgba(8,110,157,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.testi-stars img { width: 16px; height: 16px; }
.testi-quote {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.78;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testi-role { font-size: 0.76rem; color: var(--muted); margin-top: 1px; }

/* ─── FINAL CTA ─── */
.final-cta { padding: 7rem 2rem; background: var(--off); }
.final-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.final-cta-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.final-cta-left h2 em { color: var(--orange); font-style: normal; }
.final-cta-left p { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.final-cta-disclaimer {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.final-cta-disclaimer img { width: 12px; height: 12px; opacity: 0.5; }
.final-cta-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: relative;
  aspect-ratio: 3/4;
}
.final-cta-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.final-cta-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,25,40,0.9) 100%);
}
.final-cta-img-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
}
.final-cta-img-caption p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.5;
}
.final-cta-img-caption strong { color: #fff; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(8,110,157,0.3);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-orange {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(255,143,31,0.35);
}
.btn-orange:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-icon { width: 16px; height: 16px; filter: brightness(0) invert(1); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.25rem 2rem;
  text-align: center;
}
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
footer strong { color: rgba(255,255,255,0.65); }

/* ─── POPUP ─── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,20,35,0.6);
  backdrop-filter: blur(5px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay.active { display: flex; }
.popup-modal {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  animation: popupIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.popup-top-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--orange));
}
.popup-body { padding: 2.5rem; }
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: var(--off);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.popup-close:hover { background: #ffe8d6; }
.popup-close img { width: 14px; height: 14px; }
.popup-eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.65rem;
}
.popup-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem; font-weight: 800;
  color: var(--dark); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.popup-title em { color: var(--blue); font-style: normal; }
.popup-sub { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.popup-perks { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.popup-perks li {
  display: flex; align-items: flex-start;
  gap: 0.6rem; font-size: 0.85rem;
  color: #374151; line-height: 1.5;
}
.popup-perks li .ck {
  width: 18px; height: 18px; min-width: 18px;
  background: rgba(8,110,157,0.1);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.popup-perks li .ck img { width: 9px; height: 9px; }
.popup-form { display: flex; flex-direction: column; gap: 0.8rem; }
.popup-disclaimer {
  text-align: center; font-size: 0.74rem;
  color: #9ca3af; margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
}
.popup-disclaimer img { width: 11px; opacity: 0.5; }
.popup-success { display: none; text-align: center; padding: 1rem 0 0.5rem; }
.popup-success .success-icon {
  width: 64px; height: 64px;
  background: rgba(8,110,157,0.1);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.popup-success .success-icon img { width: 28px; height: 28px; }
.popup-success h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--dark); margin-bottom: 0.5rem;
}
.popup-success p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 800px) {
  .hero-inner           { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .inside-grid          { grid-template-columns: 1fr 1fr; }
  .proof-strip-inner    { grid-template-columns: repeat(2, 1fr); }
  .maxsays-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .maxsays-portrait     { width: 160px; }
  .final-cta-inner      { grid-template-columns: 1fr; }
  .final-cta-img-col    { display: none; }
  nav                   { padding: 0.85rem 1.25rem; }
  .nav-logo img         { height: 34px; }
  .nav-cta              { font-size: 0.72rem; padding: 0.5rem 1rem; }
}
@media (max-width: 560px) {
  .inside-grid          { grid-template-columns: 1fr; }
  .proof-strip-inner    { grid-template-columns: 1fr 1fr; }
}
