/* ============================================
   Pelephone Landing Page — Mobile First RTL
   ============================================ */

:root {
  --blue-primary: #0066cc;
  --blue-bright: #1e7fdb;
  --blue-dark: #003d7a;
  --blue-deeper: #001b3f;
  --blue-light: #e8f2fc;
  --blue-mist: #f0f7ff;
  --cyan: #00c2e0;
  --cyan-bright: #22d3ee;
  --cyan-glow: rgba(34, 211, 238, 0.45);
  --purple-accent: #6366f1;
  --gold: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --grad-primary: linear-gradient(135deg, #0066cc 0%, #00c2e0 100%);
  --grad-deep: linear-gradient(135deg, #001b3f 0%, #003d7a 50%, #0066cc 100%);
  --grad-soft: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.25) 0%, transparent 60%);
  --grad-mesh: radial-gradient(at 20% 0%, rgba(0, 102, 204, 0.18) 0%, transparent 50%), radial-gradient(at 90% 30%, rgba(34, 211, 238, 0.15) 0%, transparent 50%), radial-gradient(at 60% 100%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);

  --shadow-xs: 0 1px 2px rgba(0, 27, 63, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 27, 63, 0.08), 0 1px 2px rgba(0, 27, 63, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 27, 63, 0.10), 0 2px 6px rgba(0, 27, 63, 0.05);
  --shadow-lg: 0 20px 48px rgba(0, 27, 63, 0.14), 0 4px 12px rgba(0, 27, 63, 0.06);
  --shadow-xl: 0 32px 80px rgba(0, 27, 63, 0.18), 0 8px 24px rgba(0, 27, 63, 0.08);
  --shadow-glow: 0 0 60px var(--cyan-glow);
  --shadow-blue-glow: 0 12px 40px rgba(0, 102, 204, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 999px;

  --font: 'Heebo', 'Rubik', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.5s var(--ease);

  --header-h: 64px;
  --sticky-cta-h: 76px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
  padding-bottom: var(--sticky-cta-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--cyan);
  color: var(--white);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  color: var(--blue-deeper);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-title .accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-primary);
  background-size: 200% 100%;
  color: var(--white);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
  background-position: 100% 0;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.btn-phone:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(0, 102, 204, 0.08);
}

.header .container {
  height: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--blue-primary);
  transition: transform var(--transition);
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.03);
}

.logo__img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo__badge {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-600);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo--footer .logo__badge {
  color: rgba(255, 255, 255, 0.75);
}

.logo__icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 6px rgba(0, 102, 204, 0.25));
}

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
  margin-inline-start: auto;
  margin-inline-end: 16px;
}

.header__phone:hover {
  color: var(--blue-primary);
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--blue-primary);
}

.header__cta {
  display: none;
  align-self: center;
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.9rem;
  line-height: 1.25;
  min-height: 42px;
}

@media (min-width: 768px) {
  .header__cta,
  .header__phone {
    display: inline-flex;
  }

  .header__phone {
    align-self: center;
  }
}

/* ---- Hero ---- */
.hero {
  padding: calc(var(--header-h) + 6px) 0 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 70%);
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--sticky-cta-h) - 180px);
}

.hero .container {
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 102, 204, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero__content {
  order: 1;
  text-align: center;
}

.hero__title {
  font-size: clamp(1.7rem, 5.6vw, 3rem);
  color: var(--blue-deeper);
  margin-bottom: 12px;
  animation: fadeInUp 0.6s 0.1s var(--ease) both;
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.2;
}

.hero__title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  font-size: 0.98rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  animation: fadeInUp 0.6s 0.2s var(--ease) both;
  line-height: 1.55;
  max-width: 540px;
  margin-inline: auto;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s 0.3s var(--ease) both;
  justify-content: center;
}

.hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
}

