/* ==========================================================================
   גולן טלקום — משווק מורשה סייל אול — main stylesheet
   RTL Hebrew, mobile-first, premium telecom look:
   dark slate/graphite gradients, vivid Golan red accents, generous spacing.
   ========================================================================== */

:root {
  /* Brand palette — Golan Telecom: brand red #ED1B2F + slate #3E484F + white.
     (Verified from the live golantelecom.co.il theme CSS.)
     Variable names kept for backwards-compat; "blue-*" now holds the dark
     slate scale + red primary, "mint-*" holds the red accent scale. */
  --blue-950: #20262b;
  --blue-900: #2a3137;
  --blue-800: #3e484f;
  --blue-700: #c5121f;
  --blue-600: #ed1b2f;
  --blue-100: #fcd9dc;
  --blue-50: #fdf1f2;

  --mint-500: #ed1b2f;
  --mint-400: #f23b4a;
  --mint-300: #f78f97;
  --mint-100: #fcd9dc;
  --mint-50: #fdf1f2;

  --pistachio: #fceef0;
  --ink: #222a2f;
  --ink-soft: #5a666e;
  --ink-faint: #8c979e;
  --white: #ffffff;
  --danger: #c5121f;

  /* Direct brand tokens for new components */
  --golan-red: #ed1b2f;
  --golan-red-deep: #c5121f;
  --golan-dark: #3e484f;

  /* Surfaces & effects */
  --card-border: rgba(34, 26, 20, 0.08);
  --shadow-sm: 0 2px 10px rgba(20, 17, 13, 0.07);
  --shadow-md: 0 10px 32px rgba(20, 17, 13, 0.12);
  --shadow-lg: 0 24px 64px rgba(20, 17, 13, 0.18);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1160px;
  --header-h: 72px;

  --font: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

/* Full-page sky backdrop — assets/sky-bg.webp (user-supplied).
   If the image is missing, the gradient layer below still renders,
   so the page degrades gracefully. position:fixed (not
   background-attachment:fixed) because iOS Safari ignores the latter. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 700px at 100% 0%, rgba(237, 27, 47, 0.06), transparent 60%),
    linear-gradient(180deg, var(--blue-50), var(--white));
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* --- Reveal animation ------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered entrance for cards inside grids — modern "cascade" feel */
.features-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.reviews-grid .reveal:nth-child(2),
.dest-grid .reveal:nth-child(2) { transition-delay: 0.1s; }

.features-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.reviews-grid .reveal:nth-child(3),
.dest-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.features-grid .reveal:nth-child(4),
.steps .reveal:nth-child(4),
.pricing-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Buttons ----------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 34px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint-400), var(--mint-500));
  color: var(--blue-950);
  box-shadow: 0 10px 26px rgba(237, 27, 47, 0.38);
}

/* Soft shine sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: -75%;
  width: 50%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: inset-inline-start 0.5s ease;
}

.btn-primary:hover::after { inset-inline-start: 125%; }

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { display: none; }
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(237, 27, 47, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.16); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(197, 18, 31, 0.32);
}

.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(197, 18, 31, 0.42); }

/* --- Header -------------------------------------------------------------------- */

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  background: rgba(20, 17, 13, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(15, 12, 9, 0.35);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}

.logo__img {
  width: auto;
  height: 38px;
  background: #fff;
  padding: 6px 9px;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(20, 17, 13, 0.18);
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  background: linear-gradient(135deg, var(--golan-red-deep), var(--golan-red));
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  box-shadow: 0 6px 20px rgba(237, 27, 47, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header__phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(237, 27, 47, 0.55);
  filter: brightness(1.06);
}

.header__phone:active { transform: translateY(0); }

.header__phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Hero ------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  /* Sky image shows through the slightly-translucent brand gradient;
     when assets/sky-bg.webp is absent, the gradients alone render. */
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(242, 59, 74, 0.2), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(237, 27, 47, 0.5), transparent 65%),
    linear-gradient(160deg, rgba(15, 12, 9, 0.88) 0%, rgba(20, 17, 13, 0.86) 45%, rgba(197, 18, 31, 0.84) 100%),
    url('../assets/sky-bg.webp') center / cover no-repeat,
    linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 45%, var(--blue-700) 100%);
  padding: calc(var(--header-h) + 64px) 0 132px;
}

