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

:root {
  --primary:    #1F4F8B;
  --secondary:  #2E6FB2;
  --accent:     #F4A026;
  --success:    #2E9B5E;
  --error:      #E5533D;
  --text-primary:   #1B1F23;
  --text-secondary: #5A6773;
  --bg-primary:     #F7F9FC;
  --bg-secondary:   #FFFFFF;
  --border:     #C9D3DD;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-full: 9999px;
  --font: 'Ubuntu', sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(244,160,38,.35);
}
.btn-primary:hover {
  background: #e8900f;
  border-color: #e8900f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,160,38,.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ─── SECTION HEADERS ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(31,79,139,.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* ─── NAVBAR ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.navbar.scrolled .nav-links a:not(.btn-primary) { color: var(--text-primary); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a:not(.btn):hover { color: #fff; }
.navbar.scrolled .nav-links a:not(.btn):hover { color: var(--primary); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.navbar.scrolled .nav-toggle span { background: var(--text-primary); }

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,28,46,.92) 0%, rgba(31,79,139,.85) 50%, rgba(15,28,46,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,160,38,.15);
  border: 1px solid rgba(244,160,38,.4);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #FFD166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* ─── PHONE MOCKUP ─────────────────────────────────────────────────── */
.hero-phone { display: flex; justify-content: center; position: relative; }
.phone-mockup { position: relative; }
.phone-frame {
  width: 280px;
  height: 560px;
  background: #0f1c2e;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 2px rgba(255,255,255,.1), inset 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 28px;
  background: #0f1c2e;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-primary);
  border-radius: 34px;
  overflow: hidden;
}
.phone-screen-content { display: flex; flex-direction: column; height: 100%; }
.phone-header { background: var(--primary); padding: 36px 12px 12px; }
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}
.phone-icons { display: flex; gap: 6px; align-items: center; }
.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.phone-greeting { color: #fff; font-size: 14px; font-weight: 600; }
.phone-avatar {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}
.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-full);
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-secondary);
}
.phone-categories {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
}
.phone-categories::-webkit-scrollbar { display: none; }
.phone-cat {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-cat.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.phone-cards {
  flex: 1;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.phone-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.phone-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.phone-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-card-name { font-size: 11px; font-weight: 700; color: var(--text-primary); }
.phone-card-title { font-size: 10px; color: var(--text-secondary); }
.phone-card-meta { display: flex; gap: 8px; }
.phone-card-rating { font-size: 9px; color: var(--accent); font-weight: 600; }
.phone-card-dist { font-size: 9px; color: var(--text-secondary); }
.phone-card-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font);
}
.phone-nav {
  display: flex;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 10px;
}
.phone-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-secondary);
  font-size: 8px;
  font-weight: 600;
}
.phone-nav-item.active { color: var(--primary); }
.phone-nav-item svg { width: 18px; height: 18px; }
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(31,79,139,.3) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── HERO WAVE ────────────────────────────────────────────────────── */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; }

/* ─── TRUSTED BY ───────────────────────────────────────────────────── */
.trusted-by {
  background: var(--bg-primary);
  padding: 48px 0;
  text-align: center;
}
.trusted-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.service-tag {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── FEATURES ─────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(31,79,139,.2);
}
.feature-card-wide {
  grid-column: span 2;
}
.feature-card-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  grid-column: span 1;
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon { width: 28px; height: 28px; }
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  margin-top: auto;
}
.feature-img { width: 100%; height: 100%; object-fit: cover; }

/* ─── AI CHAT PREVIEW ──────────────────────────────────────────────── */
.ai-chat-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 16px;
}
.ai-msg { display: flex; gap: 8px; align-items: flex-end; }
.ai-msg-user { flex-direction: row-reverse; }
.ai-avatar {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), #FFD166);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ai-bubble {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 14px 14px 14px 4px;
  max-width: 80%;
  line-height: 1.5;
}
.ai-bubble-user {
  background: rgba(244,160,38,.4);
  border-radius: 14px 14px 4px 14px;
}