.hero__feature svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  animation: fadeInUp 0.6s 0.4s var(--ease) both;
  align-items: stretch;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.6s 0.5s var(--ease) both;
  max-width: 560px;
  margin: 0 auto;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-700);
  font-weight: 600;
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  background: rgba(0, 102, 204, 0.10);
  border-radius: 50%;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--blue-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  opacity: 0.75;
  animation: hero-scroll-bounce 2.2s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
}

.hero__scroll:hover {
  opacity: 1;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

@media (min-width: 992px) {
  .hero {
    padding: calc(var(--header-h) + 12px) 0 36px;
    min-height: calc(100svh - 280px);
    align-items: center;
  }

  .hero__content {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero__title {
    margin-bottom: 14px;
  }

  .hero__subtitle {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }

  .hero__features {
    margin-bottom: 20px;
  }

  .hero__actions {
    margin-bottom: 0;
    justify-content: center;
  }

  .hero__scroll {
    bottom: 12px;
  }
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: min(240px, 70vw);
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 992px) {
  .phone-mockup {
    width: min(280px, 100%);
  }
}

.phone-mockup__frame {
  background: linear-gradient(145deg, #001b3f 0%, #003d7a 50%, #002855 100%);
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    var(--shadow-xl),
    var(--shadow-glow),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  position: relative;
}

.phone-mockup__frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 41px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 50%);
  pointer-events: none;
}

.phone-mockup__screen {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 40%);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
}

.phone-mockup__notch {
  width: 90px;
  height: 22px;
  background: #001b3f;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
}

.phone-mockup__notch::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 16px;
  width: 6px;
  height: 6px;
  background: #1e293b;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(0, 180, 216, 0.4);
}

.phone-mockup__content {
  padding: 14px;
}

.phone-mockup__header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.phone-mockup__logo-small {
  font-weight: 800;
  color: var(--blue-primary);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}

.phone-mockup__signal {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.phone-mockup__signal span {
  width: 3px;
  background: var(--cyan);
  border-radius: 2px;
}

.phone-mockup__signal span:nth-child(1) { height: 5px; }
.phone-mockup__signal span:nth-child(2) { height: 8px; }
.phone-mockup__signal span:nth-child(3) { height: 11px; }
.phone-mockup__signal span:nth-child(4) { height: 14px; background: var(--blue-primary); }

.phone-mockup__plan {
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  padding: 14px;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.phone-mockup__plan::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.phone-mockup__plan-label {
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 600;
  position: relative;
}

.phone-mockup__plan-data {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  position: relative;
  letter-spacing: -0.02em;
}

.phone-mockup__plan-price {
  font-size: 0.85rem;
  opacity: 0.95;
  margin-top: 4px;
  font-weight: 600;
  position: relative;
}

.phone-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.phone-mockup__stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
}

.phone-mockup__stat-value {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue-primary);
}

.phone-mockup__stat-label {
  font-size: 0.6rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 2px;
}

.phone-mockup__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.phone-mockup__bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.phone-mockup__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  border-radius: 4px;
}

.phone-mockup__bar:nth-child(1)::after { width: 92%; }
.phone-mockup__bar:nth-child(2)::after { width: 76%; background: linear-gradient(90deg, var(--cyan), var(--blue-primary)); }
.phone-mockup__bar:nth-child(3)::after { width: 60%; background: linear-gradient(90deg, var(--blue-primary), var(--purple-accent)); }

.phone-mockup__glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 65%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Floating cards around phone */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-800);
  border: 1px solid var(--gray-100);
  z-index: 2;
  pointer-events: none;
}

.floating-card svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 6px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--blue-primary);
}

.floating-card--top {
  top: 14%;
  right: -18%;
  animation: float-card-1 5s ease-in-out infinite;
}

.floating-card--top svg {
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
}

.floating-card--mid {
  top: 50%;
  left: -22%;
  animation: float-card-2 6s ease-in-out infinite;
}