/* Cloud-shaped wave divider into the next (mint) section */
.hero__wave {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.hero__wave svg { width: 100%; height: 56px; }

@media (min-width: 1024px) {
  .hero__wave svg { height: 90px; }
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

/* Soft cloud shapes */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero::before {
  width: 480px; height: 220px;
  background: rgba(255, 255, 255, 0.09);
  top: 12%; inset-inline-start: -120px;
}

.hero::after {
  width: 560px; height: 260px;
  background: rgba(247, 143, 151, 0.10);
  bottom: -60px; inset-inline-end: -140px;
}

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mint-300);
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--golan-red);
}

.hero__title {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero__title .accent {
  background: linear-gradient(90deg, var(--mint-300), var(--mint-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

.hero__phone-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.hero__phone-row a {
  font-weight: 800;
  font-size: 20px;
  color: var(--mint-300);
  direction: ltr;
}

/* Floating phone mockup */
.hero__visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(290px, 72vw);
  aspect-ratio: 9 / 18.6;
  border-radius: 44px;
  background: linear-gradient(160deg, #16244a, #0a1834);
  border: 3px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg), inset 0 0 0 6px rgba(0, 0, 0, 0.45);
  padding: 14px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-16px) rotate(1.2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-mockup { animation: none; }
}

.phone-mockup__screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--blue-50), var(--mint-50));
  display: flex;
  flex-direction: column;
  padding: 22px 16px 16px;
  gap: 12px;
}

.phone-mockup__notch {
  position: absolute;
  top: 13px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 88px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: #0a1834;
}

.mock-status {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  padding-inline: 4px;
  margin-top: 8px;
}

.mock-5g {
  color: var(--mint-500);
  font-weight: 800;
}

.mock-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 13px 14px;
}

.mock-card--gradient {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
}

.mock-card__label { font-size: 10.5px; opacity: 0.75; font-weight: 600; }

.mock-card__value { font-size: 19px; font-weight: 800; }

.mock-bar {
  height: 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.25);
  margin-top: 9px;
  overflow: hidden;
}

.mock-bar i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint-300), var(--mint-400));
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-row__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--mint-100);
  color: var(--mint-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mock-row__icon svg { width: 16px; height: 16px; }

.mock-row__title { font-size: 11.5px; font-weight: 700; color: var(--ink); }

.mock-row__sub { font-size: 10px; color: var(--ink-faint); }

.mock-cta {
  margin-top: auto;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--mint-400), var(--mint-500));
  border-radius: var(--radius-pill);
  padding: 11px;
}

/* --- Section scaffolding ------------------------------------------------------------ */

/* Sections are slightly translucent so the fixed sky backdrop
   peeks through, giving the page a layered "floating" depth. */
.section { padding: 88px 0; background: rgba(255, 255, 255, 0.86); }

.section--tint { background: rgba(242, 247, 255, 0.78); }

.section--mint { background: linear-gradient(180deg, rgba(239, 252, 246, 0.92), rgba(255, 255, 255, 0.78)); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--golan-red);
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--golan-red);
  opacity: 0.55;
}
/* on the dark pricing section use the lighter red for contrast */
.pricing-section .section-eyebrow { color: var(--mint-300); }
.pricing-section .section-eyebrow::before,
.pricing-section .section-eyebrow::after { background: var(--mint-300); }

