/* =============================================
   SAEDNI LANDING PAGE – STYLESHEET
   Font: Tajawal | Direction: RTL
   Breakpoints: 768px (tablet), 480px (mobile)
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand gradient */
  --gradient: linear-gradient(135deg, #ef9019 0%, #e73115 100%);
  --gradient-text: linear-gradient(135deg, #ef9019 0%, #e73115 100%);

  /* Colors */
  --color-primary:     #ef9019;
  --color-primary-end: #e73115;
  --color-bg:          #ffffff;
  --color-bg-warm:     #fffaf2;
  --color-bg-pale:     #fdeae8;
  --color-bg-peach:    #fce9d1;
  --color-border:      #f1f1f1;
  --color-border-brand:#ef9019;
  --color-shadow:      rgba(250, 214, 208, 0.6);

  /* Text */
  --color-text-dark:   #000000;
  --color-text-body:   #272727;
  --color-text-mid:    #494949;
  --color-text-soft:   #6b6b6b;
  --color-text-muted:  #8d8d8d;
  --color-text-faint:  #adadad;

  /* Typography */
  --font: 'Tajawal', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-pad-v: 80px;
  --section-pad-h: 120px;

  /* Radius */
  --radius-sm:  12px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill:40px;
}

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

html { scroll-behavior: smooth; }

#home,
#why,
#pricing,
#activation,
#coverage {
  scroll-margin-top: 128px;
}

body {
  font-family: var(--font);
  direction: rtl;
  background: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.4;
  position: relative;
  display: inline-block;
  z-index: 0;
}

/* Underline highlight behind title */
.section-title::before {
  display: none;
}

.section-title > .gradient-text {
  display: inline-block;
  position: relative;
}

.section-title > .gradient-text::before {
  content: '';
  position: absolute;
  right: 50%;
  bottom: -10px;
  width: 140px;
  height: 58px;
  background: rgba(253, 234, 232, 0.72);
  border-radius: 4px;
  transform: translateX(50%);
  z-index: -1;
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: none;
}
.btn:hover  { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(239, 144, 25, 0.18); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gradient);
  color: #fff;
}

.btn--outline {
  background: var(--color-bg-warm);
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}
.btn--outline .gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

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

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo__text {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.logo__car {
  width: 76px;
  height: auto;
  transition: transform 0.25s ease;
}

.navbar .logo__car {
  width: 152px;
}

.footer .logo__car {
  width: 152px;
}

.logo:hover .logo__car {
  transform: scale(1.04);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Same warm gradient as hero so navbar blends in */
  background: rgba(255, 252, 247, 0.97);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  animation: nav-drop-in 0.6s ease both;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* Force LTR so logo stays visual-left, nav stays visual-right
     regardless of the page dir="rtl" */
  direction: ltr;
}

.nav {
  display: flex;
  align-items: center;
  /* RTL inside the nav so Arabic links read right-to-left */
  direction: rtl;
  gap: 32px;
}

.nav__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-soft);
  transition: color 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav__link:hover { color: var(--color-text-dark); }

.nav__link--active {
  font-weight: 700;
  color: var(--color-text-dark);
}

/* Orange underline under active link */
.nav__underline {
  display: none;
  width: 36px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.nav__link--active .nav__underline {
  display: block;
  animation: underline-draw 0.35s ease both;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-text-body);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger--open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger--open span:nth-child(2) { opacity: 0; }
.hamburger--open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  /* Warm radial gradient matching Figma exactly */
  background: radial-gradient(ellipse 120% 80% at 80% 0%, #ffffff 0%, #fffaf2 100%);
  padding-top: 56px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-bottom: 56px;
  /* Force LTR so illustration is visual-LEFT, content is visual-RIGHT */
  direction: ltr;
}

.hero__illustration {
  flex: 0 0 420px;
  max-width: 420px;
  animation: hero-art-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  animation: hero-float 5.5s ease-in-out infinite;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Restore RTL reading direction for Arabic content */
  direction: rtl;
  text-align: right;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
  /* Align badge to the right edge of content */
  align-self: flex-start;
  animation: hero-copy-in 0.65s ease 0.25s both;
}

.hero__title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-text-dark);
  animation: hero-copy-in 0.7s ease 0.38s both;
}

.hero__desc {
  font-size: 20px;
  color: var(--color-text-mid);
  line-height: 1.75;
  animation: hero-copy-in 0.7s ease 0.52s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start; /* flex-start in RTL = visual right */
  flex-wrap: wrap;
  animation: hero-copy-in 0.7s ease 0.66s both;
}

/* Trust badges — white strip at the very bottom of the hero section */
.trust {
  background: var(--color-bg);
  padding: 28px 0;
  animation: trust-rise-in 0.7s ease 0.78s both;
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-mid);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.trust__item:hover {
  transform: translateY(-3px);
}