.floating-card--mid svg {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.floating-card--bottom {
  bottom: 12%;
  right: -14%;
  animation: float-card-3 5.5s ease-in-out infinite;
}

.floating-card--bottom svg {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.floating-card-strong {
  font-size: 0.95rem;
  color: var(--blue-deeper);
  font-weight: 800;
  line-height: 1.1;
}

.floating-card-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
}

@media (max-width: 991px) {
  .floating-card--top { right: -8%; top: 10%; }
  .floating-card--mid { left: -8%; }
  .floating-card--bottom { right: -8%; }
}

@media (max-width: 480px) {
  .floating-card { display: none; }
}

/* ---- Packages ---- */
.packages {
  padding: 48px 0 72px;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .packages {
    padding: 64px 0 88px;
  }
}

.packages::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.packages::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.packages .container {
  position: relative;
}

.packages__grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .packages__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 24px;
  }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  isolation: isolate;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background 0.4s var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 0;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 204, 0.2);
}

.package-card:hover::before {
  background: var(--grad-primary);
}

.package-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(34, 211, 238, 0.25);
  z-index: 1;
}

.package-card--featured::before {
  background: var(--grad-primary);
  height: 6px;
}

@media (min-width: 768px) {
  .package-card--featured:hover {
    transform: translateY(-6px);
  }
}

.package-card__badge {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  background: var(--grad-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
  z-index: 5;
  display: inline-flex;
  align-items: center;
}

.package-card__badge::before {
  content: '★';
  margin-inline-end: 4px;
  color: var(--gold);
}

.package-card__savings {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
}

.package-card__name {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 4px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.package-card__data-big {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-deeper);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}

.package-card__data-big-unit {
  font-size: 1.2rem;
  color: var(--gray-500);
  font-weight: 600;
}

.package-card__price {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.package-card__from {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  width: 100%;
  text-align: center;
  margin-bottom: -4px;
}

.package-card__amount {
  font-size: 3.25rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}

.package-card__price .package-card__amount {
  font-size: 2.75rem;
}

.package-card__price:has(.package-card__from) .package-card__amount {
  font-size: 2.5rem;
}

.package-card__currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-primary);
  align-self: baseline;
  margin-inline-start: 0.15em;
}

.package-card__period {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.package-card__old-price {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  text-align: center;
  margin-bottom: 14px;
}

.package-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 8px 0 18px;
}

.package-card__features {
  list-style: none;
  flex: 1;
  min-height: 9.75rem;
  margin-bottom: 24px;
}

.package-card > .btn {
  margin-top: auto;
}

.package-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--gray-700);
  font-weight: 500;
}

.package-card__features li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
}

.package-card--featured .package-card__features li svg {
  background: rgba(0, 102, 204, 0.12);
  color: var(--blue-primary);
}

.package-card__footer {
  margin-top: 14px;
  text-align: center;
}

.package-card__more {
  background: none;
  border: none;
  color: var(--blue-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 6px 10px;
  font-family: inherit;
  transition: color var(--transition);
}

.package-card__more:hover {
  color: var(--blue-dark);
}

/* ---- Lead Form ---- */
.lead-form-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.lead-form-section .container {
  position: relative;
}

.lead-form-wrapper {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.lead-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--grad-primary);
}

.lead-form-wrapper::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.lead-form-wrapper > * {
  position: relative;
}

.lead-form__header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.lead-form__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue-glow);
}

.lead-form__icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.lead-form__title {
  font-size: 1.5rem;
  color: var(--blue-deeper);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead-form__subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.lead-form__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
  padding: 14px 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lead-form__call:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.lead-form__call svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.lead-form__call-text {
  white-space: nowrap;
}

.lead-form__call-number {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .lead-form-wrapper {
    padding: 28px 18px;
  }

  .lead-form__title {
    font-size: 1.3rem;
  }

  .lead-form__call {
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
  }

  .lead-form__call-number {
    font-size: 1.2rem;
  }
}

.lead-form__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 8px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.lead-form__divider::before,
.lead-form__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.lead-form__consent {
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--gray-600);
  text-align: center;
}

