/* ============================================
   Lávame el Coche — Landing Page Styles
   ============================================ */

/* ==================== VARIABLES ==================== */
:root {
  --primary: #0B63E5;
  --primary-dark: #0950B8;
  --primary-light: #EBF3FF;
  --secondary: #00BFA6;
  --secondary-dark: #009D89;
  --accent: #F59E0B;
  --accent-light: #FEF3C7;

  --dark: #0F172A;
  --dark-700: #1E293B;
  --dark-600: #334155;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;

  --gradient-primary: linear-gradient(135deg, #0B63E5 0%, #00BFA6 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 0 60px rgba(11, 99, 229, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-padding: 24px;
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #fff 0%, #a5d8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11, 99, 229, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 99, 229, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* ==================== STORE BADGES ==================== */
.store-badge {
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.store-badge:hover {
  transform: translateY(-3px);
}

.store-badge__svg {
  width: 140px;
  height: 48px;
}

.store-badge--lg .store-badge__svg {
  width: 160px;
  height: 52px;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.navbar__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-600);
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -100px;
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 30%;
  opacity: 0.08;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.hero__stat-value::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--gray-500);
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Hero Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__phone {
  position: relative;
}

.hero__phone-frame {
  width: 280px;
  height: 580px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}

.hero__phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero__phone-screen {
  padding: 16px;
  height: 100%;
  background: var(--gray-50);
}

.hero__phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 16px;
  font-size: 12px;
  font-weight: 600;
}

.hero__phone-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__phone-greeting {
  font-size: 14px;
  color: var(--gray-500);
}

.hero__phone-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero__phone-cards {
  display: flex;
  gap: 10px;
}

.hero__phone-card {
  flex: 1;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.hero__phone-card--active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(11, 99, 229, 0.3);
}

.hero__phone-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 18px;
}

.hero__phone-card--active .hero__phone-card-icon {
  background: rgba(255,255,255,0.2) !important;
}