.section-title {
  font-size: clamp(27px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.section-title .accent { color: var(--blue-600); }

.section-subtitle {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* --- Feature grid ---------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-card {
  background: linear-gradient(170deg, var(--mint-50), var(--pistachio));
  border: 1px solid rgba(237, 27, 47, 0.16);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon { transition: transform 0.25s ease; }

.feature-card:hover .feature-card__icon { transform: scale(1.12) rotate(-4deg); }

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--white);
  color: var(--mint-500);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.feature-card__icon svg { width: 25px; height: 25px; }

.feature-card__title {
  font-size: 18.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* --- How it works (QR flow) --------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px 26px 28px;
  box-shadow: var(--shadow-sm);
}

.step-card__num {
  position: absolute;
  top: -18px;
  inset-inline-start: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 6px 16px rgba(197, 18, 31, 0.35);
}

.step-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.step-card__icon svg { width: 24px; height: 24px; }

.step-card__title { font-size: 18px; font-weight: 800; margin-bottom: 7px; }

.step-card__text { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

.step-card__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--golan-red-deep), var(--golan-red));
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(237, 27, 47, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card__call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(237, 27, 47, 0.42);
}

.step-card__call svg { width: 16px; height: 16px; flex-shrink: 0; }
.step-card__call bdo { direction: ltr; }

/* QR visual */
.qr-visual {
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.qr-box {
  width: 86px;
  height: 86px;
  border-radius: 14px;
  background: var(--white);
  border: 2.5px dashed var(--mint-400);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.qr-box svg { width: 52px; height: 52px; color: var(--blue-900); }

.qr-box::after {
  content: '';
  position: absolute;
  inset-inline: 8px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--mint-400);
  box-shadow: 0 0 14px var(--mint-400);
  animation: scanline 2.4s ease-in-out infinite;
}

@keyframes scanline {
  0%, 100% { top: 12%; }
  50% { top: 84%; }
}

@media (prefers-reduced-motion: reduce) {
  .qr-box::after { animation: none; top: 50%; }
}

/* --- Destination tabs -------------------------------------------------------------------------- */

.dest-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.dest-tab {
  border: 1.5px solid var(--card-border);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  transition: all 0.2s ease;
}

.dest-tab:hover { border-color: var(--blue-600); color: var(--blue-700); }

.dest-tab.active {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(197, 18, 31, 0.3);
}

.dest-panel { display: none; }

.dest-panel.active { display: block; }

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

.dest-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.dest-card__flag { font-size: 30px; line-height: 1; }

.dest-card__name { font-weight: 800; font-size: 16px; }

.dest-card__desc { font-size: 13.5px; color: var(--ink-soft); }

.dest-card__badge {
  margin-inline-start: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mint-500);
  background: var(--mint-100);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  white-space: nowrap;
}

/* --- Comparison table -------------------------------------------------------------------------------- */

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}

.compare th, .compare td {
  padding: 17px 20px;
  text-align: right;
  border-bottom: 1px solid var(--card-border);
}

.compare thead th {
  font-size: 15.5px;
  font-weight: 800;
  background: var(--blue-50);
}

.compare thead th.compare__us {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }

.compare tbody th { font-weight: 600; color: var(--ink-soft); }

.compare td { text-align: center; font-weight: 700; }

.compare td.compare__us-cell { background: var(--blue-50); }

.mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.mark svg { width: 16px; height: 16px; }

.mark--yes { background: var(--mint-100); color: var(--mint-500); }

.mark--no { background: rgba(224, 69, 92, 0.1); color: var(--danger); }

/* --- Pricing (glassmorphism) ------------------------------------------------------------------------------ */

.pricing-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(900px 460px at 110% 0%, rgba(242, 59, 74, 0.16), transparent 60%),
    radial-gradient(800px 500px at -10% 100%, rgba(237, 27, 47, 0.5), transparent 60%),
    linear-gradient(165deg, rgba(15, 12, 9, 0.93), rgba(42, 34, 27, 0.9)),
    url('../assets/sky-bg.webp') center / cover no-repeat,
    linear-gradient(165deg, var(--blue-950), var(--blue-800));
}

.pricing-section .section-title .accent { color: var(--mint-300); }

.pricing-section .section-subtitle { color: rgba(255, 255, 255, 0.75); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(15, 12, 9, 0.35);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.price-card:hover { transform: translateY(-6px); border-color: rgba(247, 143, 151, 0.45); }

.price-card--featured {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(247, 143, 151, 0.55);
  box-shadow: 0 24px 64px rgba(237, 27, 47, 0.22);
}

/* Featured flag = full-width ribbon banner across the card top (no pill) */
.price-card__flag {
  position: absolute;
  top: 0;
  inset-inline: 0;
  text-align: center;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--golan-red-deep), var(--golan-red));
  border-radius: 0;
  padding: 9px;
}
.price-card--featured {
  overflow: hidden;
  padding-top: 56px;
}

.price-card__name { font-size: 19px; font-weight: 800; margin-bottom: 4px; }

.price-card__gb {
  font-size: 38px;
  font-weight: 800;
  color: var(--mint-300);
  line-height: 1.1;
}

.price-card__gb small { font-size: 17px; font-weight: 700; }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 4px;
}

.price-card__amount { font-size: 42px; font-weight: 800; line-height: 1; }

.price-card__per { font-size: 14px; color: rgba(255, 255, 255, 0.7); }

.price-card__note { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); margin-bottom: 18px; }

.price-card__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.price-card__list svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--mint-300);
}

