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

:root {
  --blue: #2f6fed;
  --blue-dark: #1f4fb0;
  --navy: #04447e;   /* logo dark blue */
  --cyan: #2595c7;   /* logo pin blue */
  --ink: #1f2733;
  --slate: #33415c;
  --muted: #8a94a6;
  --bg: #ffffff;
  --bg-soft: #f3f5fb;
  --bg-panel: #e9edf7;
  --line: #e4e8f2;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(31, 79, 176, .12);
  --font-en: 'Open Sans', 'Noto Sans Arabic', sans-serif;
  --font-ar: 'Noto Sans Arabic', 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-en);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
body[dir="rtl"] { font-family: var(--font-ar); }

.container { width: min(1180px, 92%); margin-inline: auto; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.center { text-align: center; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(20,40,90,.08); border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }

.logo {
  display: inline-flex; align-items: center;
  font-family: var(--font-en);
  font-weight: 800; font-size: 30px; letter-spacing: -1px;
}
.logo-i { color: var(--blue); }
.logo-pin { display: inline-flex; margin: 0 -2px; transform: translateY(-1px); }
.logo-rest { color: var(--ink); }
.logo-rest.light { color: #fff; }
.logo-img { height: 44px; width: auto; display: block; }
.footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); }

.main-nav { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: center; }
.main-nav ul { display: flex; gap: 28px; list-style: none; }
.main-nav a { font-weight: 500; font-size: 16px; color: var(--slate); transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }

.lang-switch { display: flex; gap: 6px; }
.lang-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 8px;
  width: 34px; height: 26px; cursor: pointer; font-size: 15px; line-height: 1;
  opacity: .55; transition: opacity .2s, border-color .2s;
}
.lang-btn.active { opacity: 1; border-color: var(--blue); }

.header-contact { text-align: end; margin-inline-start: 6px; }
.header-contact .phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 19px; color: var(--blue-dark);
}
.header-contact small { display: block; color: var(--muted); font-size: 13px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-inline-start: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--slate); border-radius: 3px; transition: .3s; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(115deg, #fafbfe 0%, #fafbfe 34%, #e9edf7 34.2%, #eef1f9 100%);
}
.hero-bg::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 33%;
  width: 3px; background: linear-gradient(#dfe5f2, transparent);
  transform: skewX(-18deg);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px;
  min-height: 560px; padding: 60px 0;
}
.hero-text h1 {
  font-weight: 800; font-size: clamp(38px, 5vw, 60px); line-height: 1.12;
  color: var(--ink); letter-spacing: -1.5px;
}
body[dir="rtl"] .hero-text h1 { letter-spacing: 0; }
.accent-line { display: block; width: 70px; height: 5px; background: var(--blue); border-radius: 4px; margin: 26px 0; }
.hero-text p { color: var(--muted); font-size: 17px; max-width: 560px; }