/* Orange highlight behind the trust item text */
.trust__item span {
  position: relative;
}

.trust__highlight {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.trust__highlight::before {
  content: '';
  position: absolute;
  bottom: 0.34em;
  right: 0;
  height: 0.68em;
  width: 100%;
  background: #fadeba;
  z-index: -1;
  border-radius: 2px;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg);
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Center the last card */
.feature-card--center {
  grid-column: 1 / -1;
  max-width: 588px;
  margin-inline: auto;
  width: 100%;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  background: var(--color-bg-warm);
  border-color: var(--color-border-brand);
  box-shadow: 0 4px 12px var(--color-shadow);
  transform: translateY(-4px);
}

.feature-card--highlighted {
  background: var(--color-bg);
  border-color: var(--color-border);
  box-shadow: none;
}

.feature-card__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.feature-card__header h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.feature-card__icon--white {
  background: var(--color-bg-warm);
}

.feature-card:hover .feature-card__icon {
  background: var(--color-bg);
}

.feature-card p {
  font-size: 18px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
  direction: rtl;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.pricing-card:hover {
  border-color: var(--color-border-brand);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.pricing-card:hover .btn--outline {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 144, 25, 0.18);
}

.pricing-card--highlighted {
  order: 2;
}

.pricing-card:not(.pricing-card--highlighted) {
  order: 1;
}

/* Pill-shaped buttons inside pricing cards */
.pricing-card .btn {
  border-radius: var(--radius-pill);
  font-size: 18px;
  margin-top: auto;
}

.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-badge {
  background: var(--color-bg-peach);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 500;
}

.pricing-badge__text {
  display: inline-block;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: right;
  background-image: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.pricing-card__amount {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pricing-card__amount strong {
  font-size: 44px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1;
}

.pricing-card__from,
.pricing-card__period {
  font-size: 20px;
  color: var(--color-text-body);
}

.pricing-card__currency img {
  width: 40px;
  height: auto;
}

.pricing-card__desc {
  font-size: 18px;
  color: var(--color-text-mid);
  line-height: 1.7;
  max-width: 470px;
  margin-inline-start: auto;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-body);
  text-align: right;
}

/* Tick circle inline SVG — prevent shrinking */
.tick-icon {
  flex-shrink: 0;
  display: block;
  order: -1;
}

/* Payment methods */
.payments {
  background: linear-gradient(90deg, #fffaf2 0%, #ffffff 15%, #ffffff 85%, #fffaf2 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
}

.payments__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-text-dark);
}

.payments__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.payments__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.payments__item span {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.payments__item img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   ACTIVATION / HOW IT WORKS
   ============================================= */
.activation {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg);
  overflow: hidden;
}

.activation__grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 340px; /* enough height so the asymmetry is visible */
}

.activation__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* RIGHT column (تفعيل فوري): header + highlighted card aligned to the TOP */
.activation__col--immediate {
  justify-content: flex-start;
  padding-top: 0;
}

/* LEFT column (تفعيل مؤجل): header + plain card aligned to the BOTTOM */
.activation__col--deferred {
  justify-content: flex-end;
  padding-bottom: 0;
}

.activation__col-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* RIGHT side header: icon first in DOM → visual-right in RTL, title → visual-left */
.activation__col--immediate .activation__col-header {
  justify-content: flex-start;
}

/* LEFT side header: title first in DOM → visual-right in RTL, icon → visual-left */
.activation__col--deferred .activation__col-header {
  justify-content: flex-end;
}

.activation__col-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.activation__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
}

.activation__icon--orange { background: var(--color-bg-peach); }

.activation__divider {
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-primary) 15%,
    var(--color-primary) 85%,
    transparent 100%
  );
  margin: 0 48px;
  align-self: stretch; /* fills full height of the grid */
  border-radius: 2px;
  flex-shrink: 0;
}

.activation-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: right;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.activation-card:hover {
  background: var(--color-bg-warm);
  border-color: var(--color-border-brand);
  box-shadow: 0 4px 12px var(--color-shadow);
  transform: translateY(-4px);
}

.activation-card--highlighted {
  background: var(--color-bg);
  border-color: var(--color-border);
  box-shadow: none;
}

.activation-card h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.activation-card p {
  font-size: 20px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* =============================================
   COVERAGE + CTA
   ============================================= */
.coverage {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg-warm);
}