.lead-form__consent a {
  color: var(--blue-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form__consent a:hover {
  color: var(--blue-dark);
}

.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: all var(--transition);
  direction: rtl;
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 500;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.lead-form__submit {
  margin-top: 8px;
}

.lead-form__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.lead-form__trust svg {
  width: 18px;
  height: 18px;
  color: var(--blue-primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success.visible {
  display: block;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: #22c55e;
  margin: 0 auto 16px;
}

.form-success h3 {
  color: var(--blue-deeper);
  margin-bottom: 8px;
}

/* ---- Benefits ---- */
.benefits {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, #e8f2fc 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.benefits .container {
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 204, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-blue-glow);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease);
  position: relative;
}

.benefit-card__icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.benefit-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  position: relative;
}

.benefit-card__title {
  font-size: 1.05rem;
  color: var(--blue-deeper);
  margin-bottom: 8px;
  font-weight: 700;
}

.benefit-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonials__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  background: linear-gradient(135deg, var(--blue-mist) 0%, #ffffff 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .testimonials__stats {
    gap: 60px;
    padding: 32px 48px;
  }
}

.testimonials__stat {
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 100px;
}

.testimonials__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  inset-inline-start: 0;
  width: 1px;
  background: var(--gray-200);
}

@media (max-width: 600px) {
  .testimonials__stat:not(:last-child)::after {
    display: none;
  }
}

.testimonials__stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.testimonials__stat-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.testimonials__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  inset-inline-start: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue-primary);
  opacity: 0.18;
  line-height: 1;
  font-weight: 700;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0, 102, 204, 0.15);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  position: relative;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: #fbbf24;
  fill: #fbbf24;
}

.testimonial-card__text {
  font-size: 0.97rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.75;
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gray-800);
  font-style: normal;
  display: block;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-card__location::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ---- FAQ ---- */
.faq {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 102, 204, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: right;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--blue-deeper);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--blue-primary);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item:hover .faq-item__icon {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
  background: var(--blue-primary);
  color: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 26px 22px;
  color: var(--gray-600);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* ---- Final CTA ---- */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #001b3f 0%, #003d7a 50%, #0066cc 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(34, 211, 238, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: gradient-shift 12s ease-in-out infinite;
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

.final-cta__content {
  position: relative;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.final-cta__badge svg {
  width: 16px;
  height: 16px;
  color: var(--cyan-bright);
}

.final-cta__title {
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.final-cta__title .accent {
  background: linear-gradient(135deg, #ffffff, var(--cyan-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta .btn-primary {
  background: var(--white);
  color: var(--blue-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 50px rgba(34, 211, 238, 0.3);
}

.final-cta .btn-primary:hover {
  background: var(--cyan-bright);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 80px rgba(34, 211, 238, 0.5);
}

.final-cta__features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.final-cta__feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.final-cta__feature svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-bright);
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(180deg, #001b3f 0%, #000c1f 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
}

.footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 340px;
  line-height: 1.55;
}

.footer__contact {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 340px;
  line-height: 1.5;
}

.footer__contact li + li {
  margin-top: 6px;
}

.footer__contact a {
  color: var(--cyan);
  transition: opacity var(--transition);
}

.footer__contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer__phone svg {
  width: 22px;
  height: 22px;
}

.footer__nav h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__nav ul {
  list-style: none;
}

.footer__nav li {
  margin-bottom: 10px;
}

.footer__nav a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--cyan);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ---- Sticky Mobile CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99;
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 24px rgba(0, 27, 63, 0.1);
  height: var(--sticky-cta-h);
  align-items: center;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

.sticky-cta .btn {
  flex: 1;
  padding: 13px 14px;
  font-size: 0.92rem;
  height: 50px;
}

.sticky-cta__phone {
  flex: 0 0 auto;
  width: 50px;
  padding: 0;
  border-radius: var(--radius-sm);
  height: 50px;
}

.sticky-cta__whatsapp {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 0;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition);
}

.sticky-cta__whatsapp:hover {
  transform: translateY(-2px);
}

.sticky-cta__whatsapp svg {
  width: 24px;
  height: 24px;
}

/* ---- Internal Pages ---- */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 102, 204, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-primary);
  padding: 7px 16px 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 102, 204, 0.12);
}

