/* ============================================
   URBAN+ MOGI — COMPONENTS
   ============================================ */

/* ============ NAVBAR ============ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(13,13,13,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.nav-logo-city {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-link .chevron {
  font-size: 0.6rem;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  padding-top: 0.75rem;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  transition: opacity 0.2s, transform 0.2s;
}

/* Invisible bridge so hover isn't lost between link and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: rgba(249,115,22,0.1);
  color: var(--white);
}

.dropdown-item-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.8;
}

/* Hero background photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* Nav CTAs */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(255,255,255,0.05); }

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

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.nav-mobile.open {
  transform: translateX(0);
}

.mobile-nav-section { margin-bottom: 1.5rem; }

.mobile-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.75rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background: rgba(249,115,22,0.08);
  color: var(--white);
}

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mobile-nav-ctas .btn { justify-content: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ctas  { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
}

/* ============ HERO ============ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

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

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

.hero-title span { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-metric {
  display: flex;
  flex-direction: column;
}

.hero-metric-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.hero-metric-label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Promo mockup image replacing CSS phone */
.hero-mockup-img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
}

/* Launch promo banner */
.launch-banner-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0d00 100%);
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  padding: 4rem 0;
}

.launch-banner-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.launch-banner-text {
  flex: 1;
  min-width: 0;
}

.launch-banner-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0.75rem 0;
}

.launch-banner-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.launch-banner-sub strong {
  color: var(--accent);
  font-size: 1.25rem;
}

.launch-banner-img {
  flex-shrink: 0;
  width: 280px;
}

.launch-banner-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(249,115,22,0.25));
}

@media (max-width: 768px) {
  .launch-banner-inner { flex-direction: column; gap: 2rem; }
  .launch-banner-img { width: 220px; }
}

.phone-mockup {
  width: 240px;
  height: 480px;
  background: #111;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(170deg, #1a1a2e 0%, #0d0d0d 100%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-notch {
  width: 80px; height: 22px;
  background: #000;
  border-radius: 100px;
  margin: 0 auto 0.5rem;
}

.phone-ui-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.phone-map-placeholder {
  background: #1e2a3a;
  border-radius: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,115,22,0.4);
  position: relative;
  overflow: hidden;
}

.phone-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.02) 10px,
    rgba(255,255,255,0.02) 11px
  );
}

.phone-input-bar {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.65rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phone-input-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.phone-cta-bar {
  background: var(--accent);
  border-radius: 10px;
  padding: 0.65rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 3;
  color: var(--white);
  animation: float 3s ease-in-out infinite;
}

.float-badge:nth-child(2) { animation-delay: 1s; }
.float-badge:nth-child(3) { animation-delay: 2s; }

.float-badge-1 { top: 15%; left: -10%; }
.float-badge-2 { top: 45%; right: -15%; }
.float-badge-3 { bottom: 20%; left: -8%; }

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-sub   { margin: 0 auto 2rem; }
  .btn-group  { justify-content: center; }
  .hero-metrics { max-width: 380px; margin: 2.5rem auto 0; }
  .float-badge-1 { left: 0; top: 5%; }
  .float-badge-2 { right: 0; top: 40%; }
  .float-badge-3 { left: 0; bottom: 5%; }
}

/* ============ COMPARISON TABLE ============ */

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.compare-table th {
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.compare-table th.col-urban,
.compare-table td.col-urban {
  background: rgba(249,115,22,0.07);
  color: var(--white);
}

.compare-table th.col-urban {
  color: var(--accent);
  border-bottom: 2px solid rgba(249,115,22,0.4);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: rgba(255,255,255,0.015); }

.check  { color: #22c55e; font-size: 1rem; }
.cross  { color: #ef4444; font-size: 1rem; }

/* ============ STEPS ============ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(249,115,22,0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h3 { margin-bottom: 0.3rem; }
.step-content p  { font-size: 0.9rem; }

/* ============ TESTIMONIALS SLIDER ============ */

.slider-wrap { position: relative; overflow: hidden; }

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0.5rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249,115,22,0.3);
}

.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.78rem; color: var(--muted); }

.testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
  padding: 0 0.5rem;
}

.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.2s;
  opacity: 0.7;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

@media (max-width: 900px) {
  .slide { grid-template-columns: 1fr; }
}

/* ============ STATS ============ */

.stats-section {
  background: linear-gradient(135deg, rgba(249,115,22,0.12) 0%, rgba(251,146,60,0.06) 100%);
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ============ FAQ ACCORDION ============ */

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

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(249,115,22,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: none;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.8rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 1.25rem;
}

.faq-answer p {
  font-size: 0.88rem;
  padding-bottom: 1.1rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 200px; }

@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============ CALCULATOR ============ */

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

.calc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  display: block;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  outline: none;
  margin: 0.5rem 0 1.25rem;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.2);
}

.calc-result {
  text-align: center;
  padding: 1.5rem;
  background: rgba(249,115,22,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(249,115,22,0.2);
  margin-top: 1.5rem;
}

.calc-result-main {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
  animation: pulse-num 0.3s ease;
}

@keyframes pulse-num {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.calc-result-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.calc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.calc-detail {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  text-align: center;
}

.calc-detail-val {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.calc-detail-label {
  font-size: 0.7rem;
  color: var(--muted);
}

.calc-compare {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

.calc-compare span { color: #22c55e; font-weight: 700; }

/* Day-btn group */
.day-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.day-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}

.day-btn.active {
  background: rgba(249,115,22,0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.vehicle-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.vehicle-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}

.vehicle-btn.active {
  background: rgba(249,115,22,0.2);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ COVERAGE / NEIGHBORHOOD ============ */

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}

.neighborhood-badge {
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent2);
  transition: all 0.2s;
}

.neighborhood-badge:hover {
  background: rgba(249,115,22,0.2);
  border-color: var(--accent);
}

.map-glow {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: #0f1a0f;
}

.map-glow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.map-glow-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============ CTA SECTION ============ */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.15) 0%, transparent 65%);
  pointer-events: none;
}

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

.cta-inner h2 { margin-bottom: 0.75rem; }

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  transition: all 0.2s;
}

.store-btn:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.store-btn-icon { display: flex; align-items: center; color: var(--white); }

.store-btn-text { text-align: left; }
.store-btn-sub  { font-size: 0.65rem; color: var(--muted); display: block; }
.store-btn-name { font-size: 0.9rem; font-weight: 700; }

/* ============ FOOTER ============ */

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-logo { margin-bottom: 1rem; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.2s;
}

.social-btn:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.4);
  color: var(--accent);
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--white); }

.footer-contact { font-size: 0.88rem; color: var(--muted); }
.footer-contact a { color: var(--accent); }

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

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

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

.footer-legal a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ BENEFITS SPLIT ============ */

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.benefit-text { font-size: 0.85rem; }

@media (max-width: 900px) {
  .benefits-split { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============ PAGE HERO (inner pages) ============ */

.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.25;
  width: 100%;
  height: 100%;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.95) 50%, rgba(13,13,13,0.4) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 4rem 0;
}

/* ============ SECURITY CARDS ============ */

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .security-grid { grid-template-columns: 1fr; }
}

/* ============ PAYMENT METHODS ============ */

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.payment-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}

.payment-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1rem;
}
.payment-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.payment-desc { font-size: 0.82rem; }

@media (max-width: 900px) {
  .payment-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ FRANCHISE SECTION ============ */

.franchise-section {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(251,146,60,0.05) 100%);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

/* ============ TEAM CARD ============ */

.team-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(249,115,22,0.3);
  flex-shrink: 0;
}

.team-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.2rem; }
.team-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; }
.team-bio  { font-size: 0.88rem; }

@media (max-width: 640px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ============ REQUIREMENTS ============ */

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

.req-item:last-child { border-bottom: none; }

.req-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #22c55e;
  font-size: 0.75rem;
}