.store-badges { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; direction: ltr;
  background: linear-gradient(180deg, #3d3d3d 0%, #191919 50%, #000 100%);
  border: 1px solid #8f8f8f; color: #fff; padding: 9px 20px; border-radius: 12px;
  min-width: 190px; box-shadow: 0 4px 12px rgba(0,0,0,.28);
  transition: transform .2s, box-shadow .2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(0,0,0,.36); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.18; }
.store-badge small { font-size: 11px; opacity: .92; text-transform: uppercase; letter-spacing: .4px; }
.store-badge strong { font-size: 18px; font-weight: 600; letter-spacing: .2px; }

/* hero car image */
.hero-car {
  width: 100%; max-width: 560px; height: auto;
  filter: drop-shadow(0 26px 34px rgba(20,40,90,.22));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* phone mockup (legacy, unused) */
.hero-image { display: flex; justify-content: center; }
.phone-mockup {
  width: 250px; height: 500px; background: #10233f;
  border-radius: 40px; padding: 14px; box-shadow: var(--shadow);
  position: relative; transform: rotate(4deg);
}
.phone-notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #10233f; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 28px;
  background: linear-gradient(160deg, #eaf0fe, #ffffff);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.ph-logo { display: inline-flex; align-items: center; font-weight: 800; font-size: 26px; color: var(--ink); }
.ph-logo .logo-i, .ph-logo { color: var(--blue); }
.phone-screen p { color: var(--slate); font-weight: 600; font-size: 15px; }

/* ===================== SECTION TITLES ===================== */
.section-title {
  text-align: center; font-weight: 800; font-size: clamp(28px, 3.4vw, 40px);
  color: var(--ink); margin-bottom: 12px; position: relative; padding-bottom: 18px;
}
.section-title::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 64px; height: 4px; background: var(--blue); border-radius: 3px; }
.section-title.left { text-align: start; }
.section-title.left::after { left: 0; transform: none; }
body[dir="rtl"] .section-title.left::after { left: auto; right: 0; }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 44px; font-size: 17px; }

/* ===================== HOW IT WORKS ===================== */
.how { padding: 84px 0; background: #fff; }
.steps {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 46px;
  background: linear-gradient(125deg, #063a6a 0%, var(--navy) 55%, #0a5188 130%);
  border-radius: 24px; padding: 56px 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 30px 60px rgba(4,68,126,.32);
}
.steps::before {
  content: ""; position: absolute; z-index: 0; top: 134px; inset-inline: 18%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.45) 0 7px, transparent 7px 16px);
}
.steps::after {
  content: ""; position: absolute; z-index: 0; width: 320px; height: 320px; border-radius: 50%;
  top: -120px; inset-inline-end: -80px; pointer-events: none;
  background: radial-gradient(circle, rgba(37,149,199,.35), transparent 70%);
}
.step { position: relative; z-index: 1; background: transparent; padding: 30px 22px 20px; text-align: center; }
.step-num {
  position: absolute; top: 0; inset-inline-start: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--navy);
  font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.35); z-index: 3; border: 2px solid rgba(255,255,255,.6);
}
body[dir="rtl"] .step-num { inset-inline-start: auto; inset-inline-end: 50%; transform: translateX(50%); }
.step-icon {
  width: 82px; height: 82px; border-radius: 50%; margin: 8px auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #38b6e6, var(--cyan) 55%, #17679f);
  box-shadow: 0 12px 28px rgba(0,0,0,.3), 0 0 0 9px rgba(255,255,255,.06);
}
.feature-icon {
  width: 74px; height: 74px; border-radius: 20px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(47,111,237,.1);
}
.how .step-icon svg path { fill: #fff; }
.step h3 { font-size: 23px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step p { color: rgba(255,255,255,.92); font-size: 16.5px; line-height: 1.7; }
.feature h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.feature p { color: var(--muted); font-size: 15px; }

/* ===================== FANCY SECTION DIVIDER ===================== */
.fancy-divider { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 4px 0; }
.fancy-divider .fd-line { width: 110px; max-width: 22vw; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, rgba(37,149,199,.7)); }
.fancy-divider .fd-line:last-child { background: linear-gradient(90deg, rgba(37,149,199,.7), transparent); }
.fancy-divider .fd-dot {
  width: 14px; height: 14px; border-radius: 50%; flex: none;
  background: linear-gradient(145deg, var(--cyan), var(--navy));
  box-shadow: 0 0 0 6px rgba(37,149,199,.14), 0 4px 10px rgba(4,68,126,.3);
  position: relative;
}
.fancy-divider .fd-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: rgba(255,255,255,.4); }

/* ===================== PRICING ===================== */
.pricing { padding: 84px 0; }
.group-title { text-align: center; font-size: 27px; font-weight: 800; color: var(--navy); margin: 56px 0 6px; position: relative; padding-bottom: 14px; }
.group-title::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 56px; height: 4px; background: var(--cyan); border-radius: 3px; }
.group-title:first-child { margin-top: 6px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 34px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow); transform: scale(1.03); }
.car-photo {
  background: transparent; height: 160px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.car-photo img { max-width: 100%; height: 150px; width: auto; object-fit: contain; }
.price-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; color: var(--cyan); }
.price-list { list-style: none; margin-bottom: 24px; }
.price-list li { display: flex; justify-content: space-between; align-items: center; padding: 11px 4px; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: var(--muted); font-size: 15px; }
.price-list b { color: var(--ink); font-weight: 700; font-size: 17px; }
.price-list em { font-style: normal; color: var(--blue); font-size: 13px; font-weight: 600; }

.btn-outline, .btn-solid {
  display: inline-block; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 15px;
  transition: all .2s; cursor: pointer;
}
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: #fff; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-solid { background: var(--blue); color: #fff; border: 2px solid var(--blue); }
.btn-solid:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-solid.lg { padding: 15px 44px; font-size: 16px; letter-spacing: .5px; margin-top: 44px; }

