/* --- Promo Banner --- */
.promo-banner {
  background: linear-gradient(90deg, #15803d 0%, #16a34a 50%, #15803d 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 200;
}

.promo-banner strong {
  font-weight: 700;
}

.promo-banner .promo-code {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 1px 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.promo-banner-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}

.promo-banner-close:hover {
  color: #ffffff;
}

/* --- Base Variables & Reset --- */
:root {
  /* Rich Gradients & Colors */
  --primary: #e11d48;      /* Rose */
  --primary-hover: #be123c; /* Deep Rose */
  --primary-gradient: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  --primary-gradient-hover: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
  
  --text-dark: #0f172a;    /* Midnight Slate */
  --text-light: #475569;
  --text-muted: #94a3b8;
  
  --bg-light: #f8fafc;     /* Soft Cool Gray */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Softer, High-End Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Rich Glassmorphism Shadows */
  --shadow-sm: 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 15px rgba(225, 29, 72, 0.3);
  
  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em;}
h3 { font-size: 1.5rem; }

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* --- Layout Utilities --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.grid {
  display: grid;
  gap: 2rem;
}

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

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

.flex {
  display: flex;
}

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

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* --- Components --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-gradient-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
  box-shadow: var(--shadow-glow);
}

.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 29, 72, 0.2);
}

/* --- Professional Content Styling --- */
.content-section {
  line-height: 1.8;
}

.content-section h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
  color: var(--text-dark);
}

.content-section h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.content-section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  padding-left: 0.5rem;
  list-style-type: disc;
  list-style-position: outside;
  line-height: 1.7;
}

.content-section ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.content-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section ol li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  padding-left: 0.5rem;
  list-style-type: decimal;
  list-style-position: outside;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  margin-top: 0;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-btns .btn {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
}

.popular-card {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}

.popular-card:hover {
  transform: scale(1.02) translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* --- Header & Nav --- */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
}

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

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.nav-dropdown-toggle {
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--primary);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  margin-top: 0.5rem;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1000;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  padding: 0.8rem 1.2rem;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.nav-dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: calc(1.2rem + 2px);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
  padding: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(225, 29, 72, 0.04), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(225, 29, 72, 0.04), transparent 25%),
    linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #cbd5e1;
  height: calc(760px * 995 / 1056);
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-bg-image {
  width: 760px;
  height: auto;
  max-height: calc(760px * 995 / 1056);
  aspect-ratio: 1056 / 995;
  object-fit: contain;
  object-position: right bottom;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  padding: 8.5rem 0 6.5rem;
  max-width: 820px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -2rem -11rem -2rem -3rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 34%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.58) 72%, rgba(255, 255, 255, 0.2) 88%, rgba(255, 255, 255, 0) 100%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .badge {
  width: fit-content;
  background: transparent;
  color: var(--text-dark);
  padding: 0;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 0 2rem;
}

.hero-disclaimer {
  display: inline-block;
  background: #fff3f3;
  color: var(--primary-hover);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border: 1px solid #fee2e2;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .hero-content {
    min-height: 620px;
    max-width: 820px;
  }
}

@media (max-width: 1280px) {
  .hero-bg-media {
    display: none;
  }

  .hero-content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-bg-media {
    display: none;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    min-height: 560px;
    padding: 7rem 0 5rem;
    max-width: none;
  }

  .hero-content::before {
    display: none;
  }

  .hero-bg-image {
    width: 100%;
    object-position: center bottom;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* --- Pricing/Packages Section --- */
.packages {
  background-color: var(--bg-white);
}

.package-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 260px;
  max-width: 300px;
}

/* --- How It Works Balancing --- */
.how-it-works-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.how-it-works-steps .card {
  flex: 1 1 300px;
  max-width: 360px;
}

.how-it-works-steps .step-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.how-it-works-steps .step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--step-bg);
  background-repeat: no-repeat;
  background-position: right -8px bottom -8px;
  background-size: 52%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.how-it-works-steps .step-card > * {
  position: relative;
  z-index: 1;
}

