/* RouteCalc marketing site — clean SaaS (light shell, strong CTAs) */

/* ===== Variables ===== */
:root {
  --primary-color: #0f172a;       /* Headlines / slate */
  --accent-color: #4f46e5;        /* Links / focus indigo */
  --accent-soft: #eef2ff;
  --success-color: #059669;       /* Primary CTA green */
  --success-hover: #047857;
  --danger-color: #e11d48;
  --warning-color: #f59e0b;
  --info-color: #0ea5e9;
  --text-dark: #475569;
  --text-light: #64748b;
  --bg-page: #f1f5f9;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Modern shadows - Fonoa-style layered depth */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  
  /* Modern gradients */
  --gradient-primary: linear-gradient(135deg, #313a46 0%, #404954 100%);
  --gradient-accent: linear-gradient(135deg, #727cf5 0%, #5b64d4 100%);
  --gradient-success: linear-gradient(135deg, #0acf97 0%, #09b885 100%);
  
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  --spacing-unit: 0.25rem;
  --section-padding: 3.5rem;
  --container-max-width: 1120px;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  color: var(--text-dark);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
}
h2 { 
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
}
h3 { 
  font-size: 1.0625rem;
  font-weight: 600;
}
h4 { font-size: 0.9375rem; }
h5 { font-size: 0.875rem; }
h6 { font-size: 0.8125rem; }

p {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #4338ca;
}

/* ===== Layout ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 2);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-white);
}

.section-alt {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Navigation ===== */
.site-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.navbar {
  background: #ffffff;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.navbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.navbar-brand:hover {
  color: var(--primary-color);
  opacity: 0.85;
}

.navbar-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
}

.site-nav-burger span {
  display: block;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

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

.navbar-menu a.nav-active {
  color: var(--accent-color);
  font-weight: 600;
}

.btn-app {
  background: var(--success-color);
  color: #fff !important;
  padding: 0.6rem 2.5rem !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  white-space: nowrap;
}

.btn-app:hover {
  background: var(--success-hover);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  color: var(--primary-color);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  max-width: 520px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 45%;
  max-width: 400px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero .subheadline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-light);
  max-width: 36rem;
  margin: 0 auto 1.75rem auto;
  line-height: 1.65;
}

.btn-primary {
  background: var(--success-color);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
  color: #ffffff;
  background: var(--success-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.hero-cta-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.section-cta {
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
  border-top: 1px solid rgba(5, 150, 105, 0.12);
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
}

.section-cta h2 {
  margin-bottom: 0.5rem;
}

.mid-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Campainless-style: no cards, left-aligned icon + copy grid */
.plain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .plain-grid--steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .plain-grid--features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plain-grid--features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .plain-grid--audience {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plain-feature {
  text-align: left;
}

.plain-feature .feature-icon-img {
  width: 44px;
  height: 44px;
  margin: 0 0 0.85rem 0;
  margin-left: 0;
  margin-right: auto;
  filter: none;
}

.plain-feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
}

.plain-feature p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 0;
}

.api-hook {
  max-width: 40rem;
  margin: 0 auto;
}

.api-hook .section-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.plain-list li {
  padding: 0.35rem 0 0.35rem 1.35rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success-color);
}

.btn-outline {
  display: inline-block;
  text-align: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color) !important;
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: #3730a3 !important;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 0.75rem;
  width: 100%;
}

.pricing-actions .btn-primary,
.pricing-actions .btn-outline {
  width: 100%;
  box-sizing: border-box;
}

.pricing-save {
  font-size: 0.8125rem;
  color: var(--success-color);
  font-weight: 600;
  margin: 0.15rem 0 0.35rem;
  line-height: 1.4;
}

.pricing-tier-line {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.35rem;
}

.per-credit {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

ul.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

ul.checklist li {
  padding: 0.25rem 0 0.25rem 1.5rem;
  position: relative;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.features-grid--home {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .features-grid--home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid--home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .features-grid:not(.features-grid--home) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-white);
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}

.feature-icon-img {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.feature-card:hover .feature-icon-img {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ===== Compact Pain Points List ===== */
.pain-points-list {
  max-width: 900px;
  margin: 0.5rem auto 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1rem;
}

.pain-points-list li {
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  transition: all 0.2s ease;
}

.pain-points-list li:hover {
  transform: translateX(3px);
  color: var(--primary-color);
}

.pain-points-list li::before {
  content: "✗";
  color: var(--danger-color);
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  text-shadow: 0 1px 2px rgba(250, 92, 124, 0.2);
}

/* ===== Features List (Simple) ===== */
.features-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li strong {
  font-size: 1rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.features-list li p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ===== Steps / How It Works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--bg-white);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.step:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(79, 70, 229, 0.15);
}

.step-icon-img {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.625rem auto;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.step:hover .step-icon-img {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.2));
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--primary-color);
}

.step p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ===== Pricing Cards ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: var(--bg-white);
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card.popular {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.1);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-white) 45%);
}

.pricing-card.popular > h3::before {
  content: "Most Popular";
  display: block;
  position: static;
  transform: none;
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.15rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto 0.5rem;
}

.pricing-card:hover {
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.pricing-card h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
  font-weight: 600;
  position: relative;
}

.pricing-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
  line-height: 1;
}

.pricing-card .price-currency {
  font-size: 1rem;
  font-weight: 500;
}

.pricing-card .routes-count {
  color: var(--text-light);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 0.75rem 0;
}

.pricing-card ul li {
  padding: 0.25rem 0 0.25rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.75rem;
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--success-color);
  font-weight: bold;
  font-size: 0.875rem;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 600px;
  margin: calc(var(--spacing-unit) * 3) auto 0 auto;
  background: linear-gradient(135deg, rgba(250, 251, 254, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 0.625rem;
  border: 1px solid rgba(222, 226, 230, 0.5);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.625rem;
  background: radial-gradient(circle at top right, rgba(114, 124, 245, 0.03), transparent 60%);
  pointer-events: none;
}

.form-group {
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(222, 226, 230, 0.5);
  border-radius: 0.625rem;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(250, 251, 254, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
  z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(114, 124, 245, 0.08), var(--shadow-sm);
  transform: translateY(-1px);
  background: var(--bg-white);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: var(--success-color);
  color: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.btn-submit:hover {
  transform: translateY(-1px);
  background: var(--success-hover);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
  color: #ffffff;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-white);
  color: var(--text-light);
  padding: 2.5rem 0 2rem;
  margin-top: 0;
  border-top: 1px solid var(--border-color);
}

.footer .container {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.mb-3 {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.mt-3 {
  margin-top: calc(var(--spacing-unit) * 3);
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  :root {
    --section-padding: 2.5rem;
  }

  .site-nav-burger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
  }

  .navbar-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
    padding-top: 0.5rem;
  }

  .navbar-menu a {
    display: block;
    padding: 0.65rem 0;
  }

  .navbar-menu .btn-app {
    text-align: center;
    display: inline-block;
    padding: 0.6rem 2.5rem !important;
  }

  .site-nav-toggle:checked ~ .navbar-menu {
    display: flex;
  }

  .pain-points-list {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-card.popular {
    transform: scale(1);
  }

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

/* ===== Admin Panel Styles ===== */
.admin-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
}

.admin-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}

.admin-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.admin-section:last-child {
  border-bottom: none;
}

.admin-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* ===== Success/Error Messages ===== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
