/* ========================================
   Vendora Travel System - Landing Page
   ======================================== */

:root {
  --primary: #0056b3;
  --primary-dark: #004494;
  --primary-light: #e8f2fc;
  --primary-glow: rgba(0, 86, 179, 0.15);
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #868e96;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --footer-bg: #001f3f;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --danger: #dc3545;
  --gold: #ffc107;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: 'Almarai', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 86, 179, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.04) 0%, transparent 75%);
  background-attachment: fixed;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* ── Section inner wrappers — horizontal page padding ── */
/* Every known direct-child wrapper inside .container gets 24px side padding */
.header__inner,
.hero__inner,
.section-header,
.features__header,
.features__category,
.features__final-cta,
.compare__header-row,
.compare__rows,
.pain-points__grid,
.pain-solution__box,
.testimonials__grid,
.stats__grid,
.showcase__grid,
.showcase__bar,
.video-section__inner,
.mobile-app__inner,
.faq__list,
.cta__box,
.footer__grid,
.footer__bottom,
.founder-story__inner {
  padding-left: 24px;
  padding-right: 24px;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.35);
}

.btn--outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary-light);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--ghost:hover {
  background: var(--primary-light);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

.btn--full {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 40px;
  width: auto;
  display: block;
}

.logo--footer .logo__img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__list a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav__list a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav__list a i {
  font-size: 10px;
  margin-right: 4px;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 40px) 0 60px;
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 86, 179, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.04) 0%, transparent 75%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 86, 179, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.whatsapp-badge:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-badge i {
  font-size: 18px;
}

.hero__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero__desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
  max-width: 550px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
}

.hero__trust-item i {
  color: var(--primary);
  font-size: 16px;
}

/* Device Mockups */
.device-mockup {
  position: relative;
}

.device-mockup__glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.device-mockup__laptop {
  position: relative;
  z-index: 1;
  width: 420px;
  margin: 0 auto;
}

.device-mockup__laptop::after {
  content: '';
  display: block;
  width: 110%;
  height: 8px;
  background: linear-gradient(to bottom, #ccc, #999);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  margin-top: -2px;
}

.device-mockup__screen {
  background: #1a1a2e;
  border-radius: 8px 8px 0 0;
  padding: 8px;
  border: 2px solid #333;
}

.device-mockup__phone {
  position: absolute;
  bottom: 20px;
  left: -20px;
  width: 100px;
  z-index: 2;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 6px;
  border: 2px solid #333;
  box-shadow: var(--shadow-lg);
}

.device-mockup__phone-screen {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.device-mockup__img {
  width: 100%;
  height: auto;
  display: block;
}

.device-mockup__phone-screen .device-mockup__img {
  height: 100%;
  object-fit: cover;
}

.device-mockup--small .device-mockup__laptop {
  width: 280px;
}

.device-mockup--small .device-mockup__phone {
  width: 70px;
  left: -10px;
  bottom: 10px;
}

.device-mockup__laptop--light .device-mockup__screen {
  background: #fff;
  border-color: #ddd;
}

/* Dashboard UI inside mockups */
.dashboard {
  background: #f0f4f8;
  border-radius: 4px;
  padding: 8px;
  min-height: 180px;
}

.dashboard--mobile {
  min-height: 120px;
  padding: 6px;
}

.dashboard__header {
  height: 20px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: 8px;
}

.dashboard__header--client {
  background: linear-gradient(90deg, var(--primary), #007bff);
}

.dashboard__charts {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.dashboard__chart {
  flex: 1;
  height: 60px;
  border-radius: 4px;
}

.dashboard__chart--pie {
  background: conic-gradient(var(--primary) 0% 35%, #28a745 35% 60%, #ffc107 60% 100%);
}

.dashboard__chart--line {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 86, 179, 0.2) 100%);
  border-bottom: 2px solid var(--primary);
  position: relative;
}

.dashboard__chart--line::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  clip-path: polygon(0 100%, 15% 40%, 30% 60%, 50% 20%, 70% 50%, 85% 30%, 100% 10%, 100% 100%);
}

.dashboard__chart--bar {
  height: 50px;
  background: repeating-linear-gradient(90deg,
      var(--primary) 0 12px,
      transparent 12px 16px,
      #28a745 16px 28px,
      transparent 28px 32px,
      #ffc107 32px 44px,
      transparent 44px 48px);
  align-self: flex-end;
}

.dashboard__table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard__row {
  height: 12px;
  background: var(--white);
  border-radius: 2px;
  border-right: 3px solid var(--primary);
}

.dashboard__cards {
  display: flex;
  gap: 4px;
}

.dashboard__mini-card {
  flex: 1;
  height: 40px;
  background: var(--white);
  border-radius: 4px;
  border-top: 2px solid var(--primary);
}

/* ========================================
   Pain Points — Premium Redesign
   ======================================== */
.pain-points {
  padding: 90px 0 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid background */
.pain-points::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 86, 179, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Section header */
.pain-points .section-header {
  position: relative;
  z-index: 1;
}

.pain-points .section-title {
  color: var(--gray-800);
}

.pain-points .section-subtitle {
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.9;
}

/* Eyebrow badge */
.pain-points__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.07);
  color: var(--danger);
  border: 1px solid rgba(220, 53, 69, 0.18);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.pain-points__eyebrow i {
  font-size: 13px;
}

/* 9-card grid */
.pain-points__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

/* Card shell — handles the hover lift */
.pain-points__card {
  position: relative;
  border-radius: var(--radius-lg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.pain-points__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 86, 179, 0.11);
}

/* Inner wrapper with border */
.pain-points__card-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.pain-points__card:hover .pain-points__card-inner {
  border-color: rgba(0, 86, 179, 0.25);
}

/* Top-left accent bar on hover */
.pain-points__card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), rgba(0, 86, 179, 0.3));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: height 0.35s ease;
}