.page-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blue-deeper);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero__title .accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-content {
  padding: 64px 0 80px;
}

.error-404 {
  text-align: center;
  max-width: 520px;
}

.error-404__code {
  font-size: clamp(4rem, 18vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  margin-bottom: 8px;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.error-404__actions .btn {
  min-width: 200px;
}

.error-404__hint {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.error-404__hint a {
  color: var(--blue-primary);
  font-weight: 600;
}

.error-404__hint a:hover {
  color: var(--blue-dark);
}

.page-content .container {
  max-width: 880px;
}

.content-block {
  margin-bottom: 32px;
}

.content-block h2 {
  font-size: 1.5rem;
  color: var(--blue-deeper);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-block h2::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.content-block p,
.content-block li {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 1rem;
}

.content-block ul {
  padding-right: 20px;
}

/* Stats row for about page */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.about-stat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-stat__value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* Highlight callout box */
.callout {
  background: linear-gradient(135deg, var(--blue-mist) 0%, #ffffff 100%);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-primary);
}

.callout__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.callout__icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.callout__title {
  font-size: 1.05rem;
  color: var(--blue-deeper);
  font-weight: 800;
  margin-bottom: 4px;
}

.callout__text {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--grad-primary);
}

.contact-info-card h3 {
  color: var(--blue-deeper);
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-top: 2px;
  padding: 4px;
  background: var(--blue-light);
  border-radius: 50%;
  box-sizing: content-box;
}

.contact-info-item strong {
  display: block;
  color: var(--gray-800);
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-info-item span {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--blue-primary);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--blue-dark);
}

.contact-notice {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.04) 100%);
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 28px;
  line-height: 1.65;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.contact-notice strong {
  display: block;
  color: var(--blue-deeper);
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-company-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

.contact-company-block h4 {
  color: var(--blue-deeper);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-company-block p {
  margin: 0 0 8px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.55;
}

.admin-contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.admin-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gray-500), var(--gray-400));
}

.admin-contact-form__header {
  margin-bottom: 22px;
}

.admin-contact-form__title {
  color: var(--blue-deeper);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.admin-contact-form__subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

.admin-contact-form .form-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-cta-banner {
  margin-top: 48px;
  padding: 36px 28px;
  text-align: center;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.contact-cta-banner p {
  margin: 0 auto 22px;
  max-width: 520px;
  opacity: 0.95;
  line-height: 1.6;
  font-size: 0.98rem;
}

.contact-cta-banner .btn {
  background: var(--white);
  color: var(--blue-primary);
  font-weight: 700;
}

.contact-cta-banner .btn:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  margin-top: 16px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Channel cards on contact page */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .contact-channels {
    grid-template-columns: repeat(4, 1fr);
  }
}

.channel-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: block;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 204, 0.2);
}

.channel-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  box-shadow: var(--shadow-sm);
}

.channel-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.channel-card--whatsapp .channel-card__icon {
  background: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.channel-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-deeper);
  margin-bottom: 4px;
}

.channel-card__desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Legal content (terms / privacy) */
.legal-wrap {
  display: grid;
  gap: 32px;
}

@media (min-width: 992px) {
  .legal-wrap {
    grid-template-columns: 220px 1fr;
    gap: 48px;
  }
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: none;
}

@media (min-width: 992px) {
  .legal-toc {
    display: block;
  }
}

.legal-toc__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 12px;
  font-weight: 700;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}

.legal-toc li {
  counter-increment: toc;
  margin-bottom: 6px;
}

.legal-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}

