/* ============================================
   Parqueate Landing — Main Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --color-primary: #F59E0B;
  --color-primary-dark: #D97706;
  --color-primary-light: #FDE68A;
  --color-primary-50: #FFFBEB;
  --color-primary-100: #FEF3C7;

  /* Role Colors */
  --color-owner: #10B981;
  --color-owner-dark: #059669;
  --color-owner-light: #D1FAE5;
  --color-user: #3B82F6;
  --color-user-dark: #2563EB;
  --color-user-light: #DBEAFE;

  /* Neutrals */
  --color-dark: #0F172A;
  --color-dark-2: #1E293B;
  --color-dark-3: #334155;
  --color-light: #F8FAFC;
  --color-light-2: #F1F5F9;
  --color-light-3: #E2E8F0;
  --color-gray: #94A3B8;
  --color-gray-dark: #64748B;

  /* Semantic */
  --color-text-dark: #1E293B;
  --color-text-light: #E2E8F0;
  --color-text-muted: #94A3B8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --gradient-owner: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --gradient-user: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 8px 30px rgba(245, 158, 11, 0.3);
  --shadow-owner: 0 8px 30px rgba(16, 185, 129, 0.25);
  --shadow-user: 0 8px 30px rgba(59, 130, 246, 0.25);

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  /* Navbar */
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-gray-dark);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-owner { color: var(--color-owner); }
.text-user { color: var(--color-user); }
.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.45);
}

.btn-owner {
  background: var(--gradient-owner);
  color: #fff;
  box-shadow: var(--shadow-owner);
}

.btn-owner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.btn-user {
  background: var(--gradient-user);
  color: #fff;
  box-shadow: var(--shadow-user);
}

.btn-user:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #000;
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn .btn-icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.navbar-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.01em;
}

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

.navbar-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.navbar-links a:hover {
  color: #fff;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
}

.lang-switch button {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-switch button.active {
  background: var(--color-primary);
  color: #000;
}

.lang-switch button:hover:not(.active) {
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.3;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--color-user);
  bottom: -100px;
  left: -100px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: var(--navbar-height);
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

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

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-light-3);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

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

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-gray);
  font-weight: 500;
}

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

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-frame {
  position: relative;
  background: var(--color-dark-2);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-frame .phone-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: var(--color-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen .placeholder-screen {
  text-align: center;
  color: var(--color-gray);
  padding: 20px;
}

.phone-screen .placeholder-screen .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.phone-screen .placeholder-screen p {
  font-size: 0.85rem;
}

/* Floating cards around phone */
.floating-card {
  position: absolute;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-card .fc-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.floating-card .fc-sub {
  font-size: 0.75rem;
  color: var(--color-gray);
  font-weight: 400;
}

.fc-1 {
  top: 15%;
  left: -80px;
}

.fc-1 .fc-icon {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-owner);
}

.fc-2 {
  bottom: 25%;
  right: -70px;
}

.fc-2 .fc-icon {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-user);
}

.fc-3 {
  bottom: 8%;
  left: -50px;
}

.fc-3 .fc-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-primary);
}

/* ============================================
   ABOUT / WHAT IS SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--color-light);
  position: relative;
}

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

.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--color-light-3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.about-card:hover::before {
  transform: scaleX(1);
}

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

.about-card .card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.about-card:hover .card-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(-5deg);
}

.about-card:hover .card-icon svg {
  stroke: #000;
}

/* SVG icon defaults */
.card-icon svg,
.feature-icon svg,
.fc-icon svg,
.step-icon svg {
  flex-shrink: 0;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.fc-icon svg {
  width: 20px;
  height: 20px;
}

.step-icon svg {
  width: 36px;
  height: 36px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonial avatars as initials */
.testimonial-avatar.avatar-initials {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.about-card p {
  color: var(--color-gray-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   FEATURES SECTION (OWNERS & USERS)
   ============================================ */

/* --- Owners Section --- */
.owners-section {
  padding: var(--section-padding);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.owners-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.owners-section .section-title {
  color: #fff;
}

.owners-section .section-subtitle {
  color: var(--color-gray);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-list {
  display: grid;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: default;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.owners-section .feature-icon {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-owner);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.owners-section .feature-text h4 {
  color: #fff;
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.owners-section .feature-text p {
  color: var(--color-gray);
}

/* Phone showcase (used in both owner/user sections) */
.phone-showcase {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-showcase .phone-mockup {
  width: 240px;
}

.phone-showcase .phone-mockup:nth-child(2) {
  transform: translateY(40px);
}

/* --- Users Section --- */
.users-section {
  padding: var(--section-padding);
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.users-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

.users-section .feature-icon {
  background: var(--color-user-light);
  color: var(--color-user);
}

.users-section .feature-text h4 {
  color: var(--color-dark);
}

.users-section .feature-text p {
  color: var(--color-gray-dark);
}

/* Reverse layout for users section */
.features-layout.reversed {
  direction: rtl;
}

.features-layout.reversed > * {
  direction: ltr;
}

/* Section CTA */
.section-cta {
  margin-top: 40px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--color-dark);
  position: relative;
}

/* Tabs */
.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
}

.hiw-tab {
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.hiw-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hiw-tab.active[data-tab="owner"] {
  background: var(--gradient-owner);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-owner);
}

.hiw-tab.active[data-tab="user"] {
  background: var(--gradient-user);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-user);
}

/* Steps */
.hiw-content {
  display: none;
}

.hiw-content.active {
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.owner-steps .step-number {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-owner);
}

.owner-steps .step-card:hover .step-number {
  background: var(--gradient-owner);
  color: #fff;
  box-shadow: var(--shadow-owner);
}

.user-steps .step-number {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-user);
}

.user-steps .step-card:hover .step-number {
  background: var(--gradient-user);
  color: #fff;
  box-shadow: var(--shadow-user);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--color-light);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 360px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-light-3);
  scroll-snap-align: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark-3);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--color-gray-dark);
}

/* ============================================
   DOWNLOAD CTA SECTION
   ============================================ */
.download-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -250px;
  right: -100px;
  pointer-events: none;
}

.download-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

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

.download-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #000;
  margin-bottom: 16px;
}

.download-content p {
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

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

.store-btn .store-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
}

.store-btn .store-text span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.footer-brand .navbar-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray);
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--color-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-gray);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-primary);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray-dark);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 220px;
  }

  .floating-card {
    display: none;
  }

  .features-layout,
  .features-layout.reversed {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .features-layout > *:last-child {
    order: -1;
  }

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --navbar-height: 70px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card {
    padding: 32px 24px;
  }

  .features-layout,
  .features-layout.reversed {
    gap: 40px;
  }

  .feature-item {
    padding: 16px;
  }

  .phone-showcase {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .phone-showcase .phone-mockup:nth-child(2) {
    transform: none;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }

  .hiw-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hiw-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .testimonial-card {
    min-width: 300px;
  }

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

  .store-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Small phones */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .phone-mockup {
    width: 200px;
  }

  .phone-showcase .phone-mockup {
    width: 180px;
  }
}