.pain-points__card:hover .pain-points__card-inner::before {
  height: 100%;
}

/* Card number badge */
.pain-points__number {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 0.5px;
}

/* Icon — line SVG style */
.pain-points__icon {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  border: 1px solid rgba(0, 86, 179, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.pain-points__card:hover .pain-points__icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.pain-points__icon svg {
  display: block;
  transition: stroke 0.3s ease;
}

.pain-points__card:hover .pain-points__icon svg {
  stroke: var(--white);
}

/* Card title */
.pain-points__card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.45;
}

/* Card description */
.pain-points__card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.85;
  flex-grow: 1;
  margin-bottom: 18px;
}

/* Tag chip at bottom */
.pain-points__tag {
  display: inline-flex;
  align-items: center;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  width: fit-content;
  margin-top: auto;
  transition: all 0.3s ease;
}

.pain-points__card:hover .pain-points__tag {
  background: var(--primary-light);
  color: var(--primary);
}

/* ==========================================
   Pain Solution Transition Block
   ========================================== */
.pain-solution {
  margin-top: 72px;
  padding: 0 0 0;
}

.pain-solution__box {
  background: linear-gradient(135deg, #001f3f 0%, #003f7f 45%, #0056b3 100%);
  border-radius: 24px;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
}

/* Glow orb */
.pain-solution__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.35) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
  border-radius: 50%;
}

/* Dot grid overlay */
.pain-solution__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 24px;
  pointer-events: none;
}

.pain-solution__content {
  position: relative;
  z-index: 1;
}

/* Badge */
.pain-solution__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.pain-solution__badge i {
  color: #5dca89;
  font-size: 14px;
}

/* Title */
.pain-solution__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}

/* Subtitle */
.pain-solution__subtitle {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 460px;
}

/* CTA Button */
.pain-solution__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pain-solution__btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.pain-solution__btn i {
  font-size: 15px;
}

/* Visual — module chips */
.pain-solution__visual {
  position: relative;
  z-index: 1;
}

.pain-solution__modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pain-solution__mod {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.pain-solution__mod:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-4px);
}

.pain-solution__mod i {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}




/* ========================================
   Partners
   ======================================== */
.partners {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.partners__header {
  text-align: center;
  margin-bottom: 32px;
}

.partners__label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 700;
}

.partners__sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 4px;
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partners__logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition);
}

.partners__logo:hover {
  opacity: 1;
  color: var(--gray-400);
}

/* ========================================
   Screenshots Section
   ======================================== */