.legal-toc a::before {
  content: counter(toc);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.legal-toc a:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.legal-toc a:hover::before {
  background: var(--blue-primary);
  color: var(--white);
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--blue-deeper);
  margin: 32px 0 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.legal-content h2::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin: 20px 0 10px;
  font-weight: 700;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-right: 20px;
  color: var(--gray-600);
  line-height: 1.85;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content ul li:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--blue-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- Thank You Page ---- */
.thanks-hero {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

.thanks-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 102, 204, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.thanks-hero .container {
  position: relative;
  z-index: 1;
}

.thanks-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35), 0 0 0 8px rgba(16, 185, 129, 0.08);
  position: relative;
  animation: thanks-pop 0.6s var(--ease-spring) backwards;
}

.thanks-check::before,
.thanks-check::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.3);
  inset: -14px;
  animation: thanks-ring 2s ease-out infinite;
}

.thanks-check::after {
  animation-delay: 0.6s;
}

.thanks-check svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  stroke-width: 3;
  animation: thanks-draw 0.5s 0.3s var(--ease) backwards;
}

@keyframes thanks-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes thanks-draw {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes thanks-ring {
  0% { opacity: 0.6; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.3); }
}

.thanks-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: #059669;
  padding: 7px 16px 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.thanks-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 1.6s infinite;
}

.thanks-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blue-deeper);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.thanks-hero__title .accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-hero__subtitle {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.thanks-summary {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  justify-content: center;
}

.thanks-summary[hidden],
.thanks-summary__chip[hidden] {
  display: none !important;
}

.thanks-summary__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--gray-700);
  box-shadow: var(--shadow-xs);
}

.thanks-summary__chip strong {
  color: var(--blue-deeper);
  font-weight: 700;
}

.thanks-summary__chip svg {
  width: 14px;
  height: 14px;
  color: var(--blue-primary);
}

/* Timeline of "what happens next" */
.thanks-timeline-section {
  padding: 64px 0;
  background: var(--white);
}

.thanks-timeline {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 36px auto 0;
}

@media (min-width: 768px) {
  .thanks-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.thanks-step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.thanks-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.thanks-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}

.thanks-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-step__icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-primary);
}

.thanks-step__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-deeper);
  margin-bottom: 6px;
}

.thanks-step__text {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.thanks-step__time {
  display: inline-block;
  margin-top: 12px;
  background: var(--blue-light);
  color: var(--blue-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Alternative actions row */
.thanks-actions-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.thanks-actions {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 24px auto 0;
}

@media (min-width: 640px) {
  .thanks-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.thanks-action {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.thanks-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 204, 0.2);
}

.thanks-action__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--grad-primary);
  box-shadow: var(--shadow-sm);
}

.thanks-action--whatsapp .thanks-action__icon {
  background: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.thanks-action__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.thanks-action__body {
  flex: 1;
}

.thanks-action__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-deeper);
  margin-bottom: 2px;
}

.thanks-action__text {
  color: var(--gray-600);
  font-size: 0.86rem;
}