/* ===================== FEATURES ===================== */
.features { padding: 84px 0; background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { text-align: center; padding: 20px; }

/* ===================== WHY CHOOSE US (elegant blue band) ===================== */
.why-choose {
  position: relative; padding: 92px 0; overflow: hidden;
  background: linear-gradient(135deg, #eaf6fc 0%, #cfeaf7 52%, #b2ddf1 100%);
}
.wc-blob { position: absolute; border-radius: 50%; filter: blur(6px); z-index: 0; pointer-events: none; }
.wc-blob-1 {
  width: 540px; height: 540px; top: -180px; inset-inline-start: -140px;
  background: radial-gradient(circle, rgba(37,149,199,.38), transparent 68%);
}
.wc-blob-2 {
  width: 480px; height: 480px; bottom: -200px; inset-inline-end: -140px;
  background: radial-gradient(circle, rgba(4,68,126,.24), transparent 68%);
}
.why-choose .container { position: relative; z-index: 1; }
.why-choose .section-title { color: var(--navy); }
.why-choose .section-sub { color: #1f3b57; font-size: 18px; font-weight: 500; }

.wc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.wc-card {
  background: rgba(255,255,255,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9); border-radius: 22px;
  padding: 44px 28px; text-align: center;
  box-shadow: 0 20px 44px rgba(4,68,126,.16);
  transition: transform .28s, box-shadow .28s;
}
.wc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 56px rgba(4,68,126,.24); }
.wc-icon {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--cyan), var(--navy));
  box-shadow: 0 12px 26px rgba(4,68,126,.32);
}
.wc-card h3 { color: var(--navy); font-size: 23px; font-weight: 700; margin-bottom: 12px; }
.wc-card p { color: #1f2b3d; font-size: 17px; line-height: 1.75; }

/* ===================== OWN THE ROAD (CTA) ===================== */
.own-road { padding: 76px 0; background: #fff; }
.center-badges { justify-content: center; margin-top: 30px; }

/* ===================== INFO / TERMS ===================== */
.info { padding: 90px 0; background: linear-gradient(180deg, #fff 0%, #f4f7fc 100%); }
.info-inner { display: grid; grid-template-columns: 1.35fr .85fr; gap: 50px; align-items: center; }
.info-lead { color: var(--slate); font-size: 18px; line-height: 1.9; margin: 20px 0 28px; }
.benefits { list-style: none; display: grid; gap: 16px; }
.benefits li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink); font-size: 17px; font-weight: 500; line-height: 1.6; }
.benefits .check {
  flex: none; width: 28px; height: 28px; border-radius: 50%; margin-top: 2px;
  background: linear-gradient(145deg, var(--cyan), var(--navy));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 12px rgba(4,68,126,.28);
}

.help-card {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(150deg, #04447e 0%, #063a6a 55%, #1a6ba3 150%);
  border-radius: 26px; padding: 48px 36px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 30px 65px rgba(4,68,126,.42);
  border: 1px solid rgba(255,255,255,.1);
}
.help-card::after { content: ""; position: absolute; z-index: 0; width: 260px; height: 260px; border-radius: 50%; bottom: -110px; inset-inline-start: -90px; background: radial-gradient(circle, rgba(37,149,199,.35), transparent 70%); }
.help-glow { position: absolute; z-index: 0; width: 240px; height: 240px; border-radius: 50%; top: -80px; inset-inline-end: -70px; background: radial-gradient(circle, rgba(37,149,199,.6), transparent 70%); }
.help-card > * { position: relative; z-index: 1; }
.help-icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--cyan), #1a6ba3);
  border: 3px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.help-card h3 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.help-sub { opacity: .85; font-size: 15px; margin-bottom: 24px; }
.help-phone { display: block; font-size: 32px; font-weight: 800; letter-spacing: 1px; margin-bottom: 6px; text-shadow: 0 2px 14px rgba(37,149,199,.5); }
.help-email { display: block; opacity: .92; margin-bottom: 28px; word-break: break-all; }
.help-actions { display: flex; gap: 12px; }
.help-btn { flex: 1; padding: 13px 10px; border-radius: 13px; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: transform .2s, box-shadow .2s; }
.help-btn:hover { transform: translateY(-2px); }
.help-btn-call { background: #fff; color: var(--navy); }
.help-btn-call:hover { box-shadow: 0 8px 18px rgba(0,0,0,.2); }
.help-btn-wa { background: #25d366; color: #fff; }
.help-btn-wa:hover { box-shadow: 0 8px 18px rgba(37,211,102,.4); }

/* ===================== FOOTER ===================== */
.site-footer {
  position: relative;
  background: linear-gradient(160deg, #04447e 0%, #05335e 100%); color: #d3e0f0;
  padding-top: 100px; margin-top: 48px;
  clip-path: polygon(0 46px, 100% 0, 100% 100%, 0 100%);
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 52px;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
  clip-path: polygon(0 46px, 100% 0, 100% 6px, 0 100%);
  opacity: .9;
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { font-size: 26px; }
.footer-brand p { margin-top: 14px; color: #9fb0ca; max-width: 320px; }
.footer-links h4, .footer-contact h4 { color: #fff; margin-bottom: 16px; font-size: 17px; }
.footer-links a, .footer-contact a { display: block; color: #9fb0ca; margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #cfd8e8; transition: .2s;
}
.socials a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: 14px; color: #8698b6; }

/* ===================== BOOKING FORM ===================== */
.booking { padding: 84px 0; background: var(--bg-soft); }
.booking-form { max-width: 720px; margin: 44px auto 0; }
.form-row { display: flex; gap: 18px; margin-bottom: 18px; }
.form-row input, .form-row select {
  flex: 1; width: 100%; padding: 15px 18px; border: 1px solid var(--line);
  border-radius: 12px; font-size: 16px; font-family: inherit; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,237,.12);
}
.booking-form .btn-solid { width: 100%; margin-top: 6px; }

/* ===================== FLOATING BUTTONS ===================== */
.fab-stack { position: fixed; bottom: 24px; inset-inline-end: 24px; display: flex; flex-direction: column; gap: 14px; z-index: 200; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.22); transition: transform .2s;
}
.fab:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; }
.fab-call { background: var(--blue); }

/* ===================== SUBPAGES (plans / terms) ===================== */
.page-hero {
  background: linear-gradient(115deg, #fafbfe 0%, #eef1f9 100%);
  padding: 70px 0 56px; text-align: center; border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 4.4vw, 48px); font-weight: 800; color: var(--ink); }
.page-hero p { color: var(--muted); max-width: 640px; margin: 14px auto 0; font-size: 17px; }

.table-wrap { overflow-x: auto; margin-top: 50px; }
.plans-table { width: 100%; border-collapse: collapse; min-width: 520px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.plans-table th { background: var(--blue); color: #fff; padding: 16px 20px; text-align: start; font-weight: 600; font-size: 16px; }
.plans-table td { padding: 15px 20px; border-bottom: 1px solid var(--line); color: var(--slate); font-size: 15px; }
.plans-table td:first-child { font-weight: 700; color: var(--ink); }
.plans-table tbody tr:last-child td { border-bottom: 0; }
.plans-table tbody tr:hover { background: var(--bg-soft); }
.table-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }

.legal { padding: 64px 0 84px; }
.legal-intro { color: var(--slate); font-size: 17px; line-height: 1.9; margin-bottom: 34px; padding: 20px 24px; background: var(--bg-soft); border-radius: 12px; }
.legal-block { margin-bottom: 30px; padding-inline-start: 20px; border-inline-start: 4px solid var(--navy); }
.legal-block h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.legal-block h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 16px 0 8px; }
.legal-block p { color: var(--slate); font-size: 16px; line-height: 1.9; margin-bottom: 10px; }
.legal-block ul { margin: 8px 0 10px; padding-inline-start: 22px; }
.legal-block li { color: var(--slate); font-size: 16px; line-height: 1.85; margin-bottom: 7px; }
.legal-block strong { color: var(--ink); }
.legal-block a { color: var(--blue); }
.legal-contact { border-inline-start-color: var(--cyan); background: var(--bg-soft); padding: 18px 22px; border-radius: 0 12px 12px 0; }
.header-contact .phone a { color: inherit; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; order: 3; }
  .header-contact { display: none; }
  .main-nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 18px;
    background: #fff; padding: 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .3s; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 16px; text-align: center; width: 100%; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-bg { background: linear-gradient(180deg, #fafbfe, #eef1f9); }
  .hero-bg::after { display: none; }
  .accent-line { margin-inline: auto; }
  .hero-text p { margin-inline: auto; }
  .store-badges { justify-content: center; }
  .hero-image { order: -1; margin-bottom: 20px; }
  .steps, .price-grid, .feature-grid, .wc-cards { grid-template-columns: 1fr; }
  .steps { gap: 20px; padding: 36px 18px; }
  .steps::before { display: none; }
  .fancy-divider .fd-line { width: 70px; }
  .center-badges { flex-direction: column; align-items: center; }
  .price-card.featured { transform: none; }
  .info-inner, .footer-inner { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 14px; }
  .fab-stack { bottom: 18px; inset-inline-end: 18px; }
}
