/* 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: 16px;
  -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.6;
  color: #1a1a1a;
  background: #FFCD27;
}

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

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 600;
  font-family: "pressura", sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

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

}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  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: 800;
  font-family: "pressura", sans-serif;
}

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

.nav a {
  color: #666;
  font-size: 0.9rem;
}

.nav a:hover {
  color: #1a1a1a;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}

.btn-primary {
  background: #13A5B2;
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
}

.btn-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #1a1a1a;
}

.btn-outline:hover {
  border-color: #9ca3af;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  margin-bottom: 3rem;
}

.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: 0.9rem;
}

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

.problem-content {
  max-width: 700px;
}

.problem h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.problem p {
  font-size: 1.1rem;
  color: #444;
}

.problem p:last-child {
  margin-bottom: 0;
}

/* Solution Section */
.solution {
  text-align: center;
}

.solution h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.solution-tagline {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.solution-highlights {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
}

/* Features */
.features {
  background: #fff;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature:nth-child(even) {
  direction: rtl;
}

.feature:nth-child(even) > * {
  direction: ltr;
}

.feature-content h3 {
  margin-bottom: 1rem;
}

.feature-content p {
  color: #555;
  font-size: 1.05rem;
}

/* Audience Section */
.audience {
  background: #fafafa;
}

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

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

.audience-card {
  text-align: center;
  padding: 2rem;
}

.audience-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.audience-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.audience-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

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

.pricing-subtitle {
  color: #666;
  margin-bottom: 3rem;
}

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

.pricing-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: left;
}

.pricing-card.featured {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

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

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

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

.faq-question {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #555;
  margin: 0;
}

/* Final CTA */
.final-cta {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.footer-tagline {
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 4rem 0;
  }

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

  .section {
    padding: 3rem 0;
  }

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

  .feature:nth-child(even) {
    direction: ltr;
  }

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

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

  .nav {
    display: none;
  }
}