.thanks-action__arrow {
  color: var(--blue-primary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.thanks-action:hover .thanks-action__arrow {
  transform: translateX(-4px);
}

/* Trust strip */
.thanks-trust {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.thanks-trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 36px;
  text-align: center;
}

.thanks-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.thanks-trust__item svg {
  width: 20px;
  height: 20px;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.thanks-back {
  text-align: center;
  padding: 32px 0 64px;
}

.thanks-back a {
  color: var(--gray-600);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.thanks-back a:hover {
  color: var(--blue-primary);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(10px) rotate(2deg); }
}

@keyframes float-card-3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes gradient-shift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Accessibility ---- */
:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.18);
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: -100px;
  right: 16px;
  z-index: 1000;
  background: var(--blue-primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: top 0.2s var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---- Modal (package details) ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none !important;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 27, 63, 0.55);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.35s var(--ease) both;
}

.modal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__close:hover {
  background: var(--gray-200);
}

.modal__title {
  font-size: 1.35rem;
  color: var(--blue-deeper);
  margin-bottom: 16px;
  padding-inline-end: 40px;
  line-height: 1.3;
}

.modal__lead {
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.65;
}

.modal__list {
  list-style: none;
  margin-bottom: 16px;
}

.modal__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.modal__list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.modal__note {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 18px;
}

.modal__cta {
  margin-top: 4px;
}

body.modal-open {
  overflow: hidden;
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 250;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -12px 40px rgba(0, 27, 63, 0.12);
  padding: 16px 0;
}

.cookie-banner[hidden] {
  display: none !important;
}

body.cookie-banner-visible {
  padding-bottom: calc(var(--sticky-cta-h) + 120px);
}

body.cookie-banner-visible .sticky-cta {
  bottom: 120px;
}

@media (min-width: 1024px) {
  body.cookie-banner-visible {
    padding-bottom: 0;
  }

  body.cookie-banner-visible .sticky-cta {
    bottom: 0;
  }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.cookie-banner__title {
  font-weight: 700;
  color: var(--blue-deeper);
  margin-bottom: 4px;
}

.cookie-banner__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.cookie-banner__desc a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__decline {
  background: var(--gray-100);
  color: var(--gray-700);
  border-color: transparent;
}

.cookie-banner__decline:hover {
  background: var(--gray-200);
}

/* ---- Accessibility widget ---- */
.a11y-fab {
  position: fixed;
  left: 16px;
  bottom: calc(var(--sticky-cta-h) + 14px);
  z-index: 240;
  width: auto;
  min-height: 48px;
  padding: 0 16px 0 12px;
  border: none;
  border-radius: 999px;
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg), var(--shadow-blue-glow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.a11y-fab svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.a11y-fab__label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.a11y-fab:hover {
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .a11y-fab {
    bottom: 24px;
  }

  body.cookie-banner-visible .a11y-fab {
    bottom: 140px;
  }
}

.a11y-panel {
  position: fixed;
  left: 16px;
  bottom: calc(var(--sticky-cta-h) + 76px);
  z-index: 241;
  width: min(300px, calc(100vw - 32px));
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  padding: 16px;
  animation: fadeInUp 0.3s var(--ease) both;
}

.a11y-panel[hidden] {
  display: none !important;
}

@media (min-width: 1024px) {
  .a11y-panel {
    bottom: 88px;
  }

  body.cookie-banner-visible .a11y-panel {
    bottom: 204px;
  }
}

.a11y-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.a11y-panel__title {
  font-size: 1rem;
  color: var(--blue-deeper);
}

.a11y-panel__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--gray-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a11y-panel__close svg {
  width: 18px;
  height: 18px;
}

.a11y-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 60vh;
  overflow-y: auto;
  padding-inline-end: 4px;
}

.a11y-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.a11y-panel__step {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-primary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.a11y-panel__step:hover {
  background: var(--blue-light);
  border-color: rgba(0, 102, 204, 0.3);
}

.a11y-panel__step-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-700);
  min-width: 56px;
  text-align: center;
}

.a11y-panel__btn {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-800);
  cursor: pointer;
  text-align: right;
  transition: background var(--transition), border-color var(--transition);
}

.a11y-panel__btn:hover,
.a11y-panel__btn[aria-pressed="true"] {
  background: var(--blue-light);
  border-color: rgba(0, 102, 204, 0.25);
  color: var(--blue-primary);
}

.a11y-panel__btn[aria-pressed="true"]::before {
  content: '✓ ';
  color: var(--blue-primary);
  font-weight: 800;
}

.a11y-panel__btn--reset {
  margin-top: 6px;
  color: var(--gray-600);
  background: var(--gray-50);
}

/* Accessibility modes — High contrast (dark) */
body.a11y-contrast {
  background: #000 !important;
  color: #fff !important;
}

