/* ═══════════════════════════════════════════════
   Etbet — Light Mode Landing Page Styles
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Urbanist', sans-serif;
  background: #FAFAFA;
  color: #18181B;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Variables ── */
:root {
  --primary: #18181B;
  --primary-dark: #09090B;
  --primary-light: #F4F4F5;
  --accent: #3B82F6;
  --success: #10B981;
  --text: #18181B;
  --text-muted: #71717A;
  --border: #E4E4E7;
  --surface: #FFFFFF;
  --surface-2: #FAFAFA;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
}

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

.hidden {
  display: none !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 16px 0 12px;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #F4F4F5;
  color: #71717A;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface-2);
}

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

.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 0.95rem;
  border-radius: 8px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ════════════════════════
   NAVBAR
════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(248, 250, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Urbanist', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  flex-shrink: 0;
}

.logo strong {
  font-weight: 900;
  color: var(--primary);
}

.logo-icon {
  width: 34px;
  height: 34px;
  display: flex;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  font-family: 'Urbanist', sans-serif;
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════
   HERO
════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(to bottom, #E4E4E7 0%, #FFFFFF 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #A1A1AA 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: #F4F4F5;
  top: -100px;
  left: -100px;
  animation: blobFloat 10s ease-in-out infinite alternate;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: #DBEAFE;
  top: 30%;
  right: -80px;
  animation: blobFloat 12s ease-in-out 2s infinite alternate-reverse;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: #F4F4F5;
  bottom: -50px;
  left: 40%;
  animation: blobFloat 8s ease-in-out 1s infinite alternate;
}

@keyframes blobFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -40px) scale(1.08);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #71717A;
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust svg {
  width: 14px;
  height: 14px;
}

/* ── Phone Mockup ── */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px;
}

.phone-glow {
  position: absolute;
  width: 260px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(20px);
}

