/* ========= HERO ========= */
.hero {
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-headline .accent { color: var(--teal); }
.hero-tagline {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 440px;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--dark);
}
.hero-stat .stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  background: var(--dark);
  border-radius: 40px;
  padding: 24px 16px;
  box-shadow: 0 32px 80px rgba(17,24,39,0.18), 0 0 0 2px rgba(255,255,255,0.06);
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 8px;
  background: #374151;
  border-radius: 4px;
  margin: 0 auto 20px;
}
.phone-screen {
  background: #F9FAFB;
  border-radius: 24px;
  padding: 16px;
  min-height: 440px;
}
.phone-app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.phone-app-mark {
  width: 28px; height: 28px;
  background: var(--dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.phone-app-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.phone-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.phone-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #e5e7eb;
}
.phone-card-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.phone-card-body {
  font-size: 10px;
  color: #374151;
  line-height: 1.5;
}
.phone-question-list {
  list-style: none;
}
.phone-question-list li {
  font-size: 10px;
  color: #374151;
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.4;
}
.phone-question-list li::before {
  content: "?";
  color: var(--teal);
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.phone-share-btn {
  background: var(--teal);
  color: white;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

/* ========= STATS BAR ========= */
.stats-bar {
  background: var(--dark);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ========= SECTION SHARED ========= */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ========= FEATURES ========= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(29,158,117,0.08);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 22px;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========= HOW IT WORKS ========= */
.how-section {
  background: var(--dark);
  padding: 80px 24px;
}
.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,0.55); }
.how-section .section-eyebrow { color: var(--teal); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.step-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ========= COMPARISON TABLE ========= */
.comparison-section { background: var(--white); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-500);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--gray-300);
}
.comparison-table th.highlight {
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 8px 8px 0 0;
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark);
  vertical-align: middle;
}
.comparison-table tr:hover td { background: #fafafa; }
.comparison-table td.highlight {
  background: var(--teal-light);
  font-weight: 600;
}
.check { color: var(--teal); font-size: 18px; }
.cross { color: #d1d5db; font-size: 18px; }
.partial { color: #f59e0b; font-size: 14px; font-weight: 500; }

/* ========= BLOG PREVIEW ========= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}
.blog-card:hover {
  box-shadow: 0 12px 32px rgba(17,24,39,0.08);
  transform: translateY(-2px);
}
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--teal) 0%, #0d7a58 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 48px;
}
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 14px;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========= CTA SECTION ========= */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 96px 20px 60px;
    gap: 40px;
    text-align: center;
  }
  .hero-tagline { margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; }
  .hero-stat { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .comparison-table { font-size: 12px; }
  .comparison-table td, .comparison-table th { padding: 10px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