body.a11y-contrast .header,
body.a11y-contrast .package-card,
body.a11y-contrast .lead-form-wrapper,
body.a11y-contrast .benefit-card,
body.a11y-contrast .modal__dialog,
body.a11y-contrast .a11y-panel,
body.a11y-contrast .cookie-banner,
body.a11y-contrast .footer,
body.a11y-contrast .sticky-cta {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.a11y-contrast a,
body.a11y-contrast .btn,
body.a11y-contrast button,
body.a11y-contrast input,
body.a11y-contrast select,
body.a11y-contrast textarea {
  background: #000 !important;
  color: #fff !important;
  border: 2px solid #ff0 !important;
}

body.a11y-contrast a {
  color: #ff0 !important;
  text-decoration: underline !important;
  border: none !important;
}

body.a11y-contrast .btn-primary {
  background: #fff !important;
  color: #000 !important;
}

body.a11y-contrast h1,
body.a11y-contrast h2,
body.a11y-contrast h3,
body.a11y-contrast h4,
body.a11y-contrast .accent,
body.a11y-contrast .section-title span,
body.a11y-contrast .hero__title span {
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}

/* High contrast (light) — black text on white, no gradients */
body.a11y-contrast-light {
  background: #fff !important;
  color: #000 !important;
}

body.a11y-contrast-light *,
body.a11y-contrast-light *::before,
body.a11y-contrast-light *::after {
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

body.a11y-contrast-light .header,
body.a11y-contrast-light .package-card,
body.a11y-contrast-light .lead-form-wrapper,
body.a11y-contrast-light .benefit-card,
body.a11y-contrast-light .modal__dialog,
body.a11y-contrast-light .a11y-panel,
body.a11y-contrast-light .cookie-banner,
body.a11y-contrast-light .footer,
body.a11y-contrast-light .sticky-cta {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}

body.a11y-contrast-light a {
  color: #0033aa !important;
  text-decoration: underline !important;
}

body.a11y-contrast-light .btn,
body.a11y-contrast-light button {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
}

body.a11y-contrast-light .btn-primary {
  background: #000 !important;
  color: #fff !important;
}

body.a11y-contrast-light h1,
body.a11y-contrast-light h2,
body.a11y-contrast-light h3,
body.a11y-contrast-light .accent,
body.a11y-contrast-light .section-title span,
body.a11y-contrast-light .hero__title span {
  background: none !important;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
}

/* Grayscale */
body.a11y-grayscale {
  filter: grayscale(100%) !important;
}

/* Highlight links */
body.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px !important;
  background: rgba(255, 235, 59, 0.35) !important;
  padding: 0 2px;
  border-radius: 3px;
}

/* Highlight focus — strong visible ring around any focused element */
body.a11y-highlight-focus *:focus,
body.a11y-highlight-focus *:focus-visible {
  outline: 4px solid #ff9800 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 8px rgba(255, 152, 0, 0.35) !important;
}

/* Readable font */
body.a11y-readable,
body.a11y-readable * {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.04em !important;
}

/* Wider line spacing + word spacing */
body.a11y-spacing,
body.a11y-spacing * {
  line-height: 1.9 !important;
  word-spacing: 0.16em !important;
  letter-spacing: 0.03em !important;
}

/* Big cursor */
body.a11y-big-cursor,
body.a11y-big-cursor * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 32 32'><path d='M5 3l8 24 4-10 10-4-22-10z' fill='%23000' stroke='%23fff' stroke-width='1.5'/></svg>") 4 4, auto !important;
}

body.a11y-big-cursor a,
body.a11y-big-cursor button,
body.a11y-big-cursor [role="button"],
body.a11y-big-cursor input,
body.a11y-big-cursor select,
body.a11y-big-cursor textarea {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 32 32'><path d='M16 4l-2 6h-6l5 4-2 8 5-5 5 5-2-8 5-4h-6z' fill='%230066cc' stroke='%23fff' stroke-width='1.5'/></svg>") 16 16, pointer !important;
}

/* Stop animations (manual toggle, in addition to prefers-reduced-motion) */
body.a11y-stop-animations *,
body.a11y-stop-animations *::before,
body.a11y-stop-animations *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}