/* ─── STATUS BADGES ────────────────────────────────────────────────── */
.status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.status-badge {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* ─── HOW IT WORKS ─────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-primary);
}
.steps-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}
.steps-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.steps-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.steps-content { display: none; }
.steps-content.active { display: block; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-number {
  width: 60px; height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  align-self: center;
  margin-top: -40px;
}

/* ─── SHOWCASE ──────────────────────────────────────────────────────── */
.showcase {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.showcase-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F1C2E 0%, #1F4F8B 50%, #162A44 100%);
}
.showcase .container { position: relative; z-index: 1; }
.screens-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 4px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
}
.screens-scroll::-webkit-scrollbar { height: 6px; }
.screens-scroll::-webkit-scrollbar-track { background: transparent; }
.screens-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 3px; }
.screen-item { flex-shrink: 0; }
.screen-phone { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.screen-label {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  order: -1;
}
.mock-screen {
  width: 200px;
  height: 380px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
}
.ms-header {
  background: var(--primary);
  padding: 32px 12px 12px;
}
.ms-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ms-search {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
}
.ms-filters {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-primary);
}
.ms-f {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.ms-f.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.ms-list { padding: 8px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ms-card {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.ms-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms-info { font-size: 10px; color: var(--text-secondary); }
.ms-info b { color: var(--text-primary); font-size: 11px; }
.ms-chatlist { padding: 8px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ms-chat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 8px;
  background: var(--bg-primary);
}
.ms-ai-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms-ci-info { font-size: 9px; color: var(--text-secondary); }
.ms-ci-info b { color: var(--text-primary); font-size: 10px; }
.ms-order-preview {
  padding: 8px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.ms-order-badge {
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.ms-messages {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-primary);
  overflow: hidden;
}
.ms-bubble {
  font-size: 9px;
  line-height: 1.4;
  padding: 7px 10px;
  border-radius: 12px 12px 12px 3px;
  background: #fff;
  color: var(--text-primary);
  max-width: 90%;
  box-shadow: var(--shadow-sm);
}
.ms-bubble-user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-radius: 12px 12px 3px 12px;
}
.ms-map-bg {
  flex: 1;
  background: #e8f0f8;
  position: relative;
  overflow: hidden;
}
.ms-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,79,139,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,79,139,.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ms-pin {
  position: absolute;
  font-size: 18px;
  transform: translate(-50%, -50%);
}
.ms-pin-user { font-size: 16px; }
.ms-map-footer {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 80px;
  color: rgba(31,79,139,.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── DOWNLOAD ─────────────────────────────────────────────────────── */
.download {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.download-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F1C2E 0%, #1F4F8B 60%, #162A44 100%);
}
.download-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.download-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.download-text p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.6;
}
.download-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.download-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.download-features li svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: all var(--transition);
  min-width: 160px;
}
.store-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.store-icon { width: 28px; height: 28px; flex-shrink: 0; }
.store-label { display: flex; flex-direction: column; }
.store-label span { font-size: 11px; color: rgba(255,255,255,.7); }
.store-label strong { font-size: 16px; font-weight: 700; }

/* ─── DOWNLOAD PHONES ──────────────────────────────────────────────── */
.download-phones {
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
}
.dl-phone {
  position: absolute;
  width: 180px;
  height: 360px;
  background: #0f1c2e;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 32px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
}
.dl-phone-back {
  transform: rotate(-8deg) translateX(-70px) translateY(30px);
}
.dl-phone-front {
  transform: rotate(4deg) translateX(40px);
  z-index: 1;
}
.dl-phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-primary);
  border-radius: 24px;
  overflow: hidden;
}
.dl-screen-inner { height: 100%; display: flex; flex-direction: column; }
.dl-order {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  color: var(--text-secondary);
}
.dl-status {
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.dl-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.dl-get-btn {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  margin: 0 16px;
  padding: 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.dl-get-btn:hover { background: #e8900f; }

/* ─── FOOTER ───────────────────────────────────────────────────────── */
.footer {
  background: #0F1C2E;
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 16px 0 24px;
  max-width: 300px;
  line-height: 1.7;
}
.footer-logo { height: 36px; width: auto; margin-bottom: 4px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ─── AOS ANIMATIONS ───────────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card-wide { grid-column: span 2; }
  .feature-card-highlight { grid-column: span 1; }

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(15,28,46,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { color: rgba(255,255,255,.9); }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-text { order: 1; }
  .hero-phone { order: 2; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-wide,
  .feature-card-highlight { grid-column: span 1; }

  .steps { flex-direction: column; }
  .step-connector {
    width: 2px; height: 30px;
    margin: 0 auto;
  }

  .download-content { grid-template-columns: 1fr; }
  .download-phones { display: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider { width: 80px; height: 1px; }

  .store-buttons { flex-direction: column; }
  .store-btn { justify-content: center; }

  .footer-links { grid-template-columns: 1fr; }
}