/* Mobile Terminal — Landing Page Styles */

/* Hero */
.lp-hero {
  background: linear-gradient(180deg, var(--bg-header) 0%, var(--bg-dark) 100%);
  padding: 80px 40px 64px;
}

.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.lp-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-hero-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lp-hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.lp-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}

.lp-hero-actions {
  margin-top: 8px;
}

.lp-hero-screenshot {
  flex-shrink: 0;
}

/* App Store Button */
.lp-appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--bg-dark);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.lp-appstore-btn:hover {
  opacity: 0.9;
}

.lp-apple-icon {
  flex-shrink: 0;
}

/* Device Frames */
.lp-device {
  position: relative;
  border-radius: 24px;
  background: #1a1a2e;
  border: 2px solid #2a2a4a;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.lp-device-iphone {
  width: 280px;
  height: 560px;
}

.lp-device-ipad {
  width: 720px;
  max-width: 100%;
  height: 480px;
  border-radius: 16px;
  margin: 0 auto;
}

.lp-device-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.lp-device-ipad .lp-device-screen img {
  object-position: center top;
}

/* Placeholder (before screenshots) */
.lp-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.lp-placeholder-icon {
  font-size: 36px;
  color: var(--cyan);
  opacity: 0.5;
}

.lp-placeholder p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* Features Section */
.lp-features {
  padding: 80px 40px;
}

.lp-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.lp-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.lp-feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.lp-feature-row-reverse {
  flex-direction: row-reverse;
}

.lp-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
}

.lp-feature-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.lp-feature-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.lp-feature-screenshot {
  flex-shrink: 0;
}

/* Star Section — Keyboard-First */
.lp-star-section {
  background: linear-gradient(180deg, var(--bg-header) 0%, var(--bg-dark) 100%);
  padding: 96px 40px;
}

.lp-star-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.lp-star-content {
  display: flex;
  align-items: center;
  gap: 64px;
}

.lp-star-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lp-star-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px 20px;
}

.lp-star-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.lp-star-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* iPad Section */
.lp-ipad-section {
  padding: 80px 40px;
  background: var(--bg-header);
}

.lp-ipad-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lp-ipad-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin-bottom: 8px;
}

/* iPad Badges / Agent Badges */
.lp-ipad-badges,
.lp-agent-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.lp-agent-badges {
  justify-content: flex-start;
  margin-top: 16px;
}

.lp-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--text-dim);
  border-radius: 20px;
  padding: 6px 14px;
  letter-spacing: 0.3px;
}

/* Personalization Section */
.lp-personalization {
  padding: 80px 40px;
}

.lp-personalization-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp-personalization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Highlights */
.lp-highlights {
  padding: 80px 40px;
}

.lp-highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Trust Grid — 2x3 layout with full-width title */
.lp-trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lp-trust-title {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.lp-highlight-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 28px 24px;
}

.lp-highlight-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.lp-highlight-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* CTA */
.lp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-header) 100%);
}

.lp-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.lp-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
  .lp-highlights-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lp-trust-title {
    grid-column: 1 / -1;
  }

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

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

/* Responsive — Mobile */
@media (max-width: 768px) {
  .lp-hero {
    padding: 48px 20px 40px;
  }

  .lp-hero-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .lp-hero-title {
    font-size: 36px;
  }

  .lp-hero-sub {
    max-width: 100%;
  }

  .lp-hero-actions {
    display: flex;
    justify-content: center;
  }

  .lp-features {
    padding: 48px 20px;
  }

  .lp-features-inner {
    gap: 56px;
  }

  .lp-section-title {
    font-size: 24px;
  }

  .lp-feature-row,
  .lp-feature-row-reverse {
    flex-direction: column;
    gap: 32px;
  }

  .lp-feature-text {
    text-align: center;
    align-items: center;
  }

  .lp-device-iphone {
    width: 240px;
    height: 480px;
  }

  .lp-device-ipad {
    height: 320px;
  }

  /* Star Section — Mobile */
  .lp-star-section {
    padding: 56px 20px;
  }

  .lp-star-inner {
    gap: 32px;
  }

  .lp-star-content {
    flex-direction: column;
    gap: 32px;
  }

  .lp-star-content .lp-feature-text {
    text-align: center;
    align-items: center;
  }

  .lp-star-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* iPad Section — Mobile */
  .lp-ipad-section {
    padding: 48px 20px;
  }

  .lp-ipad-badges {
    gap: 8px;
  }

  .lp-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Personalization — Mobile */
  .lp-personalization {
    padding: 48px 20px;
  }

  .lp-personalization-inner {
    gap: 32px;
  }

  .lp-personalization-grid {
    grid-template-columns: 1fr;
  }

  /* Trust & Highlights — Mobile */
  .lp-highlights {
    padding: 48px 20px;
  }

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

  .lp-trust-grid {
    grid-template-columns: 1fr;
  }

  .lp-trust-title {
    grid-column: 1;
  }

  .lp-cta {
    padding: 48px 20px;
  }

  .lp-cta-title {
    font-size: 24px;
  }

  .lp-appstore-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
