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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* HTML to PDF page body styles */
.html-to-pdf-page {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
  margin: 0;
  min-height: 100vh;
}

.html-to-pdf-page body {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
  margin: 0;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #2563eb;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-cta {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #1d4ed8;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 40px 0 20px 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: #f5f7f9;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlight {
  color: #60a5fa;
}

.hero p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 30px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
}

.checkmark {
  color: #22c55e;
  font-weight: bold;
}

/* Social Proof Bar */
.social-proof {
  background: #f8fafc;
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.social-proof-text {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #2563eb;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
}

/* Problem Section */
.problem {
  padding: 80px 0;
  background: #fff;
}

.problem h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
}

.problem-subtitle {
  font-size: 20px;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.problem-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 30px;
}

.problem-card h3 {
  color: #dc2626;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.problem-card p {
  color: #7f1d1d;
  line-height: 1.6;
}

.problem-quote {
  background: #f1f5f9;
  border-left: 4px solid #2563eb;
  padding: 30px;
  border-radius: 8px;
  font-style: italic;
  color: #475569;
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
}

/* Solution Section */
.solution {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.solution h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.solution-subtitle {
  font-size: 20px;
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.benefit {
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.benefit h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit p {
  color: #cbd5e1;
  font-size: 14px;
}

.solution-cta {
  text-align: center;
  margin-top: 40px;
}

.solution-cta .hero-cta {
  background: white;
  color: #2563eb;
}

.solution-cta .hero-cta:hover {
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* HTML to PDF Page Specific Styles */
.html-to-pdf-hero {
  padding: 80px 0;
  text-align: center;
}

.html-to-pdf-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.html-to-pdf-hero .hero-description {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.html-to-pdf-benefits-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.html-to-pdf-benefit-badge {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.html-to-pdf-benefit-badge .icon-check-circle {
  color: #22c55e;
}

.html-to-pdf-stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.html-to-pdf-stat-item {
  text-align: center;
}

.html-to-pdf-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 8px;
}

.html-to-pdf-stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

.html-to-pdf-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.html-to-pdf-btn {
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.html-to-pdf-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: 2px solid transparent;
}

.html-to-pdf-btn-outline {
  border: 2px solid #475569;
  color: #cbd5e1;
  background: transparent;
}

.html-to-pdf-features {
  padding: 80px 0;
  background: rgba(15, 23, 42, 0.3);
}

.html-to-pdf-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.html-to-pdf-feature-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.html-to-pdf-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.html-to-pdf-feature-content p {
  color: #94a3b8;
  line-height: 1.7;
}

.html-to-pdf-use-cases {
  padding: 80px 0;
}

.html-to-pdf-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #f1f5f9;
}

.html-to-pdf-section-description {
  font-size: 1.1rem;
  color: #94a3b8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.html-to-pdf-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.html-to-pdf-use-case-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.html-to-pdf-use-case-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.html-to-pdf-use-case-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin: 0;
}

.html-to-pdf-use-case-content p {
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.html-to-pdf-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.html-to-pdf-benefit-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.html-to-pdf-benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #60a5fa;
}

.html-to-pdf-benefit-card p {
  color: #94a3b8;
  margin: 0;
}

.html-to-pdf-secondary-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}

.html-to-pdf-seo-helper {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Animated text styles for HTML to PDF page */
.html-to-pdf-page .animated-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.4;
}

.html-to-pdf-page .text-line {
  display: block;
  opacity: 0;
  margin: 0;
  padding: 0;
}

.html-to-pdf-page .text-line:nth-child(1) {
  color: #22c55e;
  font-weight: 600;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

.html-to-pdf-page .text-line:nth-child(2) {
  color: #22c55e;
  font-weight: 600;
  animation: slideInFromRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.8s;
}

.html-to-pdf-page .text-line:nth-child(3) {
  color: #22c55e;
  font-weight: 600;
  animation: slideInFromLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* PDF Problems Hero Section */
.pdf-problems-hero {
  padding: 80px 0;
  background: rgba(15, 23, 42, 0.3);
}

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

.pdf-problems-content .eyebrow {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pdf-problems-content .main-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}

.pdf-problems-content .body-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pdf-problems-content .cta-link {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pdf-problems-content .cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

.services h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
}

.services-subtitle {
  font-size: 20px;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e293b;
}

.service-card p {
  color: #64748b;
  margin-bottom: 20px;
}

.service-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.service-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

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

.testimonial {
  background: #f8fafc;
  border-radius: 8px;
  padding: 30px;
  position: relative;
}

.testimonial-quote {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
}

.testimonial-role {
  color: #64748b;
  font-size: 14px;
}

/* CTA Section */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #dbeafe;
}

.final-cta .hero-cta {
  background: white;
  color: #2563eb;
  margin-right: 20px;
}

.final-cta .hero-cta:hover {
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.secondary-cta {
  display: inline-block;
  color: white;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  color: white;
}

.footer h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
  color: #9ca3af;
}

/* General h2 alignment */
h2 {
  text-align: left;
}

/* Terms, Cookies, and Privacy sections - h2 alignment */
.terms h2,
.cookies h2,
.privacy h2 {
  text-align: left;
  font-size: 26px;
  margin-bottom: 10px;
  margin-top: 20px;
}

/* Terms, Cookies, and Privacy sections - paragraph styling */
.terms p,
.cookies p,
.privacy p {
  font-size: 16px;
}

/* Terms, Cookies, and Privacy sections - list styling */
.terms ul,
.cookies ul,
.privacy ul {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 20px;
  margin-left: 20px;
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .stats-grid {
    gap: 30px;
  }

  .problem h2,
  .solution h2,
  .services h2,
  .testimonials h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .terms h2 {
    font-size: 26px;
    text-align: left;
  }

  .nav-links {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta .hero-cta {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* Enhanced button styles for HTML to PDF page */

/* Enhanced button effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Hover Effects for Cards */
.feature-card:hover,
.use-case-card:hover,
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-badge:hover {
  background-color: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.6);
  transition: all 0.3s ease;
}

/* Animation for stats */
.stat-number {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problem-card h3 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.problem-card p {
  color: #475569;
  line-height: 1.6;
}

/* Waitlist Page Specific Styles */

/* Form Section */
.waitlist-form-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.waitlist-form-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2.5rem;
  align-items: start;
  grid-template-areas: "form tips";
}

/* Form Column */
.waitlist-form-column {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  grid-area: form;
}

.waitlist-form-header {
  text-align: center;
  margin-bottom: 1.875rem;
}

.waitlist-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.625rem;
  text-align: center;
}

.waitlist-form-subtitle {
  color: #64748b;
  font-size: 1rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Form Row for First/Last Name */
.waitlist-form-row {
  display: flex;
  gap: 1.25rem;
}

.waitlist-form-row .waitlist-form-group {
  flex: 1;
}

/* Form Groups */
.waitlist-form-group {
  margin-bottom: 0;
}

.waitlist-form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Form Inputs */
.waitlist-form-input,
.waitlist-form-select,
.waitlist-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}

.waitlist-form-input:focus,
.waitlist-form-select:focus,
.waitlist-form-textarea:focus {
  border-color: #2563eb;
}

.waitlist-form-input:focus + .waitlist-select-arrow svg,
.waitlist-form-select:focus + .waitlist-select-arrow svg {
  color: #2563eb;
}

.waitlist-form-input:hover,
.waitlist-form-select:hover,
.waitlist-form-textarea:hover {
  border-color: #d1d5db;
}

/* Select Container */
.waitlist-select-container {
  position: relative;
}

.waitlist-form-select {
  padding-right: 2.5rem;
  background: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.waitlist-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
  transition: color 0.2s;
}

.waitlist-select-arrow svg {
  width: 16px;
  height: 16px;
}

/* Textarea */
.waitlist-form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox */
.waitlist-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.625rem;
}

.waitlist-checkbox {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  accent-color: #2563eb;
}

.waitlist-checkbox-label {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Submit Button */
.waitlist-submit-btn {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.625rem;
}

.waitlist-submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Form Footer */
.waitlist-form-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.waitlist-form-footer p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

.waitlist-form-footer a {
  color: #2563eb;
  text-decoration: none;
}

/* Benefits Column */
.waitlist-benefits-column {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 1.25rem;
  grid-area: tips;
}

.waitlist-benefits-header {
  margin-bottom: 1.875rem;
}

.waitlist-benefits-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Benefits List */
.waitlist-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Individual Benefit */
.waitlist-benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.waitlist-benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.waitlist-benefit-icon.skip-line {
  background: #dcfce7;
}

.waitlist-benefit-icon.insider-updates {
  background: #dbeafe;
}

.waitlist-benefit-icon.discount {
  background: #fef3c7;
}

.waitlist-benefit-icon span {
  font-size: 0.75rem;
  font-weight: 600;
}

.waitlist-benefit-icon.skip-line span {
  color: #16a34a;
}

.waitlist-benefit-icon.insider-updates span {
  color: #2563eb;
}

.waitlist-benefit-icon.discount span {
  color: #d97706;
}

.waitlist-benefit-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.waitlist-benefit-content p {
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Logo Styling */
.logo img {
  max-height: 50px;
  width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .waitlist-form-container {
    grid-template-columns: 1fr !important;
    grid-template-areas: "form" "tips" !important;
    gap: 1.25rem !important;
  }

  .waitlist-form-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .waitlist-benefits-column {
    position: static !important;
    top: auto !important;
  }

  .waitlist-form-column,
  .waitlist-benefits-column {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .waitlist-form-column,
  .waitlist-benefits-column {
    padding: 1.25rem;
  }

  .waitlist-form-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .waitlist-benefits-title {
    font-size: 1.125rem;
  }
}

/* Loading States */
.btn-loading {
  display: none;
}

.waitlist-submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.waitlist-submit-btn:disabled:hover {
  background-color: #9ca3af;
  transform: none;
  box-shadow: none;
}

/* Celebration Modal */
.celebration-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.5s ease-out;
}

.celebration-content {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.6s ease-out;
}

.celebration-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounce 1s ease-in-out infinite;
}

.celebration-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.celebration-content p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.celebration-stats {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
  gap: 1rem;
}

.celebration-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.celebration-stats .stat-number {
  font-size: 1.5rem;
}

.celebration-stats .stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.celebration-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.celebration-home-btn,
.celebration-share-btn {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.celebration-home-btn {
  background: #2563eb;
  color: white;
}

.celebration-home-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.celebration-share-btn {
  background: #f8fafc;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.celebration-share-btn:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design for Celebration Modal */
@media (max-width: 768px) {
  .celebration-content {
    padding: 2rem;
    margin: 1rem;
  }

  .celebration-content h2 {
    font-size: 1.5rem;
  }

  .celebration-content p {
    font-size: 1rem;
  }

  .celebration-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .celebration-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .celebration-home-btn,
  .celebration-share-btn {
    width: 100%;
  }
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.contact-form-header p {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Form Groups */
.contact-form-group {
  margin-bottom: 0;
}

.contact-form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Form Inputs */
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}

/* Error States - Enhanced Visibility */
.contact-form-input.error,
.contact-form-select.error,
.contact-form-textarea.error {
  border-color: #dc2626;
  background-color: #fef2f2;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form-input.error:focus,
.contact-form-select.error:focus,
.contact-form-textarea.error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Error Messages - Enhanced Visibility */
.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.375rem;
  border-left: 4px solid #dc2626;
  display: none; /* Hidden by default, shown when errors occur */
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Labels for Error Fields */
.contact-form-group.has-error .contact-form-label {
  color: #dc2626;
  font-weight: 700;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-input:hover,
.contact-form-select:hover,
.contact-form-textarea:hover {
  border-color: #d1d5db;
}

/* Select Styling */
.contact-form-select {
  background: white;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Textarea */
.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.contact-submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-submit-btn:disabled:hover {
  background-color: #9ca3af;
  transform: none;
  box-shadow: none;
}

/* Form Footer */
.contact-form-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.contact-form-footer p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.contact-form-footer a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.contact-form-footer a:hover {
  text-decoration: underline;
}

/* Success Message */
.contact-success-message {
  text-align: center;
  padding: 3rem 2rem;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 1rem;
  color: #166534;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-success-message h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #166534;
}

.contact-success-message p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #166534;
}

/* Home Button */
.contact-home-btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 1rem;
}

.contact-home-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.contact-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-success-message h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-success-message p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Loading States */
.btn-loading {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.25rem;
    margin: 0.5rem;
  }

  .contact-form-header h2 {
    font-size: 1.25rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 60px;
  margin-top: 10px;
}

.faq-category h2 {
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-question h3 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  color: #64748b;
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #2563eb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 24px 30px;
}

.faq-answer p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.faq-answer code {
  background: #f1f5f9;
  color: #dc2626;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 14px;
}

.faq-support {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.faq-support p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.faq-support a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.faq-support a:hover {
  text-decoration: underline;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-content {
    max-width: 100%;
  }

  .faq-category h2 {
    font-size: 24px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
  }

  .faq-support {
    margin-top: 40px;
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-category {
    margin-bottom: 40px;
  }

  .faq-category h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-support {
    margin-top: 30px;
    padding: 24px 20px;
  }

  .faq-support p {
    font-size: 15px;
  }
}

/* FAQ Styles */
.faq-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.faq-cta p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.faq-cta a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.faq-cta a:hover {
  text-decoration: underline;
}

/* Pricing Page Styles */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Billing Toggle Styles */
.billing-toggle-container {
  text-align: center;
  margin-bottom: 50px;
}

.billing-toggle {
  display: inline-flex;
  background: white;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
}

.toggle-option {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 120px;
}

.toggle-option.active {
  background: #007bff;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.toggle-option:hover:not(.active) {
  background: #f8f9fa;
  color: #495057;
}

.save-badge {
  background: #28a745;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.annual-note {
  font-size: 12px;
  color: #28a745;
  font-weight: 600;
  margin-top: 5px;
  font-style: italic;
}

.billing-note {
  font-size: 14px;
  color: #6c757d;
  margin-top: 20px;
  font-style: italic;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border-color: #007bff;
  transform: scale(1.05);
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Force 4 columns side-by-side on wide screens */
@media (min-width: 1280px) {
  .pricing-grid {
    flex-wrap: nowrap;
  }
  .pricing-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
  .pricing-card.popular {
    transform: scale(1.03);
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.popular-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
  min-width: 140px;
  text-align: center;
}

.pricing-header {
  padding: 30px 25px 20px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 15px 0;
}

.price {
  margin-bottom: 15px;
}

.price .amount {
  font-size: 48px;
  font-weight: 800;
  color: #007bff;
  line-height: 1;
}

.price .period {
  font-size: 16px;
  color: #6c757d;
  font-weight: 500;
}

.credits {
  font-size: 18px;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.overage {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

.pricing-content {
  padding: 25px;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: #6c757d;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.pricing-button:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.pricing-button.popular-button {
  background: #007bff;
}

.pricing-button.popular-button:hover {
  background: #0056b3;
}

.operations,
.features {
  margin-bottom: 25px;
}

.operations h4,
.features h4 {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

.operation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f8f9fa;
}

.operation-item:last-child {
  border-bottom: none;
}

.operation-item span:first-child {
  color: #6c757d;
  font-weight: 500;
}

.operation-item span:last-child {
  color: #212529;
  font-weight: 600;
  text-align: right;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  padding: 6px 0;
  font-size: 14px;
  color: #6c757d;
  position: relative;
  padding-left: 20px;
}

.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Credit System Section */
.credit-system {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

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

.credit-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.credit-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.credit-cost {
  background: #007bff;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}

.credit-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.overage-pricing {
  margin-top: 20px;
}

.overage-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
}

.overage-item:last-child {
  border-bottom: none;
}

.overage-item span:first-child {
  color: #6c757d;
  font-weight: 500;
}

.overage-item span:last-child {
  color: #212529;
  font-weight: 600;
}

/* Pricing FAQ Section */
.pricing-faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.pricing-faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.pricing-faq-item p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* PDF Problems Hero Section */
.pdf-problems-hero {
  background: #1a2428;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pdf-problems-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #2a3a40;
  border-radius: 50%;
  opacity: 0.3;
}

.pdf-problems-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.pdf-problems-hero .eyebrow {
  color: #a0a0a0;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.pdf-problems-hero .main-heading {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: 100%;
}

.pdf-problems-hero .body-text {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 70%;
}

.pdf-problems-hero .cta-link {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.pdf-problems-hero .cta-link:hover {
  opacity: 0.8;
}

/* Responsive Design for PDF Problems Hero */
@media (max-width: 768px) {
  .pdf-problems-hero {
    padding: 60px 0;
  }

  .pdf-problems-hero .main-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .pdf-problems-hero .body-text {
    font-size: 16px;
    max-width: 100%;
  }

  .pdf-problems-hero .cta-link {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .pdf-problems-hero {
    padding: 40px 0;
  }

  .pdf-problems-hero .main-heading {
    font-size: 28px;
  }

  .pdf-problems-hero .eyebrow {
    font-size: 14px;
  }

  .pdf-problems-hero .body-text {
    font-size: 15px;
  }

  .pdf-problems-hero .cta-link {
    font-size: 15px;
  }
}

/* Annual plan - wider cards to prevent text wrapping */
.pricing-grid.annual-view .pricing-card {
  flex: 0 0 calc(30% - 15px);
  max-width: calc(30% - 15px);
}

.pricing-grid.annual-view .pricing-card.popular {
  flex: 0 0 calc(30% - 15px);
  max-width: calc(30% - 15px);
}

/* Service Page Styles */
.back-button-section {
  padding: 20px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-button:hover {
  color: #2563eb;
}

.text-to-pdf-hero .hero-icon,
.markdown-to-pdf-hero .hero-icon,
.json-to-pdf-hero .hero-icon {
  margin-bottom: 24px;
}

.text-to-pdf-hero .hero-icon .icon,
.markdown-to-pdf-hero .hero-icon .icon,
.json-to-pdf-hero .hero-icon .icon {
  font-size: 48px;
  display: block;
}

.benefits-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: #1e40af;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.hero-cta.primary {
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.hero-cta.primary:hover {
  background: #1d4ed8;
}

.hero-cta.secondary {
  background: transparent;
  color: #2563eb;
  padding: 12px 24px;
  border: 2px solid #2563eb;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero-cta.secondary:hover {
  background: #2563eb;
  color: white;
}

.benefits-section,
.features-section {
  padding: 80px 0;
  background: #ffffff;
}

.benefits-section h2,
.features-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 60px;
}

.benefits-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card,
.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon,
.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2563eb;
}

.benefit-icon svg,
.feature-icon svg {
  stroke: #2563eb;
  fill: none;
}

.benefit-card h3,
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.benefit-card p,
.feature-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.detailed-section,
.use-cases-section {
  padding: 80px 0;
  background: #f8fafc;
}

.detailed-section h2,
.use-cases-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.subsection-header {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.use-case-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2563eb;
}

.use-case-icon svg {
  stroke: #2563eb;
  fill: none;
}

.use-case-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.use-case-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.why-matters-section {
  margin: 60px 0;
}

.why-matters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.why-matters-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-matters-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.why-matters-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.secondary-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 60px 0;
}

.seo-helper {
  text-align: center;
  color: #64748b;
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.seo-helper p {
  margin: 0;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
  .benefits-grid,
  .features-grid,
  .use-cases-grid,
  .why-matters-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-bar {
    gap: 20px;
  }

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

  .benefit-badges {
    gap: 8px;
  }

  .benefit-badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  .section-header h2,
  .detailed-section h2,
  .use-cases-section h2 {
    font-size: 28px;
  }

  .subsection-header {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .detailed-section h2,
  .use-cases-section h2,
  .benefits-section h2,
  .features-section h2 {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .use-case-card,
  .benefit-card,
  .feature-card,
  .why-matters-card {
    padding: 20px;
  }

  .subsection-header {
    font-size: 20px;
  }
}

/* Sign In Button and Modal Styles */
.nav-signin {
  background: white;
  color: #374151;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid #d1d5db;
  margin-right: 0;
}

.nav-signin:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #1f2937;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

/* Modal Content */
.modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.modal-header p {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
}

/* Form Styles */
.signin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error {
  border-color: #dc2626;
}

.error-message {
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
  display: none;
}

.error-message.show {
  display: block;
}

.signin-submit {
  background: #2563eb;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.signin-submit:hover {
  background: #1d4ed8;
}

.signin-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* Loading State */
.signin-submit.loading {
  position: relative;
  color: transparent;
}

.signin-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .nav-signin {
    margin-right: 0;
    padding: 8px 16px;
    font-size: 14px;
  }
}