.screenshots {
  padding: 80px 0;
  background: var(--gray-50);
}

.screenshots-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.screenshots-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px;
  flex: 1;
}

.screenshots-track::-webkit-scrollbar {
  display: none;
}

.screenshots-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  scroll-snap-align: start;
}

.screenshots-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.screenshots-card__image {
  height: 180px;
  overflow: hidden;
}

.screenshots-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshots-card__content {
  padding: 16px;
}

.screenshots-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.screenshots-card__desc {
  font-size: 13px;
  color: var(--gray-500);
}

.screenshots-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.screenshots-arrow:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.screenshots-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.screenshots-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.screenshots-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.screenshots-dot:hover {
  background: var(--gray-500);
}

.screenshots-dot.screenshots-dot--active {
  background: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* Lightbox */
.screenshots-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.screenshots-lightbox.screenshots-lightbox--active {
  display: flex;
}

.screenshots-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.screenshots-lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.screenshots-lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshots-lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.screenshots-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.screenshots-lightbox__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.screenshots-lightbox__arrow:hover {
  background: var(--primary);
}

/* ========================================
   Statistics
   ======================================== */
.stats {
  padding: 60px 0;
  background: var(--gray-50);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stats__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.stats__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stats__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.stats__number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stats__label {
  font-size: 13px;
  color: var(--gray-500);
}

/* ========================================
   Showcase
   ======================================== */
.showcase {
  padding: 80px 0;
  background: var(--white);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.showcase__card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.showcase__card:hover {
  box-shadow: var(--shadow-md);
}

.showcase__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.showcase__screenshot {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition);
}

.showcase__card:hover .showcase__screenshot {
  transform: scale(1.02);
}

.showcase__content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.showcase__content p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.8;
}

.showcase__bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 32px;
}

.showcase__bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}

.showcase__bar-item i {
  color: var(--primary);
  font-size: 18px;
}

/* ========================================
   Video Section
   ======================================== */
.video-section {
  position: relative;
  padding: 80px 0;
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 63, 0.75);
}

.video-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.video-section__mockup {
  justify-self: start;
}

.video-section__screenshot {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
}

.video-section__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.video-section__play i {
  font-size: 28px;
  color: var(--primary);
  margin-right: -4px;
}

.video-section__play:hover {
  transform: scale(1.1);
  background: var(--white);
}

.video-section__content {
  justify-self: end;
  text-align: right;
  color: var(--white);
}

.video-section__content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.video-section__content p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 400px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  left: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.video-modal__iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-modal__iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Mobile App Section
   ======================================== */
.mobile-app {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.mobile-app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mobile-app__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-app__phones {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
}

.mobile-app__phone {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-app__phone--main {
  width: 58%;
  left: 21%;
  top: 10%;
  z-index: 3;
}

.mobile-app__phone--left {
  width: 48%;
  left: 0;
  bottom: 5%;
  z-index: 1;
  transform: rotate(-8deg);
}

.mobile-app__phone--right {
  width: 48%;
  right: 0;
  bottom: 5%;
  z-index: 1;
  transform: scaleX(-1) rotate(-8deg);
}

.mobile-app__visual:hover .mobile-app__phone--main {
  transform: translateY(-8px);
}

.mobile-app__visual:hover .mobile-app__phone--left {
  transform: rotate(-12deg) translate(-10px, 5px);
}

.mobile-app__visual:hover .mobile-app__phone--right {
  transform: scaleX(-1) rotate(-12deg) translate(-10px, 5px);
}

.mobile-app__content .features__badge {
  margin-bottom: 18px;
  display: inline-flex;
}

.mobile-app__content .section-title {
  text-align: right;
  margin-bottom: 24px;
}

.mobile-app__desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.mobile-app__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-app__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.mobile-app__benefits li i {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

/* ========================================
   Features
   ======================================== */
/* ========================================
   Features — Premium SaaS Experience
   ======================================== */
.features {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.features__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.features__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.features__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: 12px;
}

.features__subtitle {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Category Wrapper */
.features__category {
  margin-bottom: 64px;
}

.features__category:last-of-type {
  margin-bottom: 56px;
}

/* Category header */
.features__category-info {
  margin-bottom: 24px;
  border-right: 3px solid var(--primary);
  padding-right: 16px;
}

.features__category-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.features__category-desc {
  font-size: 14px;
  color: var(--gray-500);
}

/* 4-column Grid for Category Cards */
.features__category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Premium Card */
.features__card-premium {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.features__card-premium:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: rgba(0, 86, 179, 0.25);
  box-shadow: 0 16px 32px rgba(0, 86, 179, 0.08);
}

/* Icon */
.features__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.features__card-premium:hover .features__card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.06) rotate(3deg);
}

.features__card-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

/* Card Typography */
.features__card-premium h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
  line-height: 1.4;
}

.features__card-premium p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Link Arrow button */
.features__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  transition: color var(--transition);
}