.price-card .btn { margin-top: auto; width: 100%; }

/* --- Reviews -------------------------------------------------------------------------------------------------- */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.review-card__stars {
  display: inline-flex;
  gap: 3px;
  color: #f5b50a;
  margin-bottom: 13px;
}

.review-card__stars svg { width: 17px; height: 17px; }

.review-card__text { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }

.review-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.review-card__avatar--a { background: linear-gradient(135deg, var(--blue-600), var(--blue-800)); }
.review-card__avatar--b { background: linear-gradient(135deg, var(--mint-400), var(--mint-500)); }
.review-card__avatar--c { background: linear-gradient(135deg, #7c5cff, #5436d6); }

.review-card__name { font-weight: 800; font-size: 14.5px; }

.review-card__meta { font-size: 12.5px; color: var(--ink-faint); }

/* --- FAQ ------------------------------------------------------------------------------------------------------------ */

.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: 0;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 19px 22px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-700);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item__icon svg { width: 13px; height: 13px; }

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--mint-100);
  color: var(--mint-500);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-item__answer { max-height: 320px; }

.faq-item__answer p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* --- Lead form ------------------------------------------------------------------------------------------------------------ */

.lead-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(800px 420px at 0% 0%, rgba(242, 59, 74, 0.18), transparent 60%),
    linear-gradient(150deg, rgba(20, 17, 13, 0.92), rgba(197, 18, 31, 0.88)),
    url('../assets/sky-bg.webp') center / cover no-repeat,
    linear-gradient(150deg, var(--blue-900), var(--blue-700));
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.lead-info .section-eyebrow { background: none; color: var(--mint-300); }
.lead-info .section-eyebrow::before,
.lead-info .section-eyebrow::after { background: var(--mint-300); }

.lead-info__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.lead-info__text { color: rgba(255, 255, 255, 0.8); font-size: 16.5px; margin-bottom: 26px; }

.lead-info__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  color: var(--mint-300);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 24px;
}

.lead-info__phone svg { width: 21px; height: 21px; }

.lead-info__phone bdo { direction: ltr; }

.lead-form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 28px;
}

.lead-form-card__title { font-size: 21px; font-weight: 800; margin-bottom: 4px; }

.lead-form-card__sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-field input,
.form-field select {
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  border: 1.5px solid #d6deeb;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--blue-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input[type="tel"] {
  direction: rtl;
  text-align: right;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(237, 27, 47, 0.15);
  background: var(--white);
}

.form-field input.error { border-color: var(--danger); }

.form-error {
  display: none;
  font-size: 12.5px;
  color: var(--danger);
  margin-top: 6px;
}

.form-error.visible { display: block; }

.lead-form-card .btn { width: 100%; margin-top: 6px; }

.form-privacy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.visible { display: block; }

.form-success__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint-100);
  color: var(--mint-500);
}

.form-success__icon svg { width: 28px; height: 28px; }

/* --- Footer -------------------------------------------------------------------------------------------------------------------- */

.footer {
  position: relative;
  overflow: hidden;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 30px;
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-bottom: 36px;
}

.footer__brand p { margin-top: 14px; max-width: 460px; font-size: 13px; line-height: 1.7; }

.footer__contact { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 6px; }

.footer__contact a:hover { color: var(--mint-300); }

.footer__nav h4 { color: var(--white); font-size: 15px; margin-bottom: 12px; }

.footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }

.footer__nav a:hover { color: var(--mint-300); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* --- Thank-you page -------------------------------------------------------------------------------------------------------------- */

.thanks-hero {
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(800px 420px at 80% -10%, rgba(242, 59, 74, 0.2), transparent 60%),
    linear-gradient(160deg, var(--blue-950), var(--blue-700));
  padding: calc(var(--header-h) + 72px) 0 80px;
}

.thanks-check {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint-400), var(--mint-500));
  color: var(--blue-950);
  box-shadow: 0 16px 40px rgba(237, 27, 47, 0.4);
}

.thanks-check svg { width: 36px; height: 36px; stroke-width: 3; }

.thanks-hero__title { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; margin: 12px 0; }

.thanks-hero__title .accent { color: var(--mint-300); }

.thanks-hero__subtitle { font-size: 17px; color: rgba(255, 255, 255, 0.82); max-width: 520px; margin-inline: auto; }

.thanks-call-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  padding: 42px 30px;
}