.how-it-works-steps .step-card h3 {
  font-weight: 800;
}

.how-it-works-steps .step-card p {
  font-weight: 600;
}

.how-it-works-steps .step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.how-it-works-steps .step-1 {
  --step-bg: url('../images/how-it-works/tote-1.png');
}

.how-it-works-steps .step-2 {
  --step-bg: url('../images/how-it-works/tote-2.png');
}

.how-it-works-steps .step-3 {
  --step-bg: url('../images/how-it-works/tote-3.png');
}

@media (max-width: 768px) {
  .how-it-works-steps .step-card::before {
    background-size: 45%;
    opacity: 0.1;
  }
}

.package-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.package-pricing-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.package-features {
  margin-bottom: 2rem;
  flex-grow: 1; border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.package-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.package-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.75rem;
}

.term-badge {
  display: block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.term-badge.extended {
  background: #fff1f2;
  color: var(--primary);
  border: 1px solid #fecdd3;
  transform: scale(1.02);
}

.pricing-footer-note {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  background: var(--bg-light);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

/* --- Cardboard Comparison --- */
.comparison-section {
  background-color: var(--bg-light);
}

.comparison-table {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-header {
  font-weight: 700;
  background: var(--bg-light);
}
.comp-row div:nth-child(2) { color: var(--primary); font-weight: 600; }
.comp-row div:nth-child(3) { color: var(--text-light); }

/* --- Forms & Booking --- */
.booking-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 
    "inputs"
    "summary"
    "actions";
  gap: 2rem;
  align-items: start;
}

.booking-inputs { grid-area: inputs; }
.booking-summary { grid-area: summary; }
.booking-actions { grid-area: actions; }

@media (min-width: 992px) {
  .booking-container {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: 
      "inputs summary"
      "actions summary";
    gap: 3rem;
  }
  
  .booking-summary {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .order-summary {
    position: static;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231f2937%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Validation styling */
.validation-message {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}
.validation-success { color: #16a34a; }
.validation-error { color: #dc2626; }

/* Order Summary */
.order-summary {
  position: static;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.summary-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1rem 0;
}

.summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Promo / Gift Card Code */
.promo-code-row {
  margin-bottom: 0.5rem;
}

.promo-input-wrap {
  display: flex;
  gap: 0.5rem;
}

.promo-input-wrap input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-main);
  background: var(--bg-white);
  outline: none;
  transition: border-color 0.2s;
}

.promo-input-wrap input:focus {
  border-color: var(--primary);
}

.promo-input-wrap input:disabled {
  background: #f1f5f9;
  color: var(--text-muted);
}

.promo-input-wrap button {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.promo-input-wrap button:hover {
  background: var(--primary-hover);
}

.promo-input-wrap button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.promo-feedback {
  font-size: 0.8rem;
  margin-top: 0.35rem;
  min-height: 1rem;
}

.promo-success { color: #16a34a; }
.promo-error   { color: #dc2626; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

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

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
}

/* Terms Page */
.terms-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.terms-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.terms-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* --- Footer --- */
footer {
  background: var(--text-dark);
  color: #fff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col p, .footer-col a {
  color: #9ca3af;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    gap: 0.5rem;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    background: var(--bg-light);
    border: none;
    box-shadow: none;
    min-width: auto;
    margin-top: 0.5rem;
    padding: 0.5rem 0 0.5rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .nav-dropdown-item {
    padding: 0.6rem 1rem;
  }


@media (max-width: 560px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.05;
  }
}
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-btns {
    flex-direction: column;
  }
}

/* --- Pricing Toggle --- */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-toggle-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
}
.pricing-toggle-label.active {
  color: var(--primary);
}
.pricing-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--text-muted);
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.3s;
}
.pricing-switch.commercial {
  background: var(--primary-gradient);
}
.pricing-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}
.pricing-switch.commercial::after {
  transform: translateX(28px);
}