.features__card-link .arrow-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.features__card-premium:hover .features__card-link .arrow-icon {
  transform: translateX(-4px);
  /* Moves left in RTL */
}

/* ==========================================
   Final Features CTA
   ========================================== */
.features__final-cta {
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.04) 0%, rgba(0, 119, 204, 0.08) 100%);
  border: 1px solid rgba(0, 86, 179, 0.12);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.features__final-cta-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  pointer-events: none;
}

.features__final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.features__final-cta-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.4;
}

.features__final-cta-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.features__final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.35);
  transition: all var(--transition);
}

.btn--cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.45);
}

.btn--cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(0, 86, 179, 0.2);
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.btn--cta-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}



/* ========================================
   Comparison — Row Layout
   ======================================== */
.compare {
  padding: 80px 0;
  background: var(--white);
}

/* Column header row */
.compare__header-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  margin-bottom: 12px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.compare__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: 17px;
  font-weight: 800;
}

.compare__header i {
  font-size: 20px;
  flex-shrink: 0;
}

.compare__header--vendora {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-bottom: none;
  color: var(--primary);
  justify-content: flex-end;
  border-left: none;
}

.compare__header--traditional {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-bottom: none;
  color: #dc2626;
  justify-content: flex-start;
  border-right: none;
}

.compare__header-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-400);
  background: var(--white);
}

/* Rows container */
.compare__rows {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Individual row */
.compare__row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  transition: background 0.25s ease;
}

.compare__row:not(:last-child) {
  border-bottom: 1px solid var(--gray-100);
}

.compare__row:hover {
  background: rgba(37, 99, 235, 0.03);
}

.compare__row:hover .compare__cell--vendora {
  background: rgba(37, 99, 235, 0.05);
}

.compare__row:hover .compare__cell--traditional {
  background: rgba(239, 68, 68, 0.03);
}

/* Cells */
.compare__cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  transition: background 0.25s ease;
}

.compare__cell i {
  font-size: 18px;
  flex-shrink: 0;
}

.compare__cell--vendora {
  background: rgba(37, 99, 235, 0.03);
  color: var(--gray-700);
  justify-content: flex-end;
  text-align: right;
  border-left: 1px solid var(--gray-100);
}

.compare__cell--vendora i {
  color: var(--primary);
  order: 1;
}

.compare__cell--vendora span {
  order: 0;
}

.compare__cell--traditional {
  background: rgba(239, 68, 68, 0.02);
  color: var(--gray-500);
  justify-content: flex-start;
  text-align: right;
  border-right: 1px solid var(--gray-100);
}

.compare__cell--traditional i {
  color: #ef4444;
}

/* VS divider column */
.compare__row-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
}

.compare__row-vs::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--gray-200);
}


/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  padding: 80px 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonials__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonials__stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonials__quote {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  min-height: 80px;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonials__author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
}

.testimonials__author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ========================================
   Founder Story
   ======================================== */
.founder-story {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.founder-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Right Side: Image Card */
.founder-story__right {
  position: sticky;
  top: 100px;
}

.founder-story__image-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.founder-story__image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.founder-story__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.founder-story__info {
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(0, 86, 179, 0.01) 100%);
}

.founder-story__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.founder-story__role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* Left Side: Content */
.founder-story__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder-story__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.35;
  margin-bottom: 28px;
}

.founder-story__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Achievements */
.founder-story__achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.founder-story__achievement-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: start;
  gap: 16px;
  transition: all var(--transition);
}

