/* ═══════════════════════════════════════════════════════════
   Hop2School - SEO Website Styles
   ═══════════════════════════════════════════════════════════ */

/* Self-hosted Inter font */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #FF385C;
  --primary-dark: #E0314F;
  --primary-light: #FFF0F3;
  --secondary: #222222;
  --text: #222222;
  --text-secondary: #717171;
  --text-light: #B0B0B0;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F7;
  --border: #EBEBEB;
  --success: #008A05;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════
   Header & Navigation
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.logo-text { color: var(--secondary); }
.nav__menu { display: flex; align-items: center; gap: 20px; }
.nav__link { font-weight: 500; font-size: 14px; color: var(--text-secondary); transition: var(--transition); white-space: nowrap; }
.nav__link:hover { color: var(--primary); }
.nav__link--cta {
  background: var(--primary);
  color: white !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.nav__link--cta:hover { background: var(--primary-dark); }
.nav__link--cta-alt {
  background: var(--secondary) !important;
}
.nav__link--cta-alt:hover { background: #1a1a1a !important; }
.nav__link--secondary {
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 500;
  white-space: nowrap;
}
.nav__link--secondary:hover { border-color: var(--primary); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }

/* Language Switcher */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-switch__btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-switch__btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: var(--transition);
  z-index: 100;
  min-width: 120px;
}
.lang-switch__dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.lang-switch__dropdown a:hover { background: var(--bg-alt); color: var(--primary); }
.lang-switch__dropdown a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,56,92,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,56,92,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-block;
  background: white;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--secondary);
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(255,56,92,0.3);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,56,92,0.4);
}
.btn--outline { background: white; color: var(--secondary); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--full { width: 100%; justify-content: center; }

/* Phone Mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--secondary);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--secondary);
  border-radius: 20px;
  z-index: 10;
}
.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 32px;
  overflow: hidden;
}
.app-preview { height: 100%; display: flex; flex-direction: column; }
.app-preview__header { padding: 40px 20px 16px; text-align: center; font-size: 14px; font-weight: 600; }
.app-preview__card {
  margin: 0 16px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-preview__avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.app-preview__info { flex: 1; }
.app-preview__name { font-weight: 600; font-size: 15px; }
.app-preview__status { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--success); }
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.app-preview__eta {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 10px;
  border-radius: 8px;
}
.app-preview__map {
  flex: 1;
  margin: 16px;
  background: linear-gradient(135deg, #E8F4E8 0%, #F0F8FF 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.map-route {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.6;
}
.map-marker {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.map-marker--bus {
  top: calc(50% - 16px);
  left: calc(40% - 16px);
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(255,56,92,0.4);
  animation: moveBus 3s ease-in-out infinite;
}
.map-marker--bus::after { content: '🚌'; }
.map-marker--school { top: calc(50% - 16px); right: 15%; background: var(--success); }
.map-marker--school::after { content: '🏫'; }
@keyframes moveBus { 0%, 100% { left: calc(30% - 16px); } 50% { left: calc(50% - 16px); } }

/* Floating badges */
.hero__floating {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.hero__floating::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.hero__floating--1 { top: 20%; right: 0; }
.hero__floating--2 { bottom: 30%; left: 5%; animation-delay: 2s; }
.hero__floating--2::before { content: '💬'; background: var(--primary); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero Wave */
.hero__wave { position: absolute; bottom: 0; left: 0; right: 0; color: var(--bg); }
.hero__wave svg { display: block; width: 100%; height: 80px; }

/* ═══════════════════════════════════════════════════════════
   Sections Common
   ═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary);
}
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   Features Section
   ═══════════════════════════════════════════════════════════ */
.features { padding: 100px 0; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.feature-card__icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card__icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.feature-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.feature-card__text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   How It Works Section
   ═══════════════════════════════════════════════════════════ */
.how-it-works { padding: 100px 0; background: var(--bg-alt); }
.steps { display: flex; align-items: flex-start; justify-content: center; max-width: 1000px; margin: 0 auto; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.step__number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.step__text { font-size: 14px; color: var(--text-secondary); max-width: 200px; }
.step__connector { width: 60px; height: 3px; background: var(--border); border-radius: 2px; margin-top: 26px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   Testimonials Section
   ═══════════════════════════════════════════════════════════ */
.testimonials { padding: 100px 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-lg); }
.testimonial__stars { color: #FFB800; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial__text { font-size: 16px; line-height: 1.7; margin-bottom: 24px; color: var(--text); font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial__name { display: block; font-weight: 600; font-style: normal; color: var(--secondary); }
.testimonial__role { font-size: 13px; color: var(--text-secondary); }

/* Testimonial Submit Form */
.testimonial-submit {
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-submit__header { text-align: center; margin-bottom: 28px; }
.testimonial-submit__header h3 { font-size: 22px; font-weight: 700; color: var(--secondary); margin: 0 0 8px; }
.testimonial-submit__header p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.testimonial-form .form-group { margin-bottom: 16px; }
.star-rating { display: block; }
.star-rating__label { display: block; font-size: 14px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.star-rating__stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.star-rating__stars input { display: none; }
.star-rating__stars label {
  font-size: 32px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
}
.star-rating__stars label:hover,
.star-rating__stars label:hover ~ label,
.star-rating__stars input:checked ~ label { color: #FFB800; }
.testimonial-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  min-height: 100px;
  transition: var(--transition);
}
.testimonial-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.testimonial-textarea::placeholder { color: var(--text-light); }
.form-row-inline {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.testimonial-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}
.testimonial-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.testimonial-input::placeholder { color: var(--text-light); }
.testimonial-submit .btn { width: 100%; }
.testimonial-submit__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 16px 0 0;
}
.testimonial-submit__note.success { color: var(--success); }
.testimonial-submit__note.error { color: var(--primary); }

@media (max-width: 480px) {
  .testimonial-submit { padding: 24px 20px; }
  .form-row-inline { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   Find Providers Section
   ═══════════════════════════════════════════════════════════ */
.providers { padding: 100px 0; background: var(--bg-alt); }
.providers__content { max-width: 900px; margin: 0 auto; }
.providers__search { margin-bottom: 48px; text-align: center; }
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  max-width: 560px;
  margin: 0 auto;
  transition: var(--transition);
}
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
.search-box__icon { width: 20px; height: 20px; stroke: var(--text-secondary); flex-shrink: 0; }
.search-box__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 12px 16px;
  font-family: inherit;
  background: transparent;
}
.search-box__input::placeholder { color: var(--text-light); }
.search-box__btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.search-box__btn:hover { background: var(--primary-dark); }
.search-hint { font-size: 13px; color: var(--text-secondary); margin-top: 12px; }

.providers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.provider-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  transition: var(--transition);
}
.provider-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.provider-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #222;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.provider-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.provider-card__logo {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
}
.provider-card__info { flex: 1; min-width: 0; }
.provider-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.provider-card__rating { display: flex; align-items: center; gap: 8px; }
.provider-card__rating .stars { color: #FFB800; font-size: 14px; letter-spacing: 1px; }
.provider-card__rating .rating-text { font-size: 12px; color: var(--text-secondary); }
.provider-card__hubs {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: 10px;
  margin-bottom: 16px;
}
.provider-card__hubs svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.provider-card__hubs span { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.provider-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.provider-card__features li {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.providers__cta { text-align: center; }

/* Loading skeleton */
.provider-card--loading { padding: 24px; }
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
.skeleton--circle { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px; }
.skeleton--text { height: 20px; width: 80%; margin-bottom: 12px; }
.skeleton--text-sm { height: 14px; width: 60%; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Empty state */
.providers__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.providers__empty .empty-icon { font-size: 48px; margin-bottom: 16px; }
.providers__empty h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin: 0 0 8px; }
.providers__empty p { font-size: 14px; color: var(--text-secondary); margin: 0 0 24px; max-width: 300px; margin-left: auto; margin-right: auto; }
.providers__empty .btn { display: inline-flex; }

/* ═══════════════════════════════════════════════════════════
   CTA / Download Section
   ═══════════════════════════════════════════════════════════ */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%); color: white; }
.cta__content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.cta__subtitle { font-size: 18px; opacity: 0.8; margin-bottom: 40px; }
.cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--secondary);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.store-badge__icon { width: 28px; height: 28px; }
.store-badge__text { text-align: left; }
.store-badge__label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; }
.store-badge__store { display: block; font-size: 18px; font-weight: 700; line-height: 1.2; }
.cta__note { font-size: 14px; opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */
.footer { padding: 60px 0 30px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer__top { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 40px; }
.footer__brand { max-width: 280px; }
.footer__tagline { margin-top: 12px; font-size: 14px; color: var(--text-secondary); }
.footer__links { display: flex; gap: 60px; }
.footer__column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--secondary);
}
.footer__column ul { display: flex; flex-direction: column; gap: 10px; }
.footer__column a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.footer__column a:hover { color: var(--primary); }
.footer__bottom { padding-top: 30px; border-top: 1px solid var(--border); text-align: center; font-size: 14px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .providers__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav__menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__toggle { display: flex; }
  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 40px; }
  .phone-mockup { width: 240px; height: 480px; }
  .hero__floating { display: none; }
  .features__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps { flex-direction: column; align-items: center; gap: 20px; }
  .step { flex: none; width: 100%; text-align: center; align-items: center; }
  .step__text { max-width: none; }
  .step__connector { width: 3px; height: 40px; margin: 0; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .search-box { flex-wrap: wrap; padding: 12px; border-radius: var(--radius-lg); }
  .search-box__input { width: 100%; padding: 8px 12px; }
  .search-box__btn { width: 100%; margin-top: 8px; }
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__links { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 120px 0 80px; }
  .hero__cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .store-badge { width: 100%; max-width: 280px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   Organizations Page Styles
   ═══════════════════════════════════════════════════════════ */

/* Org Hero with Dashboard Mockup */
.page-org .hero--org { background: linear-gradient(180deg, #E8F4FF 0%, var(--bg) 100%); }
.page-org .hero__bg {
  background:
    radial-gradient(circle at 20% 80%, rgba(0,100,200,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,100,200,0.04) 0%, transparent 40%);
}
.page-org .hero__badge { background: #E8F4FF; color: #1565C0; }
.page-org .text-gradient { background: linear-gradient(135deg, #1565C0 0%, #42A5F5 100%); -webkit-background-clip: text; background-clip: text; }
.page-org .section-badge { background: #E8F4FF; color: #1565C0; }
.page-org .feature-card__icon--org { background: #E8F4FF; }
.page-org .feature-card__icon--org svg { stroke: #1565C0; }
.page-org .feature-card:hover { border-color: #E8F4FF; }

/* Dashboard Mockup */
.dashboard-mockup {
  width: 480px;
  background: var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dashboard-mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1a1a1a;
}
.dashboard-mockup__dots { display: flex; gap: 6px; }
.dashboard-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}
.dashboard-mockup__dots span:nth-child(1) { background: #FF5F57; }
.dashboard-mockup__dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-mockup__dots span:nth-child(3) { background: #28CA41; }
.dashboard-mockup__title { font-size: 12px; color: #888; flex: 1; text-align: center; }
.dashboard-mockup__content {
  display: flex;
  background: white;
  min-height: 300px;
}
.dashboard-sidebar {
  width: 50px;
  background: var(--bg-alt);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-item {
  height: 32px;
  border-radius: 6px;
  background: var(--border);
}
.sidebar-item.active { background: #1565C0; }
.dashboard-main { flex: 1; padding: 20px; }
.dashboard-stat {
  display: inline-block;
  background: var(--bg-alt);
  padding: 12px 20px;
  border-radius: 8px;
  margin-right: 12px;
  margin-bottom: 16px;
}
.stat-number { display: block; font-size: 24px; font-weight: 800; color: #1565C0; }
.stat-label { font-size: 11px; color: var(--text-secondary); }
.dashboard-map {
  height: 140px;
  background: linear-gradient(135deg, #E8F4E8 0%, #E8F4FF 100%);
  border-radius: 8px;
  position: relative;
}
.dashboard-map::after {
  content: '🚌 🚌 🚌';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  letter-spacing: 30px;
}

/* Benefits Section */
.benefits { padding: 100px 0; background: var(--bg-alt); }
.benefits .section-header { margin-bottom: 48px; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-item:hover {
  box-shadow: var(--shadow);
  border-color: #E8F4FF;
}
.benefit-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #E8F4FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item__icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  stroke: #1565C0;
  fill: none;
}
.benefit-item__content { flex: 1; }
.benefit-item__content h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--secondary); }
.benefit-item__content p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Pricing Section */
.pricing { padding: 100px 0; background: white; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border: 2px solid #1565C0;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover { transform: scale(1.07); }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1565C0;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 20px; }
.pricing-card__name { font-size: 22px; font-weight: 700; color: var(--secondary); margin: 0 0 4px; }
.pricing-card__desc { font-size: 14px; color: var(--text-secondary); margin: 0; }
.pricing-card__price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-amount { display: block; font-size: 40px; font-weight: 800; color: var(--secondary); line-height: 1; }
.price-period { display: block; font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.pricing-card__features { margin-bottom: 24px; text-align: left; }
.pricing-card__features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '✓';
  color: #1565C0;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.pricing-banner { text-align: center; margin-bottom: 40px; padding: 16px 24px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border-radius: 12px; border: 1px solid #a5d6a7; }
.pricing-banner__title { font-size: 20px; font-weight: 700; color: #2e7d32; margin: 0 0 4px; }
.pricing-banner__subtitle { font-size: 14px; color: #388e3c; margin: 0; }
.price-original { display: block; font-size: 18px; font-weight: 600; color: var(--text-secondary); text-decoration: line-through; margin-bottom: 4px; }
.price-free-label { display: block; font-size: 13px; font-weight: 600; color: #2e7d32; margin-top: 6px; }

/* Contact Form */
.cta--org { background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%); }
.cta--org .cta__content { max-width: 600px; }
.contact-form { max-width: 500px; margin: 0 auto; }
.form-row { display: flex; gap: 12px; margin-bottom: 12px; }
.form-input {
  flex: 1;
  padding: 16px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,0.6); }
.form-input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.15); }
.cta--org .btn--primary {
  background: white;
  color: #1565C0;
  margin-top: 12px;
  padding: 16px 32px;
  font-size: 16px;
}
.cta--org .btn--primary:hover { background: #f5f5f5; box-shadow: 0 6px 20px rgba(0,0,0,0.2); transform: translateY(-2px); }
.cta--org .cta__note { margin-top: 16px; }

/* Org Page Responsive */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: none; box-shadow: var(--shadow-lg); }
}
@media (max-width: 768px) {
  .dashboard-mockup { width: 100%; max-width: 400px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
}
