/* No-Hype AI - Landing Page Styles */
:root {
  --primary: #FF5A36;
  --primary-dark: #E04425;
  --secondary: #1A1A2E;
  --accent: #FFB830;
  --text: #2D2D2D;
  --text-light: #6B7280;
  --bg: #FAFAFA;
  --bg-alt: #F3F4F6;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* Navigation */
.nav {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-alt) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 90, 54, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--secondary);
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-value {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid #E5E7EB;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.trust-badge {
  font-size: 0.875rem;
  color: var(--text-light);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Journey Flow */
.journey-section {
  padding: 60px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.journey-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.journey-step {
  text-align: center;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  min-width: 160px;
}

.journey-step .icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--white);
  font-size: 1.5rem;
}

.journey-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.journey-step .label {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}

.journey-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
}

/* Contrast Section */
.contrast-section {
  padding: 60px 0;
  background: var(--secondary);
  color: var(--white);
}

.contrast-section .section-title h2 {
  color: var(--white);
}

.contrast-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.contrast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contrast-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contrast-card .they-say {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 8px;
  text-decoration: line-through;
}

.contrast-card .we-say {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 90, 54, 0.1);
}

.feature-card .badge {
  display: inline-block;
  background: rgba(255, 90, 54, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.feature-card .highlight-text {
  background: rgba(255, 184, 48, 0.1);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  color: var(--text);
}

/* Educational Section */
.education-section {
  padding: 60px 0;
  background: var(--bg-alt);
}

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

@media (max-width: 768px) {
  .layers-grid {
    grid-template-columns: 1fr;
  }
}

.layer-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 2px solid #E5E7EB;
  transition: all 0.3s;
}

.layer-card:hover {
  border-color: var(--primary);
}

.layer-card .step-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

.layer-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.layer-card .tool-name {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.layer-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Guarantee Section */
.guarantee-section {
  padding: 60px 0;
  background: var(--white);
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 2px solid var(--success);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.guarantee-box .icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  font-size: 2rem;
}

.guarantee-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}

.guarantee-box p {
  color: var(--text);
  margin-bottom: 16px;
}

.guarantee-box .tagline {
  font-style: italic;
  color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid #E5E7EB;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-card .price-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card li {
  padding: 8px 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: #111827;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

/* ===========================================
   MOBILE OPTIMIZATION - Conversion Focused
   =========================================== */

/* Mobile-first sticky CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-top: 1px solid #E5E7EB;
}

.mobile-sticky-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
}

.mobile-sticky-cta .sub-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* Mobile hamburger menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 1001;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .layers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  /* Show mobile elements */
  .mobile-sticky-cta {
    display: block;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Hide desktop nav */
  .nav-links {
    display: none;
  }
  
  /* Compact nav */
  .nav {
    padding: 12px 0;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  /* HERO - Optimized for above-fold CTA */
  .hero {
    padding: 40px 0 100px; /* Extra bottom padding for sticky CTA */
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .hero-value {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  /* Stack hero CTAs vertically */
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  /* Hide secondary CTA on mobile hero - use sticky bar instead */
  .hero-cta .btn-secondary {
    display: none;
  }
  
  .trust-badge {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  /* Journey flow - horizontal scroll on mobile */
  .journey-section {
    padding: 40px 0;
  }
  
  .journey-flow {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 16px;
    gap: 12px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .journey-step {
    min-width: 120px;
    padding: 16px;
    flex-shrink: 0;
  }
  
  .journey-step .icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .journey-step h3 {
    font-size: 0.875rem;
  }
  
  .journey-arrow {
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  /* Contrast section */
  .contrast-section {
    padding: 40px 0;
  }
  
  .contrast-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contrast-card {
    padding: 20px;
  }
  
  .contrast-card .they-say {
    font-size: 0.8rem;
  }
  
  .contrast-card .we-say {
    font-size: 1rem;
  }
  
  /* Features */
  .features-section {
    padding: 40px 0 100px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  /* Education layers */
  .education-section {
    padding: 40px 0;
  }
  
  .layers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .layer-card {
    padding: 20px;
  }
  
  /* Guarantee */
  .guarantee-section {
    padding: 40px 0;
  }
  
  .guarantee-box {
    padding: 24px;
  }
  
  .guarantee-box h3 {
    font-size: 1.25rem;
  }
  
  .guarantee-box .icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  /* Pricing */
  .pricing-section {
    padding: 40px 0 120px; /* Extra for sticky CTA */
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .pricing-card .price {
    font-size: 2rem;
  }
  
  /* CTA section */
  .cta-section {
    padding: 40px 0 100px;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  /* Section titles */
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  /* Footer - account for sticky CTA */
  .footer {
    padding: 40px 0 100px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .journey-step {
    min-width: 100px;
    padding: 12px;
  }
  
  .journey-step h3 {
    font-size: 0.75rem;
  }
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 48px;
  }
  
  .nav-links a {
    padding: 12px 16px;
  }
  
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ===========================================
   TWO-TIER PRICING - Mobile Optimized
   For tool pages (Single Use vs Full Access)
   =========================================== */

.pricing-two-tier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 48px auto 0;
}

.pricing-two-tier .pricing-single {
  margin: 0;
}

.pricing-two-tier .pricing-single.single-use {
  border-color: #E5E7EB;
}

.pricing-two-tier .pricing-single.full-access {
  border-color: var(--primary);
}

/* Tablet */
@media (max-width: 700px) {
  .pricing-two-tier {
    gap: 20px;
    padding: 0 8px;
  }
}

/* Mobile: Stack vertically */
@media (max-width: 550px) {
  .pricing-two-tier {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Reorder: Full Access first on mobile */
  .pricing-two-tier .pricing-single.full-access {
    order: -1;
  }
  
  .pricing-two-tier .pricing-single {
    padding: 24px 20px;
  }
  
  .pricing-two-tier .pricing-single .price {
    font-size: 2.2rem;
  }
  
  .pricing-two-tier .pricing-single .price span {
    font-size: 1.2rem !important;
  }
  
  .pricing-two-tier .pricing-single ul {
    margin-bottom: 20px;
  }
  
  .pricing-two-tier .pricing-single li {
    padding: 6px 0;
    font-size: 0.9rem;
  }
  
  .pricing-two-tier .pricing-single .btn {
    padding: 14px 20px;
  }
}