.founder-story__achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  background: rgba(0, 86, 179, 0.02);
}

.founder-story__achievement-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.founder-story__achievement-card:hover .founder-story__achievement-icon {
  background: var(--primary);
  color: var(--white);
}

.founder-story__achievement-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.founder-story__achievement-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.founder-story__achievement-content p:last-child {
  font-size: 13px;
  color: var(--gray-500);
}

/* Timeline */
.founder-story__timeline {
  margin: 40px 0;
  padding: 28px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.founder-story__timeline-item {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 12px;
}

.founder-story__timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.founder-story__timeline-content {
  flex: 1;
}

.founder-story__timeline-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.founder-story__timeline-content p {
  font-size: 14px;
  color: var(--gray-600);
}

.founder-story__timeline-divider {
  display: flex;
  justify-content: center;
  color: var(--gray-300);
  margin: 4px 0 8px;
  padding-right: 8px;
}

/* Closing Message */
.founder-story__closing {
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
  border: 1px solid rgba(0, 86, 179, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: start;
  gap: 16px;
  margin: 40px 0;
}

.founder-story__closing-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}

.founder-story__closing-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.9;
  font-weight: 500;
}

/* Buttons */
.founder-story__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq__list {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  transition: background var(--transition);
}

.faq__question:hover {
  background: var(--primary-light);
}

.faq__question i {
  font-size: 14px;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ========================================
   CTA Form — Redesigned
   ======================================== */
.cta {
  padding: 0 0 80px;
  background: linear-gradient(160deg, #001f3f 0%, #0056b3 60%, #0077cc 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.cta::before,
.cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.cta::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

/* Wave top */
.cta__wave-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 48px;
}

.cta__wave-top svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Heading block */
.cta__heading {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.cta__badge i {
  font-size: 14px;
  color: var(--gold);
}

.cta__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.cta__title span {
  color: var(--gold);
}

.cta__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* Main two-col box */
.cta__box {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Left: info panel ── */
.cta__info {
  color: var(--white);
}

.cta__info-inner {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.cta__info-inner h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Benefits list */
.cta__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cta__benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta__benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  transition: all var(--transition);
}

.cta__benefits li:hover .cta__benefit-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.cta__benefits li div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.cta__benefits li div span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Trust badges */
.cta__trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta__trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.cta__trust-badge i {
  color: #5dca89;
  font-size: 13px;
}

.cta__trust-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* ── Right: form card ── */
.cta__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.cta__form-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 28px;
  text-align: center;
}

.cta__form-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.cta__form-header p {
  font-size: 13px;
  color: var(--gray-500);
}

.cta__form {
  padding: 28px 28px 0;
}

.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label i {
  color: var(--primary);
  font-size: 11px;
}

.form-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  color: var(--gray-700);
  transition: all var(--transition);
  direction: rtl;
  background: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder {
  color: var(--gray-400);
  font-size: 12px;
}

/* Submit button */
.btn--cta-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, #0077cc 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 12px;
}

.btn--cta-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.btn--cta-submit i {
  font-size: 16px;
}

.cta__form-note {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  padding: 0 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cta__form-note i {
  color: #5dca89;
}

/* ── Logo pattern strip ── */
.cta__logo-pattern {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 14px 0;
  overflow: hidden;
}

.cta__logo-pattern-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}

.cta__logo-pattern-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.25;
  filter: grayscale(1);
  flex-shrink: 0;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.cta__logo-pattern:hover .cta__logo-pattern-inner {
  animation-play-state: paused;
}



/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--white);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer__contact li i {
  color: var(--primary);
  width: 16px;
}

.logo--footer .logo__text strong {
  color: var(--white);
}

.logo--footer .logo__text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.8;
  margin: 16px 0 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
}

/* ========================================
   Responsive
   ======================================== */

/* ── Large tablets / small desktops ── */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .nav__list {
    gap: 2px;
  }

  .nav__list a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__title {
    font-size: 28px;
  }

  .cta__box {
    gap: 28px;
  }

  .mobile-app__phones {
    max-width: 340px;
  }
}