/* ============ WHATSAPP FLOATING ============ */

.wa-float {
  position: fixed;
  bottom: 100px;
  right: 1.5rem;
  z-index: 900;
  background: #25d366;
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-tag {
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.blog-card-read-more {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-read-more { gap: 0.7rem; }

/* Blog overlay (artigo completo) */
.blog-card-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(6px);
}

.blog-card-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-card-full-text {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.blog-card-full-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin: 0.75rem 0 0.5rem;
}

.blog-date-full {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}

.blog-card-full-text p {
  color: #c0c0c0;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.blog-card-full-text strong { color: var(--white); }
.blog-card-full-text a { color: var(--accent); text-decoration: underline; }
.blog-card-full-text em { color: var(--muted); font-style: italic; }

.blog-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.blog-close-btn:hover { background: rgba(249,115,22,0.2); }

/* ============ POST PAGES ============ */
.post-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.post-hero-inner {
  padding: 5rem 0 3.5rem;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.post-back-link:hover { color: var(--accent); }

.post-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0.75rem 0 0.75rem;
  max-width: 680px;
}

.post-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* Post body */
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.post-lead {
  font-size: 1.15rem;
  color: #d0d0d0;
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

.post-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 2.5rem 0 0.75rem;
}

.post-content p {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.post-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.post-content ul li {
  color: #b8b8b8;
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 0.4rem;
}

.post-content strong { color: var(--white); }
.post-content em { color: var(--muted); font-style: italic; }
.post-content a { color: var(--accent); text-decoration: underline; }

.post-cta {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(249,115,22,0.05) 100%);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.post-cta p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.post-nav {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Blog card link overlay */
.blog-card { position: relative; }
.blog-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}

/* ============ APP DOWNLOAD DUAL CTA ============ */
.app-dl-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-dl:hover { transform: translateY(-2px); }

.btn-dl-passenger {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,0.35);
}

.btn-dl-passenger:hover {
  background: #ea6a10;
  box-shadow: 0 8px 28px rgba(249,115,22,0.5);
}

.btn-dl-driver {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-dl-driver:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

/* CTA download cards (section Baixe agora) */
.cta-dl-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.cta-dl-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  min-width: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-dl-card:hover { transform: translateY(-3px); }

.cta-dl-passenger {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(249,115,22,0.4);
}

.cta-dl-passenger:hover { box-shadow: 0 10px 36px rgba(249,115,22,0.55); }

.cta-dl-driver {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.cta-dl-driver:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

.cta-dl-icon { flex-shrink: 0; opacity: 0.9; }

.cta-dl-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.cta-dl-label { font-weight: 800; font-size: 1rem; }
.cta-dl-sub { font-size: 0.72rem; opacity: 0.7; margin-top: 0.1rem; }
.cta-dl-arrow { flex-shrink: 0; opacity: 0.7; }

/* ============ HERO MICROCOPY ============ */
.hero-microcopy {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
  line-height: 1.5;
}

.hero-promo-tag {
  color: var(--accent);
  font-weight: 600;
}

/* ============ CONVERSION STRIP ============ */
.conv-strip {
  background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(249,115,22,0.03) 100%);
  border-top: 1px solid rgba(249,115,22,0.12);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  padding: 1.75rem 0;
}

.conv-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.conv-strip-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  max-width: 520px;
  margin: 0;
}

@media (max-width: 640px) {
  .conv-strip-inner { flex-direction: column; align-items: flex-start; }
  .conv-strip-text { font-size: 0.95rem; }
}

/* ============ USE CASE GRID ============ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .use-case-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
}

.use-case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.use-case-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-2px);
}

.use-case-icon {
  display: flex;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.use-case-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .mobile-sticky-cta { display: flex; }
  /* Push footer content up so sticky bar doesn't overlap */
  footer { padding-bottom: 80px; }
  .wa-float { bottom: 80px; }
}