.thanks-call-card__title { font-size: 25px; font-weight: 800; margin: 8px 0 18px; }

.thanks-call-card__title .accent { color: var(--blue-600); }

.thanks-call-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: var(--radius-md);
  padding: 16px 30px;
  transition: transform 0.2s ease;
}

.thanks-call-card__phone:hover { transform: translateY(-2px); }

.thanks-call-card__phone svg { width: 24px; height: 24px; }

.thanks-call-card__hours { margin-top: 14px; font-size: 13.5px; color: var(--ink-faint); }

.thanks-back { text-align: center; padding: 40px 0 70px; }

.thanks-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue-700);
}

.thanks-back a:hover { color: var(--blue-600); }

/* --- Responsive breakpoints ------------------------------------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .lead-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ==========================================================================
   Golan Telecom additions — hero lead form, sticky call footer,
   accessibility widget, cookie consent, page CTA, inner pages.
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --- Hero with lead form first ------------------------------------------- */
.hero--form .hero__grid { align-items: start; }

.hero-form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  border-top: 5px solid var(--golan-red);
}

.hero-form-card__title {
  font-size: clamp(21px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.hero-form-card__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--golan-red-deep);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 11px 18px;
  margin-bottom: 18px;
}

.hero-form-card__call svg { width: 19px; height: 19px; }
.hero-form-card__call bdo { direction: ltr; }

.form-field--inline { margin-bottom: 14px; }
.form-field--inline input {
  background: var(--white);
  border: 1.5px solid #e2d8cf;
  padding: 15px 16px;
}

.hero-form-legal {
  margin-top: 10px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}
.hero-form-legal a { color: rgba(255, 255, 255, 0.9); text-decoration: underline; }

@media (max-width: 1023px) {
  /* Mobile page flow: hero (headline → form) → packages → rest */
  main {
    display: flex;
    flex-direction: column;
  }

  main > #lead { order: 1; }
  main > #packages { order: 2; }
  main > .marquee { order: 3; }
  main > #features { order: 4; }
  main > #how { order: 5; }
  main > #compare { order: 6; }
  main > #faq { order: 7; }
  main > .cta-banner { order: 8; }

  .hero-form-card__call { display: none; }
  /* Headline first on mobile so the page has a clear title; form right below. */
  .hero--form .hero__content { order: 1; }
  .hero--form .hero__form { order: 2; }

  /* Declutter: keep only the headline above the form.
     Social proof stays inside the form (rating row), so nothing essential is lost. */
  .hero--form .hero__eyebrow,
  .hero--form .hero-stats,
  .hero--form .live-pill { display: none; }

  .hero { padding: calc(var(--header-h) + 26px) 0 28px; }
  .hero--form .hero__wave { display: none; }
  .hero__grid { gap: 20px; }
  .hero__title { margin-bottom: 10px; }

  #packages {
    padding-top: 36px;
  }

  /* Leaner form card on mobile */
  .hero-form-card { padding: 20px 18px; }
  .hero-form-card__urgency { margin-bottom: 8px; }

  #compare { display: none; }

  #features { display: none; }
}

/* --- Page CTA banner ----------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: clamp(36px, 5vw, 56px) 0 clamp(44px, 6vw, 64px);
  background:
    radial-gradient(900px 420px at 50% 100%, rgba(237, 27, 47, 0.07), transparent 62%),
    linear-gradient(180deg, var(--white), var(--blue-50));
}

.cta-banner__inner {
  position: relative;
  display: grid;
  gap: clamp(24px, 3.5vw, 36px);
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(720px 380px at 100% -10%, rgba(237, 27, 47, 0.34), transparent 58%),
    radial-gradient(560px 340px at -8% 110%, rgba(237, 27, 47, 0.14), transparent 60%),
    linear-gradient(155deg, #2a3137 0%, #20262b 52%, #181c20 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--golan-red-deep), var(--golan-red), var(--golan-red-deep));
}

.cta-banner__inner::after {
  content: '';
  position: absolute;
  inset-inline-end: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 27, 47, 0.18), transparent 68%);
  pointer-events: none;
}

.cta-banner__body,
.cta-banner__aside {
  position: relative;
  z-index: 1;
}

.cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--mint-300);
  background: rgba(237, 27, 47, 0.14);
  border: 1px solid rgba(242, 59, 74, 0.28);
}

.cta-banner__title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-banner__text {
  max-width: 44ch;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.cta-banner__perks {
  list-style: none;
  margin: 0;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.cta-banner__perks svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--mint-300);
}

.cta-banner__btn {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 16px 28px;
}

.cta-banner__arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.18s ease;
}

.cta-banner__btn:hover .cta-banner__arrow {
  transform: translateX(-4px);
}

.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cta-banner__phone svg {
  width: 17px;
  height: 17px;
  color: var(--mint-300);
}

.cta-banner__phone:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

@media (min-width: 768px) {
  .cta-banner__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    align-items: center;
    gap: clamp(28px, 4vw, 48px);
  }

  .cta-banner__aside {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner__btn:hover .cta-banner__arrow { transform: none; }
}

/* --- Mobile sticky call footer ------------------------------------------- */
.sticky-call {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(29, 24, 19, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -6px 24px rgba(15, 12, 9, 0.35);
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--golan-red-deep), var(--golan-red));
  border-radius: var(--radius-pill);
  padding: 14px;
}

