/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --primary:       #1B4F8A;
  --primary-light: #2D6FBF;
  --accent:        #3B9EE0;
  --emergency:     #E8561A;
  --emergency-dk:  #C4481A;
  --bg-dark:       #0A0E14;
  --bg-mid:        #111820;
  --bg-light:      #F4F7FA;
  --text-dark:     #1A2332;
  --text-muted:    #5A6A7E;
  --white:         #FFFFFF;
  --border:        #D0DCE8;
  --border-dark:   rgba(255,255,255,0.08);
  --whatsapp:      #25D366;

  --nav-height: 72px;
  --section-pad: 96px;
  --radius: 12px;
  --shadow-card: 0 4px 20px rgba(27, 79, 138, 0.08);
  --shadow-card-hover: 0 12px 36px rgba(27, 79, 138, 0.16);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}

.section-h2-dark {
  color: var(--text-dark);
}

.h2-accent {
  color: var(--emergency);
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emergency);
  background: rgba(232, 86, 26, 0.1);
  border: 1px solid rgba(232, 86, 26, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-tag-dark {
  color: var(--primary);
  background: rgba(27, 79, 138, 0.08);
  border-color: rgba(27, 79, 138, 0.15);
}

/* ===========================
   SECTION PADDING
   =========================== */
.section-pad {
  padding: var(--section-pad) 0;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  min-height: 52px;
  padding: 0 28px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-emergency {
  background: var(--emergency);
  color: var(--white);
}

.btn-emergency:hover {
  background: var(--emergency-dk);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20ba58;
}

.btn-hero {
  min-height: 60px;
  padding: 0 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-coverage {
  min-height: 56px;
  padding: 0 32px;
}

.btn-cta-big {
  min-height: 64px;
  padding: 0 40px;
  font-size: 1.15rem;
  border-radius: 10px;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HERO LOAD ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

.anim-fade-up {
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-delay-1 { animation-delay: 0.05s; }
.anim-delay-2 { animation-delay: 0.18s; }
.anim-delay-3 { animation-delay: 0.34s; }
.anim-delay-4 { animation-delay: 0.50s; }
.anim-delay-5 { animation-delay: 0.65s; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 14, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--whatsapp);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.nav-cta {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.93rem;
  border-radius: 8px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 20, 0.92) 0%,
    rgba(10, 14, 20, 0.72) 60%,
    rgba(10, 14, 20, 0.55) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 80px;
  width: 100%;
}

.hero-content {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero-h1 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--white);
}

.h1-line-1 {
  display: block;
  font-size: clamp(4rem, 9vw, 7.5rem);
}

.h1-line-2 {
  display: block;
  font-size: clamp(4rem, 9vw, 7.5rem);
  color: var(--emergency);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px 13px;
}

.proof-pill i {
  color: var(--whatsapp);
  font-size: 0.8rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ===========================
   TICKER
   =========================== */
.ticker-wrap {
  background: var(--emergency);
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  padding: 0 20px;
  white-space: nowrap;
}

.ticker-item i {
  font-size: 0.85rem;
  opacity: 0.85;
}

.ticker-sep {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  line-height: 1;
  align-self: center;
}

/* ===========================
   WHY US — EDITORIAL
   =========================== */
.why-us {
  background: var(--bg-dark);
}

.editorial-header {
  margin-bottom: 52px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Left: hero feature card */
.ed-feature-hero {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.ed-feature-hero:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,86,26,0.25);
}

.ed-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 86, 26, 0.12);
  border: 1px solid rgba(232,86,26,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-icon i {
  font-size: 1.5rem;
  color: var(--emergency);
}

.ed-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ed-content p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 55ch;
  margin-bottom: 28px;
}

.ed-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.ed-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--emergency);
  letter-spacing: -0.03em;
  line-height: 1;
}

.ed-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

/* Right: mini features column */
.ed-features-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ed-feature-mini {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 20px 20px;
  transition: var(--transition);
}

.ed-feature-mini:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(59,158,224,0.2);
}