.coverage__sub {
  font-size: 22px;
  color: var(--color-text-mid);
  max-width: 560px;
  margin-inline: auto;
  margin-top: 12px;
  text-align: center;
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 56px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle noise/texture overlay on CTA banner – CSS only */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner__content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.cta-banner__content p {
  font-size: 22px;
  color: #fdeae8;
  max-width: 640px;
  line-height: 1.7;
}

.cta-banner__btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Store buttons use full-button SVGs (240×64px each) */
.store-btn {
  display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  border-radius: var(--radius-md);
  overflow: hidden;
  line-height: 0; /* remove inline-block baseline gap */
}
.store-btn:hover  { opacity: 0.88; transform: translateY(-2px); }
.store-btn:active { transform: translateY(0); }

.store-btn__img {
  display: block;
  height: 64px;
  width: auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-bg);
  padding-top: 56px;
  padding-bottom: 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.footer__nav {
  display: flex;
  gap: 32px;
}

.footer__nav a {
  font-size: 18px;
  color: var(--color-text-soft);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--color-primary); }

.footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__payments img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-bottom: 16px;
}

.footer__copy {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-faint);
}

/* =============================================
   RESPONSIVE – TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  :root { --section-pad-v: 56px; }

  /* Navbar */
  .nav { gap: 20px; }
  .nav__link { font-size: 16px; }
  .navbar .logo__car { width: 120px; }

  /* Hero: stack vertically, illustration on top */
  .hero__inner {
    flex-direction: column;
    direction: ltr; /* keep ltr so illustration is on top */
    gap: 32px;
    padding-bottom: 40px;
  }
  .hero__illustration {
    flex: 0 0 auto;
    max-width: 320px;
    margin-inline: auto;
  }
  .hero__content {
    align-items: center;
    text-align: center;
  }
  .hero__badge  { align-self: center; }
  .hero__title  { font-size: 38px; text-align: center; }
  .hero__desc   { text-align: center; }
  .hero__cta    { justify-content: center; }

  /* Trust */
  .trust__inner { gap: 24px; }

  /* Features */
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--center { grid-column: auto; max-width: 100%; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }

  /* Activation */
  .activation__grid    { flex-direction: column; min-height: unset; }
  .activation__divider { width: 100%; height: 2px; margin: 24px 0; min-height: unset;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 15%, var(--color-primary) 85%, transparent 100%);
  }
  .activation__col--immediate { justify-content: flex-start; }
  .activation__col--deferred  { justify-content: flex-start; }
  .activation__col--deferred .activation__col-header { justify-content: flex-start; }

  /* CTA */
  .cta-banner { padding: 40px 28px; }
  .cta-banner__content h2 { font-size: 26px; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__nav   { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* =============================================
   RESPONSIVE – MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  :root { --section-pad-v: 40px; }

  /* Navbar: show hamburger, hide nav */
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fffcf7;
    flex-direction: column;
    direction: rtl;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .nav--open { display: flex; }
  .nav__link {
    padding: 14px 24px;
    font-size: 17px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    align-items: flex-end;
  }
  .nav__underline { display: none; }

  /* Hero */
  .hero__illustration { max-width: 260px; }
  .hero__title  { font-size: 30px; }
  .hero__desc   { font-size: 17px; }
  .hero__badge  { font-size: 15px; padding: 6px 14px; }
  .hero__cta .btn { font-size: 17px; height: 48px; padding: 0 20px; }

  /* Trust */
  .trust__inner { gap: 16px; flex-wrap: wrap; }
  .trust__item  { font-size: 17px; }

  /* Sections */
  .section-title { font-size: 28px; }
  .section-label { font-size: 17px; }

  /* Feature cards */
  .feature-card { padding: 24px; }
  .feature-card__header h3 { font-size: 20px; }
  .feature-card p { font-size: 16px; }

  /* Pricing */
  .pricing-card { padding: 24px; }
  .pricing-card__amount strong { font-size: 36px; }
  .pricing-card__features li { font-size: 17px; }

  /* Payments */
  .payments { padding: 24px 16px; }
  .payments__list { gap: 24px; }

  /* CTA banner */
  .cta-banner { padding: 32px 20px; }
  .cta-banner__content h2 { font-size: 22px; }
  .cta-banner__content p  { font-size: 17px; }
  .cta-banner__btns       { flex-direction: column; align-items: center; }
  .store-btn { min-width: 180px; }

  /* Activation */
  .activation-card { padding: 24px; }

  /* Coverage subtitle */
  .coverage__sub { font-size: 18px; }

  /* Footer */
  .footer__nav   { gap: 12px; }
  .footer__nav a { font-size: 15px; }
  .logo__text    { font-size: 22px; }
  .navbar .logo__car { width: 112px; }
  .footer .logo__car { width: 112px; }
}

@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes nav-drop-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-art-in {
  from {
    opacity: 0;
    transform: translateX(-36px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes trust-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underline-draw {
  from {
    opacity: 0;
    transform: scaleX(0.35);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