.phone-mockup {
  position: relative;
  width: 260px;
  animation: phoneBob 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

@keyframes phoneBob {
  from {
    transform: translateY(0px) rotate(-1deg);
  }

  to {
    transform: translateY(-14px) rotate(1deg);
  }
}

.phone-frame {
  background: #1A1A2E;
  border-radius: 40px;
  padding: 10px;
  position: relative;
  border: 2px solid #2D2D4A;
}

.phone-camera-hole {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #1A1A2E;
  border-radius: 50%;
  z-index: 10;
  border: 2px solid #000;
}

.phone-screen {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  width: 100%;
  position: relative;
}



/* Side buttons */
.phone-vol,
.phone-power {
  position: absolute;
  background: #1A1A2E;
  border-radius: 3px;
}

.vol-up {
  width: 3px;
  height: 28px;
  left: -5px;
  top: 80px;
}

.vol-down {
  width: 3px;
  height: 28px;
  left: -5px;
  top: 118px;
}

.phone-power {
  width: 3px;
  height: 44px;
  right: -5px;
  top: 100px;
}

/* Screenshot Placeholder */
.screenshot-placeholder {
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.placeholder-inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.placeholder-inner p {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #6B7280;
}

.placeholder-inner small {
  font-size: 0.65rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.upload-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 5px 12px;
  background: #F4F4F5;
  color: var(--text);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #E4E4E7;
}

.upload-hint:hover {
  background: #E4E4E7;
}

.upload-hint svg {
  width: 12px;
  height: 12px;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone Floating Cards */
.phone-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  white-space: nowrap;
  animation: cardPop 4s ease-in-out infinite alternate;
}

.pfc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pfc-icon svg {
  width: 16px;
  height: 16px;
}

.phone-float-card div strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.phone-float-card div span {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
}

.card-top {
  top: 12%;
  right: -20px;
  animation-delay: 0s;
}

.card-bottom {
  bottom: 16%;
  left: -20px;
  animation-delay: 1.5s;
}

@keyframes cardPop {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

/* ════════════════════════
   STATS BAND
════════════════════════ */
.stats-band {
  padding: 44px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-big {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item>span:last-child {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ════════════════════════
   FEATURES
════════════════════════ */
.features {
  background: #FFFFFF;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #A1A1AA 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--border);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: none;
}

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

.feature-card h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.feature-tags span {
  font-size: 0.73rem;
  font-weight: 500;
  padding: 3px 11px;
  background: #F4F4F5;
  color: #71717A;
  border-radius: 20px;
  border: 1px solid #E4E4E7;
}

/* ════════════════════════
   HOW IT WORKS
════════════════════════ */
.how-it-works {
  background: #FAFAFA;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #A1A1AA 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.steps-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.steps-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.step-row.step-left {
  flex-direction: row;
}

.step-row.step-right {
  flex-direction: row;
}

.step-connector {
  display: none;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  transition: var(--transition);
  box-shadow: none;
  width: 100%;
  position: relative;
}

.step-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  border-radius: var(--radius) 0 0 var(--radius);
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--border);
}

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

.step-card-last {
  border-color: var(--primary);
  background: var(--primary-light);
}

.step-card-last::before {
  opacity: 1;
}

.step-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}

.step-body h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-body h3 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.5;
}

.step-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════
   TESTIMONIALS
════════════════════════ */
.testimonials {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ════════════════════════
   PRICING
════════════════════════ */
.pricing {
  background: #FAFAFA;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #A1A1AA 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card.popular {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 16px 48px rgba(34, 40, 49, 0.35);
}

.pricing-card.enterprise {
  border-color: #D4D4D8;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #18181B;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.plan-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-basic {
  color: var(--text-muted);
}

.badge-pro {
  color: rgba(255, 255, 255, 0.8);
}

.badge-ent {
  color: var(--primary);
}

.plan-devices {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card.popular .plan-devices {
  color: rgba(255, 255, 255, 0.8);
}

.plan-devices svg {
  width: 22px;
  height: 22px;
}

.enterprise-icon {
  color: var(--primary);
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}

.enterprise-price {
  margin-bottom: 24px;
}

.contact-sales-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.currency {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-card.popular .currency {
  color: rgba(255, 255, 255, 0.7);
}

.amount {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.pricing-card.popular .amount {
  color: white;
}

.period {
  font-size: 0.9rem;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 8px;
}

.pricing-card.popular .period {
  color: rgba(255, 255, 255, 0.7);
}

.plan-desc {
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.6;
  color: var(--text-muted);
}

.pricing-card.popular .plan-desc {
  color: rgba(255, 255, 255, 0.8);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
}

.plan-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.plan-features li.dim {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-card.popular .plan-features li {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-top: 32px;
}

/* ════════════════════════
   CTA / CONTACT
════════════════════════ */
.cta-banner {
  padding: 96px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-left {
  padding-top: 8px;
}

.cta-left .section-tag {
  margin-bottom: 16px;
  display: block;
}

.cta-left h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
}

.cta-left p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* Contact Form */
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Urbanist', sans-serif;
  color: var(--text);
  background: #FAFAFA;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 12px;
  padding: 8px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: #D1FAE5;
  color: #10B981;
}

.form-status.error {
  display: block;
  background: #FEE2E2;
  color: #DC2626;
}

/* ════════════════════════
   FOOTER
════════════════════════ */
.footer {
  background: #0F172A;
  padding-top: 60px;
  color: #CBD5E1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .logo {
  color: white;
}

.footer .logo strong {
  color: #93C5FD;
}

.footer-brand p {
  color: #64748B;
  font-size: 0.88rem;
  margin: 12px 0 20px;
  max-width: 280px;
  line-height: 1.7;
}

.made-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.82rem;
  color: #64748B;
}

.made-by strong {
  color: #93C5FD;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94A3B8;
  margin-bottom: 4px;
}

.footer-col a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  width: fit-content;
}

.footer-col a:hover {
  color: #93C5FD;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #475569;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

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

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

  .hero-phone-wrap {
    max-width: 320px;
    margin: 40px auto 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
    z-index: 99;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-card-wide {
    grid-column: span 1;
  }

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

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

  .card-top {
    right: -10px;
  }

  .card-bottom {
    left: -10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-float-card {
    display: none;
  }

  .step-row.step-left,
  .step-row.step-right {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }
}

/* ════════════════════════
   DOWNLOAD MODAL
════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--border);
}

.modal-header {
  text-align: center;
  padding: 40px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  padding: 12px;
  background: var(--primary-light);
  border-radius: 50%;
}

.modal-header h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-body {
  padding: 32px;
}

.download-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius);
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.info-item svg {
  width: 24px;
  height: 24px;
}

.info-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.download-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.modal-success {
  text-align: center;
}

.success-icon {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.modal-success h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}