.ed-mini-icon {
  width: 40px;
  height: 40px;
  background: rgba(59,158,224,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ed-mini-icon i {
  font-size: 1rem;
  color: var(--accent);
}

.ed-feature-mini h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ed-feature-mini p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ===========================
   STEPS
   =========================== */
.steps {
  background: var(--bg-light);
}

.steps-header {
  margin-bottom: 52px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 120px 1px 1fr auto;
  align-items: center;
  gap: 0 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.step-row:last-child {
  border-bottom: none;
}

.step-row:hover .step-num-big {
  color: var(--emergency);
}

.step-num-big {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(27, 79, 138, 0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: var(--transition);
  text-align: center;
}

.step-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

.step-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(27, 79, 138, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-wrap i {
  font-size: 1.2rem;
  color: var(--primary);
}

.step-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.step-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emergency);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.step-cta-inline:hover {
  background: var(--emergency-dk);
}

.step-cta-inline:active {
  transform: scale(0.98);
}

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  background: var(--bg-dark);
}

.reviews-header {
  margin-bottom: 52px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Big review card */
.review-big-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  transition: var(--transition);
}

.review-big-card:hover {
  border-color: rgba(232,86,26,0.2);
}

.rbig-quote {
  font-size: 6rem;
  font-weight: 900;
  color: var(--emergency);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  display: block;
}

.rbig-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.reviewer-initials {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.ri-small {
  width: 42px;
  height: 42px;
  font-size: 0.8rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.reviewer-stars {
  margin-top: 4px;
  display: flex;
  gap: 3px;
}

.reviewer-stars i {
  color: #F59E0B;
  font-size: 0.82rem;
}

/* Side reviews */
.reviews-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px 22px;
  transition: var(--transition);
}

.review-card-v2:hover {
  background: rgba(255,255,255,0.05);
}

.review-header-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card-v2 p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.review-stat-card {
  background: var(--emergency);
  border-radius: 12px;
  padding: 24px 22px;
}

.rstat-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.rstat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rstat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.rstat-static {
  font-size: 2rem;
}

.rstat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.rstat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.2);
}

/* ===========================
   COVERAGE
   =========================== */
.coverage {
  background: var(--bg-light);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.coverage-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 40ch;
}

.coverage-areas {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.area-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px;
  box-shadow: var(--shadow-card);
}

.area-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-title i {
  color: var(--emergency);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  transition: var(--transition);
}

.area-tags span:hover {
  border-color: var(--accent);
  color: var(--primary);
}

/* ===========================
   FINAL CTA
   =========================== */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 20, 0.96) 0%,
    rgba(27, 79, 138, 0.82) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 700px;
}

.cta-h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-h2-accent {
  color: var(--emergency);
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 600;
}

.cta-checks span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-checks i {
  color: var(--whatsapp);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 42ch;
}

.footer-col-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--emergency);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}

.footer-contact i {
  color: var(--emergency);
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--emergency);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ===========================
   STICKY WHATSAPP
   =========================== */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: var(--transition);
}

.sticky-wa.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sticky-wa:hover {
  background: #20ba58;
  transform: scale(1.07);
}

@media (max-width: 768px) {
  .sticky-wa { display: none; }
}

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .ed-features-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  /* Nav */
  .nav-label { display: none; }

  .nav-logo img { height: 36px; }

  .nav-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.85rem;
  }

  /* Hero */
  .h1-line-1,
  .h1-line-2 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-sub { font-size: 1rem; }

  .hero-ctas { gap: 10px; }

  .btn-hero {
    min-height: 54px;
    padding: 0 24px;
    font-size: 0.98rem;
    flex: 1;
    justify-content: center;
  }

  /* Steps */
  .step-row {
    grid-template-columns: 72px 1px 1fr;
    gap: 0 20px;
  }

  .step-cta-inline {
    display: none;
  }

  .step-num-big {
    font-size: 3.2rem;
  }

  /* Editorial */
  .ed-features-col {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-big-card {
    padding: 28px 24px;
  }

  .rbig-quote {
    font-size: 4rem;
  }

  /* Coverage */
  .coverage-inner {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta-big {
    width: 100%;
    justify-content: center;
  }

  .cta-checks {
    flex-direction: column;
    gap: 10px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
  .hero-proof {
    gap: 7px;
  }

  .proof-pill {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  .step-row {
    grid-template-columns: 56px 1px 1fr;
    gap: 0 14px;
  }

  .step-num-big {
    font-size: 2.6rem;
  }

  .rstat-num {
    font-size: 1.9rem;
  }
}
