/* =========================================================
   tutaxis.es — Main Stylesheet
   Dark: #0D1117 | Accent: #EAB308 | Text: #F0F6FC
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0D1117;
  --bg2:       #161B22;
  --bg3:       #1C2128;
  --border:    #30363D;
  --accent:    #EAB308;
  --accent2:   #CA8A04;
  --accent-dim:#EAB30820;
  --text:      #F0F6FC;
  --text2:     #8B949E;
  --text3:     #6E7681;
  --green:     #3FB950;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }
section:nth-child(even) { background: var(--bg2); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text2);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span.icon {
  font-size: 1.3rem;
}

.nav-logo span.yellow { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text2);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent2) !important; text-decoration: none !important; }

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

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 2rem 1.25rem;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a.cta-mobile {
  background: var(--accent);
  color: #000;
  text-align: center;
  border-radius: var(--radius);
  padding: 0.875rem;
  font-weight: 700;
  border: none;
  margin-top: 0.5rem;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(234,179,8,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(234,179,8,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-dim);
  border: 1px solid rgba(234,179,8,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 { margin-bottom: 1.25rem; }

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(234,179,8,0.25);
  text-decoration: none;
  color: #000;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn-ghost {
  background: var(--bg3);
  color: var(--text2);
  border: 1px solid var(--border);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text2);
}

.trust-item .icon { color: var(--accent); font-size: 1rem; }

/* ── Price Cards ── */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}

.price-card:hover {
  border-color: rgba(234,179,8,0.4);
  transform: translateY(-3px);
}

.price-card:hover::before { opacity: 1; }

.price-route {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--text2);
  font-weight: 400;
}

.price-time {
  font-size: 0.8rem;
  color: var(--text3);
  margin-bottom: 1.25rem;
}

.price-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.price-link:hover { text-decoration: underline; }

.prices-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text3);
  text-align: center;
}

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 { margin-bottom: 0.5rem; }

.why-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.review-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.review-origin {
  font-size: 0.75rem;
  color: var(--text3);
}

.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Booking Form ── */
.booking-section { background: var(--bg2); }

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-info h2 { margin-bottom: 1rem; }

.booking-info p {
  color: var(--text2);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.booking-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.booking-feature .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.booking-feature p {
  font-size: 0.875rem;
  color: var(--text2);
  margin: 0;
}

.booking-form-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B949E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234,179,8,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Contact options after submit */
.contact-options {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid rgba(234,179,8,0.25);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-options.visible { display: block; }

.contact-options h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-options p {
  color: var(--text2);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-buttons .btn {
  justify-content: center;
  width: 100%;
}

/* ── App Section ── */
.app-section {
  background: var(--bg2);
  text-align: center;
}

.app-inner {
  max-width: 560px;
  margin: 0 auto;
}

.app-inner h2 { margin-bottom: 0.75rem; }
.app-inner p {
  color: var(--text2);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.app-stores {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s;
  opacity: 0.55;
  filter: grayscale(0.3);
  font-family: var(--font-body);
}

.store-btn:hover { border-color: var(--border); opacity: 0.65; }

.store-btn-icon { font-size: 1.8rem; }

.store-btn-text { text-align: left; }

.store-btn-text .small {
  display: block;
  font-size: 0.65rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-btn-text .big {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.app-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* App modal */
.app-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.app-modal-overlay.open { display: flex; }

.app-modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.app-modal .emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.app-modal h3 { margin-bottom: 0.5rem; }
.app-modal p { color: var(--text2); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Payment Methods ── */
.payment-section { padding: 3rem 0; }
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.payment-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text3);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text3);
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text3);
  text-decoration: none;
}

.footer-legal-links a:hover { color: var(--text2); }

/* ── Route Pages ── */
.route-hero {
  padding: 8rem 0 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.route-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(234,179,8,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.route-meta-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  min-width: 140px;
}

.route-meta-item .label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
  margin-bottom: 0.3rem;
}

.route-meta-item .value {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.route-meta-item .value-sm {
  font-size: 1rem;
  color: var(--text);
}

.route-content {
  padding: 4rem 0;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text2);
}

.includes-list li:last-child { border-bottom: none; }

.includes-list .check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Legal Pages ── */
.legal-hero {
  padding: 8rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-content {
  padding: 3rem 0 5rem;
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text2);
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text); font-weight: 600; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1rem 0;
}

.legal-table th, .legal-table td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--text2);
}

.legal-table th {
  background: var(--bg3);
  color: var(--text);
  font-weight: 600;
}

/* ── Autocomplete overrides ── */
.pac-container {
  background: var(--bg2) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  font-family: var(--font-body) !important;
}

.pac-item {
  color: var(--text2) !important;
  padding: 0.5rem 0.875rem !important;
  border-top: 1px solid var(--border) !important;
  font-size: 0.875rem !important;
}

.pac-item:hover, .pac-item-selected {
  background: var(--bg3) !important;
}

.pac-item-query { color: var(--text) !important; }
.pac-matched { color: var(--accent) !important; }

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 5.5rem 0 3rem; }

  .booking-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .booking-info { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { flex-wrap: wrap; gap: 0.75rem; }

  .route-grid { grid-template-columns: 1fr; gap: 2rem; }
  .route-meta { gap: 0.75rem; }
  .route-meta-item { flex: 1; min-width: 120px; }

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

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

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

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .prices-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text2); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none; }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Fleet section ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.fleet-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.fleet-card:hover {
  border-color: rgba(234,179,8,0.35);
  transform: translateY(-2px);
}
.fleet-car-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.fleet-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.fleet-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.5; margin: 0; }
.fleet-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.4rem;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 1rem;
}
.faq-btn:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── About strip ── */
.about-strip {
  background: var(--bg2);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-inner h2 { margin-bottom: 1rem; }
.about-inner p { color: var(--text2); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.75rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.about-stat .lbl {
  font-size: 0.8rem;
  color: var(--text2);
}
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── TaxiLogs app page ── */
.app-page-hero {
  padding: 8rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.app-page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(234,179,8,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.app-feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.app-feature-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.app-feature-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.app-feature-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.6; margin: 0; }
