/* ================================================================
   ReviewBoost – TripAdvisor Reviews Landing Page
   Mobile-first, premium design
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --blue-dark: #002C6A;
  --blue-mid: #003F8A;
  --blue-light: #0060CC;
  --teal: #00B67A;
  --teal-dark: #009060;
  --teal-glow: rgba(0, 182, 122, 0.25);
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --text-main: #1A2440;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: rgba(0, 44, 106, 0.1);
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 10px rgba(0, 44, 106, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 44, 106, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 44, 106, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Utility ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: initial;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--sm {
  font-size: 14px;
  padding: 8px 18px;
}

.btn--lg {
  font-size: 16px;
  padding: 15px 30px;
}

.btn--xl {
  font-size: 19px;
  padding: 18px 36px;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--teal-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 182, 122, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border: 1px solid #25D366;
}

.btn--whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
}

.btn--telegram {
  background: #0088CC;
  color: var(--white);
  border: 1px solid #0088CC;
}

.btn--telegram:hover {
  background: #0077B5;
  border-color: #0077B5;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #D97706);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn--featured {
  background: #22c55e;
  color: var(--white);
  border: 2px solid #22c55e;
}

.btn--featured:hover {
  background: var(--white);
  color: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Section Shared ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 182, 122, 0.12), rgba(0, 96, 204, 0.12));
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 182, 122, 0.2);
}

.section-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────── */
/*  HEADER                                                         */
/* ──────────────────────────────────────────────────────────────── */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 40px;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__img {
  height: 56px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .logo__img {
    height: 40px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--teal);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 20px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  animation: slideDown 0.25s ease;
}

.nav.is-open .nav__link {
  font-size: 16px;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
  border-radius: var(--radius-md);
}

.nav.is-open .btn--sm {
  margin-top: 8px;
  width: 100%;
  padding: 13px;
  font-size: 15px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ──────────────────────────────────────────────────────────────── */
/*  HERO                                                           */
/* ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-mid) 50%, #001A40 100%);
  color: var(--white);
  overflow: hidden;
  padding: 130px 0 100px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 182, 122, 0);
  }
}

.hero__title {
  font-size: clamp(32px, 8vw, 62px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -1px;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
}

@media (min-width: 900px) {
  .hero__title {
    max-width: 1000px;
  }
}

.hero__subtitle {
  font-size: clamp(16px, 3vw, 19px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.7;
}

.hero__avatars {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatars__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 360px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 4px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.trust-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Hero shapes */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.shape--1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: -100px;
}

.shape--2 {
  width: 300px;
  height: 300px;
  background: var(--blue-light);
  bottom: -80px;
  left: -80px;
}

.shape--3 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  top: 50%;
  left: 20%;
}

/* ──────────────────────────────────────────────────────────────── */
/*  STATS STRIP                                                    */
/* ──────────────────────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--off-white), var(--lavender));
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.stat-divider {
  display: none;
}

.stat-card__number {
  font-size: clamp(42px, 10vw, 64px);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 240px;
  margin: 8px auto 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stats-strip__source {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 24px;
  font-style: italic;
}

/* ──────────────────────────────────────────────────────────────── */
/*  HOW IT WORKS                                                   */
/* ──────────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.step {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 182, 122, 0.04), rgba(0, 96, 204, 0.04));
  opacity: 0;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step:hover::before {
  opacity: 1;
}

.step__number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 44, 106, 0.06);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.step__icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.step__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__arrow {
  font-size: 28px;
  color: var(--teal);
  font-weight: 700;
  transform: rotate(90deg);
}

/* ──────────────────────────────────────────────────────────────── */
/*  WHY US                                                         */
/* ──────────────────────────────────────────────────────────────── */
.why-us {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 182, 122, 0.2);
}

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
}

.why-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────── */
/*  PRICING                                                        */
/* ──────────────────────────────────────────────────────────────── */
.pricing {
  padding: 80px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--popular {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 182, 122, 0.08), var(--shadow-md);
}

.pricing-card--best {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1), var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card__badge--gold {
  background: linear-gradient(135deg, var(--gold), #D97706);
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 52px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}

.price-currency {
  font-size: 28px;
  font-weight: 700;
  vertical-align: super;
  line-height: 1;
}

.pricing-card__reviews {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 6px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-main);
}

.feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 182, 122, 0.12);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.feat-disabled {
  opacity: 0.4;
}

.feat-disabled .feat-icon {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
}


.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.pricing-note a {
  color: var(--teal);
  font-weight: 600;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* ──────────────────────────────────────────────────────────────── */
/*  TESTIMONIALS                                                   */
/* ──────────────────────────────────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--lavender) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.1), var(--shadow-sm);
}

.testimonial-card__stars {
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
}

.testimonial-card__biz {
  font-size: 13px;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────────── */
/*  GUARANTEE                                                      */
/* ──────────────────────────────────────────────────────────────── */
.guarantee {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 60px 20px;
  text-align: center;
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.guarantee__icon {
  font-size: 56px;
}

.guarantee__title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.guarantee__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────── */
/*  FAQ                                                            */
/* ──────────────────────────────────────────────────────────────── */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 182, 122, 0.3);
}

.faq-item.is-open {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--lavender);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.is-open .faq-icon {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

/* ──────────────────────────────────────────────────────────────── */
/*  FINAL CTA                                                      */
/* ──────────────────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(160deg, var(--blue-dark), #001226);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.06;
  filter: blur(80px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta__stars {
  font-size: 28px;
  letter-spacing: 4px;
}

.final-cta__title {
  font-size: clamp(26px, 6vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.final-cta__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: 1.6;
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────────── */
/*  FOOTER                                                         */
/* ──────────────────────────────────────────────────────────────── */
.footer {
  background: #010D1F;
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__brand .logo__text {
  color: var(--white);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.footer__links {
  display: flex;
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--teal);
}

.footer__bottom {
  padding: 20px 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────── */
/*  FLOATING WHATSAPP                                              */
/* ──────────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

.telegram-float {
  position: fixed;
  bottom: 96px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088CC, #0077B5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.telegram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 136, 204, 0.65);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.whatsapp-float:hover {
  animation: none;
}

/* ──────────────────────────────────────────────────────────────── */
/*  RESPONSIVE – TABLET (≥ 640px)                                  */
/* ──────────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
    max-width: 480px;
  }

  .final-cta__buttons {
    flex-direction: row;
    max-width: 480px;
  }

  .stats-strip__inner {
    grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 60px;
    background: var(--border);
    align-self: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
  }

  .step__arrow {
    transform: none;
    margin-top: 80px;
  }

  .guarantee__inner {
    flex-direction: row;
    text-align: left;
    gap: 28px;
  }
}

/* ──────────────────────────────────────────────────────────────── */
/*  RESPONSIVE – DESKTOP (≥ 900px)                                 */
/* ──────────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  .header__inner {
    justify-content: space-between;
  }

  .nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .pricing-card--popular {
    transform: scale(1.04);
  }

  .pricing-card--popular:hover {
    transform: scale(1.04) translateY(-4px);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__brand {
    max-width: 300px;
  }
}

/* ──────────────────────────────────────────────────────────────── */
/*  ACCESSIBILITY / MOTION                                          */
/* ──────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ░░ LIGHTBOX ░░ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 44, 106, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.testimonial-img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.testimonial-img:hover {
  transform: scale(1.02);
}