.sticky-call a svg { width: 20px; height: 20px; }

@media (max-width: 1023px) {
  .sticky-call { display: block; }
  body { padding-bottom: 78px; }
}

/* --- Accessibility widget ------------------------------------------------- */
.a11y-toggle {
  position: fixed;
  inset-inline-start: 14px;
  bottom: 14px;
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--golan-red-deep);
  box-shadow: 0 8px 22px rgba(20, 17, 13, 0.35);
}
.a11y-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1023px) {
  .a11y-toggle { bottom: 84px; }
}

.a11y-panel {
  position: fixed;
  inset-inline-start: 14px;
  bottom: 76px;
  z-index: 71;
  width: 280px;
  max-width: calc(100vw - 28px);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  padding: 16px;
  display: none;
}
.a11y-panel.open { display: block; }

@media (max-width: 1023px) {
  .a11y-panel { bottom: 146px; }
}

.a11y-panel h2 { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.a11y-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
}
.a11y-btn:hover { border-color: var(--golan-red); }
.a11y-btn.active { background: var(--golan-red); color: var(--white); border-color: var(--golan-red); }
.a11y-reset { grid-column: 1 / -1; background: var(--ink); color: var(--white); border-color: var(--ink); }
.a11y-statement { grid-column: 1 / -1; margin-top: 4px; font-size: 12.5px; text-align: center; }
.a11y-statement a { color: var(--golan-red-deep); text-decoration: underline; }

body.a11y-font-1 { font-size: 18px; }
body.a11y-font-2 { font-size: 20px; }
body.a11y-contrast { filter: contrast(1.35) saturate(1.2); }
body.a11y-grayscale { filter: grayscale(1); }
body.a11y-links a { text-decoration: underline !important; }
body.a11y-readable * { font-family: Arial, sans-serif !important; letter-spacing: 0.4px; }
body.a11y-highlight :focus { outline: 3px solid var(--golan-red) !important; outline-offset: 2px; }

/* --- Cookie consent popup ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  inset-inline: 14px;
  bottom: 14px;
  z-index: 65;
  max-width: 460px;
  margin-inline: auto;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  padding: 18px 20px;
  display: none;
}
.cookie-banner.show { display: block; }

@media (max-width: 1023px) {
  .cookie-banner { bottom: 84px; }
}

.cookie-banner__text { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner__text a { color: var(--golan-red-deep); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__actions .btn { flex: 1; font-size: 15px; padding: 11px 18px; }
.cookie-decline {
  background: var(--blue-50);
  color: var(--ink);
  border: 1.5px solid var(--blue-100);
}

/* --- Inner content pages -------------------------------------------------- */
.page-hero {
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(800px 420px at 80% -10%, rgba(242, 59, 74, 0.22), transparent 60%),
    linear-gradient(160deg, var(--blue-950), var(--blue-800));
  padding: calc(var(--header-h) + 60px) 0 64px;
}
.page-hero__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.page-hero__sub { margin-top: 10px; color: rgba(255, 255, 255, 0.82); font-size: 17px; }