.hero__phone-booking {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.hero__phone-booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero__phone-booking-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(0, 191, 166, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero__phone-booking-operator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero__phone-avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.hero__phone-map-placeholder {
  height: 80px;
  background: linear-gradient(135deg, #E8F4FD 0%, #F0FAF7 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero__phone-map-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(11, 99, 229, 0.2);
}

.hero__phone-map-dot--end {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.hero__phone-map-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), #22C55E);
  border-radius: 2px;
  position: relative;
}

.hero__phone-map-line::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border: 2px solid white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: move-dot 3s infinite ease-in-out;
}

@keyframes move-dot {
  0% { left: 0; }
  50% { left: calc(100% - 14px); }
  100% { left: 0; }
}

/* Hero scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  animation: float-down 2s infinite ease-in-out;
}

@keyframes float-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background 0.3s;
}

.trust-bar__item:hover {
  background: var(--gray-50);
}

.trust-bar__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.trust-bar__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-bar__item span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ==================== FEATURES ==================== */
.features {
  padding: 100px 0;
  background: var(--gray-50);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-100);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon--blue { background: #EBF5FF; color: var(--primary); }
.feature-card__icon--teal { background: #E6FFF9; color: var(--secondary); }
.feature-card__icon--orange { background: #FFF7ED; color: #F97316; }
.feature-card__icon--purple { background: #F3E8FF; color: #9333EA; }
.feature-card__icon--yellow { background: var(--accent-light); color: var(--accent); }
.feature-card__icon--green { background: #ECFDF5; color: #059669; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(11, 99, 229, 0.3);
}

.step__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.step__content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 23px;
  flex-shrink: 0;
  position: relative;
}

.step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gray-300);
  border-top: 2px solid var(--gray-300);
  transform: rotate(45deg);
}

/* ==================== SERVICES ==================== */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-100);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card--featured {
  border: 2px solid var(--primary);
}

.service-card--featured:hover {
  box-shadow: var(--shadow-glow);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.service-card__header {
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__header--blue { background: linear-gradient(135deg, #EBF5FF 0%, #DBEAFE 100%); }
.service-card__header--gradient { background: var(--gradient-primary); }
.service-card__header--teal { background: linear-gradient(135deg, #E6FFF9 0%, #CCFBF1 100%); }

.service-card__emoji {
  font-size: 42px;
}

.service-card__duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  background: rgba(255,255,255,0.8);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-card__header--gradient .service-card__duration {
  color: var(--white);
  background: rgba(255,255,255,0.2);
}

.service-card__body {
  padding: 24px;
}

.service-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__features {
  margin-bottom: 20px;
}

.service-card__features li {
  font-size: 13px;
  color: var(--dark-600);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.service-card__price {
  font-size: 14px;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.service-card__price strong {
  font-size: 24px;
  color: var(--dark);
}

/* B2B Section */
.services__b2b {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.services__b2b-content {
  padding: 48px;
  color: var(--white);
}

.services__b2b-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-300);
}

.services__b2b-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.services__b2b-content p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}

.services__b2b .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.services__b2b .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ==================== SHOWCASE ==================== */
.showcase {
  padding: 100px 0;
  background: var(--white);
}

.showcase__screens {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
}

.showcase__phone {
  text-align: center;
}

.showcase__phone-frame {
  width: 240px;
  height: 460px;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.4s;
}

.showcase__phone:hover .showcase__phone-frame {
  transform: translateY(-8px);
}

.showcase__phone--center .showcase__phone-frame {
  width: 260px;
  height: 500px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
}

.showcase__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 16px;
}

.showcase__screen {
  height: 100%;
  padding: 16px;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
}

.showcase__mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 16px;
}

.showcase__mock-avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.showcase__mock-avatar-sm {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.showcase__mock-avatar-lg {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.showcase__mock-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.showcase__mock-card--active {
  border-left: 3px solid var(--secondary);
}

.showcase__mock-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-500);
}

.showcase__mock-status--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
}

.showcase__mock-progress {
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.showcase__mock-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Showcase Screen 2 - Map */
.showcase__screen--2 {
  padding: 0;
  position: relative;
}

.showcase__mock-map {
  flex: 1;
  background: linear-gradient(135deg, #E8F4FD 0%, #F0FDFA 50%, #EBF5FF 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__mock-map-pin {
  position: absolute;
  top: 30%;
  right: 30%;
  font-size: 24px;
  z-index: 2;
}

.showcase__mock-map-pin-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(11, 99, 229, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: map-pulse 2s infinite;
}

@keyframes map-pulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.showcase__mock-map-car {
  position: absolute;
  bottom: 40%;
  left: 25%;
  font-size: 24px;
  animation: car-move 4s infinite ease-in-out;
}

@keyframes car-move {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

.showcase__mock-map-route {
  position: absolute;
  width: 60%;
  height: 2px;
  background: var(--primary);
  top: 50%;
  left: 20%;
  transform: rotate(-20deg);
  opacity: 0.4;
}

.showcase__mock-bottom-sheet {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.showcase__mock-handle {
  width: 36px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: 0 auto 12px;
}

.showcase__mock-actions {
  display: flex;
  gap: 10px;
}

.showcase__mock-action-btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  background: var(--gray-50);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

/* Showcase Screen 3 - Profile */
.showcase__mock-profile {
  text-align: center;
  padding: 20px 0;
}

.showcase__mock-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.showcase__mock-menu-item span {
  color: var(--gray-400);
  font-size: 12px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

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

.testimonial-card__stars {
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--dark-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--gray-500);
}

/* ==================== CTA ==================== */
.cta {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.15;
  top: -200px;
  right: -100px;
}

.cta__shape--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.1;
  bottom: -200px;
  left: -100px;
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta__inner p {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta__note {
  font-size: 13px;
  color: var(--gray-500);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 64px 0 0;
  background: var(--dark);
  color: var(--gray-400);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer__brand .navbar__logo {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  transition: all 0.3s;
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}

/* ==================== ANIMATIONS ==================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__phone-frame {
    width: 240px;
    height: 480px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid .service-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase__screens {
    gap: 16px;
  }

  .showcase__phone-frame {
    width: 200px;
    height: 380px;
  }

  .showcase__phone--center .showcase__phone-frame {
    width: 220px;
    height: 420px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --nav-height: 64px;
  }

  .navbar__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
  }

  .navbar__links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 32px) 0 60px;
  }

  .hero__phone-frame {
    width: 220px;
    height: 440px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__scroll-hint {
    display: none;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step__connector {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  .step__connector::after {
    right: -3px;
    top: auto;
    bottom: -4px;
    transform: rotate(135deg);
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__grid .service-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .services__b2b-content {
    padding: 32px 24px;
  }

  .showcase__screens {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .showcase__phone-frame,
  .showcase__phone--center .showcase__phone-frame {
    width: 240px;
    height: 460px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}
