/* Fonts */
@font-face {
  font-family: "alpina";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GT-Alpina-Standard-Regular.woff");
}

@font-face {
  font-family: "alpina";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/GT-Alpina-Standard-Bold.woff");
}

@font-face {
  font-family: "alpina";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/GT-Alpina-Standard-Regular-Italic.woff");
}

@font-face {
  font-family: "pressura";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GT-Pressura-Standard-Text.woff");
}

@font-face {
  font-family: "pressura";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/GT-Pressura-Standard-Bold.woff");
}

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

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'pressura', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: #1a1a1a;
  background: #FFC107;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #13A5B2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Typography - Premium Scale */
h1, h2, h3, h4 {
  line-height: 1.1;
  font-weight: 700;
  font-family: "alpina", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin-bottom: 1.25rem;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: #1a1f2e;
  color: #fff;
  padding: 6rem 0;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark a {
  color: #13A5B2;
}

/* Buttons override link colors in dark sections */
.section-dark a.btn-primary {
  color: #fff;
}

.section-dark a.btn-outline {
  color: #fff;
}

.section-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Header */
.header {
  padding: 1.25rem 2rem;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-icon {
  height: 3rem;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "pressura", sans-serif;
}

.nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav a {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
  text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1a1a1a;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFC107;
  z-index: 99;
  padding: 7rem 2rem 2rem;
}

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

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin-bottom: 2rem;
}

.mobile-nav a {
  font-size: 1.75rem;
  color: #1a1a1a;
  font-weight: 600;
  font-family: "alpina", Georgia, serif;
}

/* Buttons - Design System */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: "pressura", sans-serif;
  text-align: center;
  line-height: 1.2;
}

/* Primary Button - Teal with white text, works everywhere */
.btn-primary {
  background: #13A5B2;
  color: #fff;
  border: 2px solid #0d8a95;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #0e9aa6;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  transform: translate(2px, 2px);
  text-decoration: none;
  color: #fff;
}

/* Dark sections: Primary button with bolder shadow for pop */
.section-dark .btn-primary {
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.section-dark .btn-primary:hover {
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

/* Outline Button - Dark variant for light backgrounds */
.btn-outline {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
}

.btn-outline:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  text-decoration: none;
}

/* Outline on dark backgrounds - white border and text */
.section-dark .btn-outline {
  border-color: #fff;
  color: #fff;
}

.section-dark .btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}

/* White cards in dark sections need dark buttons - higher specificity */
.section-dark .pricing-card .btn-outline,
.pricing-card .btn-outline {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: transparent;
}

.section-dark .pricing-card .btn-outline:hover,
.pricing-card .btn-outline:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* Button sizes */
.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.15rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle-inline {
  opacity: 0.7;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #1a1a1a;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

.hero-cta {
  margin-bottom: 3.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-screenshot {
  max-width: 900px;
  margin: 0 auto;
}

/* Screenshot Placeholder */
.screenshot-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  color: #64748b;
}

.screenshot-placeholder p {
  margin: 0;
  font-size: 1rem;
}

.screenshot-dark {
  background: linear-gradient(135deg, #2a3142 0%, #1a1f2e 100%);
  border-color: #3d4659;
  color: #8892a6;
}

/* Problem Section */
.problem {
  background: #1a1f2e;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.problem-content {
  font-size: 1.2rem;
  line-height: 1.7;
}

.problem-intro {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "alpina", Georgia, serif;
  margin-bottom: 1.5rem;
  color: #fff;
}

.problem-punchline {
  font-style: italic;
  opacity: 0.8;
  margin-top: 1.5rem;
}

.problem-solution {
  font-size: 1.15rem;
  line-height: 1.7;
}

.solution-intro {
  font-size: 1.35rem;
  font-family: "alpina", Georgia, serif;
  color: #13A5B2;
  margin-bottom: 1.5rem;
}

.solution-highlights {
  font-size: 1.35rem;
  font-weight: 600;
  color: #13A5B2;
  font-family: "alpina", Georgia, serif;
  margin-top: 1.5rem;
}

/* How It Works */
.how-it-works {
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #13A5B2;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  border: 2px solid #000;
  font-family: "alpina", Georgia, serif;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: #555;
  font-size: 1.05rem;
  margin: 0;
}

/* Features Section */
.features h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.features-highlight {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.features-highlight strong {
  color: #13A5B2;
  font-weight: 600;
}

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

.feature-card {
  text-align: center;
}

.feature-card .feature-image {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin: 0;
}

/* Mid CTA */
.mid-cta {
  text-align: center;
  background: #FFC107;
}

.mid-cta h2 {
  margin-bottom: 1.25rem;
}

.mid-cta-subtitle {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Audience Section */
.audience h2 {
  text-align: center;
  margin-bottom: 3.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.audience-card h3 {
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin: 0;
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

/* Trust Badges */
.trust {
  padding: 4rem 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 2rem;
  background: rgba(19, 165, 178, 0.15);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-label {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-name {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Pricing */
.pricing {
  text-align: center;
}

.pricing h2 {
  margin-bottom: 0.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 850px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  color: #1a1a1a;
}

.pricing-card.featured {
  border: 3px solid #13A5B2;
  box-shadow: 0 8px 40px rgba(19, 165, 178, 0.25);
}

.pricing-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "alpina", Georgia, serif;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: "alpina", Georgia, serif;
  letter-spacing: -0.02em;
}

.pricing-price span {
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
  font-family: "pressura", sans-serif;
}

.pricing-description {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  display: block;
}

/* Ensure primary button in pricing cards has good contrast */
.pricing-card .btn-primary {
  background: #13A5B2;
  color: #fff;
  border-color: #0d8a95;
}

.pricing-card .btn-primary:hover {
  background: #0e9aa6;
  color: #fff;
}

.pricing-badge {
  background: #13A5B2;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}

/* FAQ */
.faq {
  background: #fafafa;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.75rem 0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0.5rem;
  font-family: "alpina", Georgia, serif;
}

.faq-question::after {
  content: "+";
  font-size: 1.75rem;
  font-weight: 400;
  color: #888;
  font-family: "pressura", sans-serif;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  color: #555;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 1rem;
}

.faq-help {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
}

.faq-help a {
  font-weight: 600;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 1rem;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1rem;
}

.footer-tagline {
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: #1a1a1a;
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copyright {
  margin-top: 1.25rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
  html {
    font-size: 17px;
  }

  .problem-grid {
    gap: 3rem;
  }

  .features-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .section,
  .section-dark {
    padding: 4rem 0;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .problem-intro {
    font-size: 1.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .features-highlight {
    font-size: 1.1rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav {
    display: none;
  }

  .header .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
  }
}

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-price {
    font-size: 2.75rem;
  }
}