.content-prose { max-width: 820px; margin-inline: auto; }
.content-prose h2 { font-size: 22px; font-weight: 800; margin: 30px 0 10px; color: var(--ink); }
.content-prose h3 { font-size: 18px; font-weight: 700; margin: 20px 0 8px; color: var(--ink); }
.content-prose p, .content-prose li { font-size: 15.5px; color: var(--ink-soft); line-height: 1.8; }
.content-prose ul { padding-inline-start: 22px; margin: 8px 0; }
.content-prose a { color: var(--golan-red-deep); text-decoration: underline; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 820px; margin-inline: auto; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  text-align: center;
}
.contact-card__icon {
  width: 50px; height: 50px; margin: 0 auto 14px;
  border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--golan-red-deep);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.contact-card a { font-weight: 700; color: var(--golan-red-deep); direction: ltr; display: inline-block; }
.contact-card p { font-size: 14px; color: var(--ink-soft); }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   CONVERSION & MOTION LAYER — sales-psychology redesign (Golan red/slate)
   Urgency, scarcity, anchoring, social proof, animated counters, marquee.
   ========================================================================== */

:root {
  --font-display: 'Rubik', 'Heebo', system-ui, sans-serif;
  --golan-red-glow: rgba(237, 27, 47, 0.45);
}

h1, h2, h3,
.hero__title, .section-title, .hero-form-card__title,
.page-hero__title, .cta-banner__title, .price-card__amount, .price-card__gb {
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

/* --- Atmospheric backgrounds (override cloud image with brand mesh) ------ */
.hero {
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(237, 27, 47, 0.42), transparent 60%),
    radial-gradient(760px 560px at -8% 112%, rgba(237, 27, 47, 0.20), transparent 62%),
    linear-gradient(155deg, #2a3137 0%, #20262b 55%, #181c20 100%);
}
.pricing-section {
  background:
    radial-gradient(820px 440px at 110% 0%, rgba(237, 27, 47, 0.34), transparent 58%),
    radial-gradient(680px 520px at -10% 100%, rgba(237, 27, 47, 0.16), transparent 60%),
    linear-gradient(160deg, #20262b, #2a3137);
}
.lead-section {
  background:
    radial-gradient(700px 420px at 0% 0%, rgba(237, 27, 47, 0.30), transparent 60%),
    linear-gradient(150deg, #2a3137, #20262b);
}

/* Subtle animated grain/glow pulse behind hero */
.hero::after {
  background: var(--golan-red-glow);
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) { .hero::after { animation: none; } }

/* dotPulse keyframe — used by the live "leads today" pill */
@keyframes dotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }

/* --- Hero scarcity + trust micro rows ------------------------------------ */
.hero-form-card__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--golan-red-deep);
  margin-bottom: 10px;
}
/* "fast response" line — plain text, no tag */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.live-pill .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #36d27a; animation: dotPulse 1.4s ease-in-out infinite; }

/* --- Animated stat counters (hero content) ------------------------------- */
.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-stat__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat__num .accent { color: var(--mint-300); }
.hero-stat__label { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* --- Primary CTA: attention pulse + arrow nudge -------------------------- */
.btn-primary { position: relative; }
.btn-cta-pulse { animation: ctaPulse 2.4s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(237,27,47,0.38); }
  50% { box-shadow: 0 10px 34px rgba(237,27,47,0.62), 0 0 0 6px rgba(237,27,47,0.10); }
}
@media (prefers-reduced-motion: reduce) { .btn-cta-pulse { animation: none; } }

/* --- Price anchoring ----------------------------------------------------- */
.price-card__was {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  margin-inline-end: 8px;
}
.price-card__save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--mint-300);
  background: none;
  border-radius: 0;
  padding: 0;
}
.price-card__save::before {
  content: '↓';
  font-size: 14px;
  line-height: 1;
}
.price-card__scarcity {
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mint-300);
}
.price-card--featured { transform: scale(1.03); }
.price-card--featured:hover { transform: scale(1.03) translateY(-6px); }
@media (max-width: 639px) { .price-card--featured { transform: none; } }

/* --- Benefit marquee ----------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--golan-dark);
  color: #fff;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  padding-inline-start: 40px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}
.marquee__track span::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--golan-red);
}
@keyframes marquee { to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --- Hero entrance stagger ----------------------------------------------- */
.hero__form, .hero__content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__form { animation-delay: 0.05s; }
.hero__content > *:nth-child(1) { animation-delay: 0.18s; }
.hero__content > *:nth-child(2) { animation-delay: 0.28s; }
.hero__content > *:nth-child(3) { animation-delay: 0.38s; }
.hero__content > *:nth-child(4) { animation-delay: 0.48s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__form, .hero__content > * { opacity: 1; transform: none; animation: none; }
}