/* ── Tablets / small laptops ── */
@media (max-width: 1024px) {

  .founder-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-story__right {
    position: static;
  }

  .founder-story__image-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .nav,
  .header__actions .btn--outline {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Mobile nav overlay */
  .nav.active {
    display: block;
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .nav.active .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav.active .nav__list>li>a {
    padding: 13px 16px;
    font-size: 15px;
    display: block;
    border-radius: 8px;
  }

  /* Mobile dropdown */
  .nav.active .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    min-width: auto;
    background: var(--gray-50);
    border-radius: 8px;
    margin-top: 4px;
  }

  .nav.active .nav__dropdown-menu a {
    padding: 10px 16px;
    font-size: 14px;
  }

  .header__actions {
    margin-right: auto;
  }

  /* Hero */
  .hero {
    padding: calc(var(--header-height) + 30px) 0 50px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 680px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  .hero__buttons,
  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .device-mockup__laptop {
    width: 320px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Pain points */
  .pain-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-solution__box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 36px;
  }

  .pain-solution__modules {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Showcase */
  .showcase__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Screenshots */
  .screenshots-card {
    width: 280px;
  }

  .screenshots-card__image {
    height: 160px;
  }

  .screenshots-arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  /* Video */
  .video-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .video-section__content {
    justify-self: center;
    text-align: center;
  }

  .video-section__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .video-section__mockup {
    justify-self: center;
  }

  .video-section__screenshot {
    max-width: 480px;
  }

  /* Mobile app */
  .mobile-app__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-app__visual {
    order: -1;
  }

  .mobile-app__phones {
    max-width: 360px;
    margin: 0 auto;
  }

  .mobile-app__content .section-title,
  .mobile-app__desc {
    text-align: center;
  }

  .mobile-app__benefits li {
    justify-content: center;
  }

  /* Features */
  .features__category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__final-cta {
    padding: 48px 32px;
  }

  /* Compare */
  .compare__header-row,
  .compare__row {
    grid-template-columns: 1fr 48px 1fr;
  }

  .compare__cell {
    padding: 16px 18px;
    font-size: 13px;
  }

  .compare__header {
    padding: 14px 18px;
    font-size: 15px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .cta__box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta__heading {
    margin-bottom: 36px;
  }

  .cta__title {
    font-size: 26px;
  }

  .cta__info-inner {
    padding: 28px 24px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ── Mobile landscape / small tablets ── */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  /* Typography */
  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Hero */
  .hero {
    padding: calc(var(--header-height) + 48px) 0 64px;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.35;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    gap: 14px;
  }

  .hero__trust-item {
    font-size: 12px;
  }

  /* Sections general padding */
  .pain-points,
  .showcase,
  .features,
  .compare,
  .testimonials,
  .faq,
  .mobile-app,
  .founder-story {
    padding: 56px 0;
  }

  /* Founder Story */
  .founder-story__title {
    font-size: 26px;
  }

  .founder-story__achievements {
    grid-template-columns: 1fr;
  }

  .founder-story__buttons {
    flex-direction: column;
  }

  .founder-story__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stats {
    padding: 48px 0;
  }

  .video-section {
    padding: 56px 0;
  }

  /* Pain points */
  .pain-points__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .pain-points__card {
    padding: 24px 20px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stats__number {
    font-size: 22px;
  }

  .stats__card {
    padding: 20px 14px;
  }

  /* Showcase */
  .showcase__card {
    padding: 20px;
  }

  .showcase__bar {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px;
  }

  /* Screenshots */
  .screenshots {
    padding: 56px 0;
  }

  .screenshots-card {
    width: 260px;
  }

  .screenshots-card__image {
    height: 150px;
  }

  .screenshots-wrapper {
    gap: 12px;
  }

  .screenshots-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .screenshots-lightbox__arrow {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .screenshots-lightbox__close {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Video */
  .video-section__content h2 {
    font-size: 22px;
  }

  .video-section__play {
    width: 64px;
    height: 64px;
  }

  .video-section__play i {
    font-size: 22px;
  }

  /* Mobile app phones */
  .mobile-app__phones {
    max-width: 280px;
    aspect-ratio: 3/4;
  }

  /* Features */
  .features {
    padding: 64px 0;
  }

  .features__header {
    margin-bottom: 48px;
  }

  .features__category {
    margin-bottom: 56px;
  }

  .features__category-info {
    border-right: none;
    border-bottom: 3px solid var(--primary);
    padding-right: 0;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }

  .features__category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features__card-premium {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .features__final-cta {
    padding: 40px 24px;
    border-radius: 20px;
    margin-top: 48px;
  }

  .features__final-cta-content h3 {
    font-size: 22px;
  }

  .features__final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .features__final-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Compare — stack to single column on mobile */
  .compare__header-row,
  .compare__row {
    grid-template-columns: 1fr;
  }

  .compare__header-vs,
  .compare__row-vs {
    display: none;
  }

  .compare__header--vendora {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-left: 1px solid rgba(37, 99, 235, 0.15);
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
    justify-content: flex-start;
  }

  .compare__header--traditional {
    border-radius: 0;
    border-right: 1px solid rgba(239, 68, 68, 0.15);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    margin-bottom: 4px;
  }

  .compare__cell--vendora,
  .compare__cell--traditional {
    justify-content: flex-start;
    border-right: none;
    border-left: none;
  }

  .compare__cell--vendora i {
    order: 0;
  }

  .compare__cell--vendora span {
    order: 1;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* FAQ */
  .faq__question {
    font-size: 14px;
    padding: 16px 18px;
  }

  /* CTA */
  .cta {
    padding: 0 0 56px;
  }

  .cta__box {
    gap: 20px;
  }

  .cta__title {
    font-size: 22px;
  }

  .cta__form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta__form {
    padding: 20px 20px 0;
  }

  .cta__form-header {
    padding: 16px 20px;
  }

  .cta__info-inner {
    padding: 24px 20px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .partners__logos {
    gap: 20px;
  }
}

/* ── Large phones (portrait) ── */
@media (max-width: 576px) {
  .hero__title {
    font-size: 23px;
  }

  .whatsapp-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* Stats single column at small sizes */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pain points always 1 col */
  .pain-points__grid {
    grid-template-columns: 1fr;
  }

  /* Footer full width columns */
  .footer__grid {
    grid-template-columns: 1fr;
  }

  /* Showcase bar items */
  .showcase__bar-item {
    font-size: 13px;
  }

  /* Mobile app phones smaller */
  .mobile-app__phones {
    max-width: 240px;
  }

  /* Compare */
  .compare__col {
    padding: 24px 16px;
  }

  .compare__col ul li {
    font-size: 13px;
  }

  /* CTA */
  .cta__title {
    font-size: 20px;
  }

  .cta__subtitle {
    font-size: 13px;
  }

  .cta__form {
    padding: 16px 16px 0;
  }

  .cta__form-header {
    padding: 14px 16px;
  }

  .cta__info-inner {
    padding: 20px 16px;
  }

  /* WhatsApp float smaller */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 16px;
    left: 16px;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__actions .btn--primary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    padding: calc(var(--header-height) + 36px) 0 48px;
  }

  .hero__title {
    font-size: 21px;
  }

  .hero__trust {
    gap: 10px;
  }

  .hero__trust-item {
    font-size: 11px;
  }

  .section-title {
    font-size: 20px;
  }

  .btn--lg {
    padding: 12px 20px;
    font-size: 14px;
  }

  .pain-points__card {
    padding: 20px 16px;
  }

  .pain-points__icon {
    width: 44px;
    height: 44px;
  }

  .pain-points__card h3 {
    font-size: 15px;
  }

  .testimonials__card {
    padding: 20px;
  }

  .testimonials__quote {
    min-height: auto;
  }

  .faq__list {
    max-width: 100%;
  }

  .video-section__content h2 {
    font-size: 19px;
  }

  .video-section__content p {
    font-size: 13px;
  }
}

/* ── Extra-small phones ── */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .logo__img {
    height: 32px;
  }

  .hero__title {
    font-size: 19px;
  }

  .section-title {
    font-size: 18px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stats__number {
    font-size: 18px;
  }

  .stats__card {
    padding: 16px 10px;
  }

  .stats__label {
    font-size: 11px;
  }

  .mobile-app__phones {
    max-width: 200px;
  }

  .header__actions .btn--primary {
    padding: 7px 10px;
    font-size: 11px;
  }
}