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

:root {
  /* Dark Teal/Blue-Green Professional Theme */
  --primary: #2c4a4a;
  --primary-dark: #243d3d;
  --primary-light: #3a5555;
  --secondary: #4a6565;
  --accent: #5a7575;

  --bg-light: #1e3333;
  --bg-lighter: #2c4a4a;
  --bg-gradient-start: #2c4a4a;
  --bg-gradient-end: #243d3d;
  --text-dark: #ffffff;
  --text-muted: #a8c0c0;

  --success: #5a9b8a;
  --warning: #d4a574;
  --danger: #c07b6a;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.45);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Landing Page */
.landing-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for navigation height */
}

/* Section Transitions & Separators */
section {
  position: relative;
  padding-bottom: 6rem;
}

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

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.announcement-banner svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

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

/* Navigation - MOVED TO /public/css/navigation.css */
/* Commented out to avoid conflicts with navigation.css */
/*
.landing-nav {
  background: #0f1a1a;
  border-bottom: 1px solid rgba(90, 117, 117, 0.3);
  position: relative;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-brand svg {
  color: currentColor;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-menu li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 3px;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
  display: inline-block;
}

.nav-cta:hover {
  box-shadow: var(--shadow-md);
  color: white;
}

.nav-cta-disabled {
  background: rgba(90, 117, 117, 0.3);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.nav-cta-disabled:hover {
  box-shadow: none;
  transform: none;
}
*/

/* Hero Section */
.landing-header {
  text-align: center;
  padding: 5rem 2rem 4rem;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 40px,
      rgba(255, 255, 255, 0.03) 41px
    ),
    linear-gradient(135deg, rgba(44, 74, 74, 0.95) 0%, rgba(36, 61, 61, 0.85) 50%, rgba(30, 51, 51, 0.95) 100%),
    radial-gradient(circle at 20% 30%, #3a5555 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, #4a6565 0%, transparent 50%),
    linear-gradient(180deg, #2c4a4a 0%, #243d3d 100%);
  position: relative;
  overflow: hidden;
}


.landing-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  margin-top: 0;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.landing-header .subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Waitlist Form in Hero */
.hero-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(58, 85, 85, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(90, 117, 117, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}

.hero-form .form-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-form .form-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-description {
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Hero Form Inputs - Dark Background */
.hero-form .form-input,
.hero-form .form-select,
.hero-form .form-textarea {
  background: rgba(30, 51, 51, 0.7);
  border: 2px solid rgba(90, 117, 117, 0.3);
  color: #ffffff;
}

.hero-form .form-input::placeholder,
.hero-form .form-textarea::placeholder {
  color: rgba(168, 192, 192, 0.7);
}

.hero-form .form-input:focus,
.hero-form .form-select:focus,
.hero-form .form-textarea:focus {
  background: rgba(30, 51, 51, 0.9);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(90, 117, 117, 0.25);
}

.hero-form .checkbox-wrapper {
  background: rgba(58, 85, 85, 0.4);
}

.hero-form .checkbox-wrapper:hover {
  background: rgba(74, 101, 101, 0.5);
}

.hero-form .checkbox-wrapper label {
  color: #ffffff;
}

.hero-form .checkbox-wrapper label a {
  color: #6ee7b7;
  text-decoration: underline;
}

.hero-form .checkbox-wrapper label a:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(90, 117, 117, 0.15);
}

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

.form-input-large {
  padding: 1.125rem 1.25rem;
  font-size: 1.05rem;
}

.form-textarea-large {
  min-height: 140px;
  padding: 1.125rem 1.25rem;
  font-size: 1.05rem;
}

.btn-large {
  padding: 1.125rem 2rem;
  font-size: 1.05rem;
}

/* Checkbox Group */
.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: left;
}

.checkbox-wrapper:hover {
  background: #e5e7eb;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
  border-radius: 4px;
}

.checkbox-wrapper label {
  font-size: 0.875rem;
  color: #1f2937;
  cursor: pointer;
  line-height: 1.6;
  text-align: left;
  flex: 1;
}

.checkbox-wrapper label a {
  color: #4a6565;
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-wrapper label a:hover {
  color: #2c4a4a;
  text-decoration: underline;
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  background: #6a8585;
}

.btn-primary:active {
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(90, 117, 117, 0.3);
  border: 2px solid var(--accent);
  color: white;
}

.btn-secondary:hover {
  background: rgba(90, 117, 117, 0.5);
  border-color: #6a8585;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-block {
  width: 100%;
}

/* Features Section */
.features {
  background: #f8f9fa;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.features::after {
  display: none;
}

.features > * {
  max-width: 1200px;
  margin: 0 auto;
}

/* Bento Box Features Grid */
.features-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Cards Base */
.feature-card-large,
.feature-card-medium,
.feature-card-small {
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-large:hover,
.feature-card-medium:hover,
.feature-card-small:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(90, 117, 117, 0.15);
}

/* Large Featured Card */
.feature-card-large {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #f8fdfc 100%);
}

.feature-card-large.feature-primary {
  border-color: var(--accent);
}

/* Medium Cards */
.feature-card-medium {
  grid-column: span 3;
  min-height: 240px;
}

/* Small Cards */
.feature-card-small {
  grid-column: span 2;
  padding: 2rem;
  min-height: 180px;
}

/* Feature Numbers */
.feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(90, 117, 117, 0.06);
  line-height: 1;
}

/* Icons */
.feature-icon-large {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(90, 117, 117, 0.2);
}

.feature-icon-large svg {
  color: white;
}

.feature-icon-medium {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(90, 117, 117, 0.18);
}

.feature-icon-medium svg {
  color: white;
}

.feature-icon-small {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(90, 117, 117, 0.15);
}

.feature-icon-small svg {
  color: white;
}

/* Content */
.feature-content {
  flex: 1;
}

.feature-card-large h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.2;
}

.feature-card-large p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

.feature-card-medium h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.feature-card-medium p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-card-small h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.feature-card-small p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Feature Stat Badge */
.feature-stat {
  display: inline-block;
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  color: #047857;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: auto;
}

/* Feedback Section */
.feedback-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.feedback-section > * {
  max-width: 700px;
  margin: 0 auto;
}

.feedback-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.feedback-card .message-success {
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #065f46;
  font-weight: 600;
}

.feedback-card .message-error {
  background: #fee2e2;
  border: 2px solid #ef4444;
  color: #991b1b;
  font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 40px,
      rgba(255, 255, 255, 0.03) 41px
    ),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.final-cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.final-cta-content .btn {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.final-cta-content .btn-primary {
  background: var(--accent);
  color: white;
  border: 2px solid transparent;
}

.final-cta-content .btn-primary:hover {
  background: #6a8585;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.final-cta-content .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.final-cta-content .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Success/Error Messages */
.message {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.message-success {
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  color: #ffffff;
  font-weight: 600;
}

.message-error {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid #ef4444;
  color: #ffffff;
  font-weight: 600;
}

/* Footer */
.landing-footer {
  margin-top: auto;
  background: linear-gradient(135deg, #0f1515 0%, #152820 100%);
  border-top: 1px solid rgba(90, 117, 117, 0.3);
  color: var(--text-muted);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo svg {
  color: currentColor;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--text-dark);
}

.footer-disabled {
  color: rgba(168, 192, 192, 0.4);
  font-size: 0.9rem;
  cursor: not-allowed;
  text-decoration: none;
  opacity: 0.5;
}

/* New Sections Styles */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header::after {
  display: none;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/* Pricing Section */
.pricing-section {
  background: #ffffff;
  padding: 5rem 2rem;
}

.pricing-section > * {
  max-width: 1200px;
  margin: 0 auto;
}

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

.pricing-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

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

.pricing-period {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

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

.pricing-features li {
  padding: 0.75rem 0;
  color: #1f2937;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-features li:before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  margin-right: 0.75rem;
}

/* Pricing Calculator */
.pricing-calculator {
  max-width: 800px;
  margin: 0 auto;
}

.calculator-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  box-shadow: var(--shadow-lg);
}

.calculator-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calculator-description {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.calculator-input-group {
  margin-bottom: 2.5rem;
}

.calculator-input-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.input-with-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.workers-slider {
  flex: 1;
  height: 8px;
  border-radius: 5px;
  background: rgba(90, 117, 117, 0.3);
  outline: none;
  -webkit-appearance: none;
}

.workers-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.workers-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--shadow);
  border: none;
}

.workers-display {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
  text-align: center;
}

.price-breakdown {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid #e5e7eb;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.breakdown-row:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

.breakdown-row.subtotal {
  font-weight: 600;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--accent);
}

.breakdown-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--accent);
}

.gratis-label {
  color: #16a34a;
  font-weight: 600;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.pricing-note svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}

.pricing-note p {
  margin: 0;
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.5;
}

.calculator-card .pricing-features {
  margin-bottom: 2rem;
}

.calculator-card .pricing-features h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.calculator-card .pricing-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.calculator-card .pricing-features li {
  font-size: 0.95rem;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calculator-card .pricing-features li:before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

/* Additional Services */
.additional-services {
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e5e7eb;
}

.additional-services h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-option {
  display: block;
  padding: 1.25rem;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-option:hover {
  background: #e5e7eb;
  border-color: var(--accent);
}

.service-option input[type="checkbox"] {
  display: none;
}

.service-option input[type="checkbox"]:checked + .service-info {
  color: var(--accent);
}

.service-option input[type="checkbox"]:checked ~ * {
  font-weight: 600;
}

.service-option:has(input:checked) {
  background: #dbeafe;
  border-color: var(--accent);
}

.service-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.service-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.service-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* How It Works */
.how-it-works-section {
  background: #f0f5f4;
  padding: 5rem 2rem;
}

.how-it-works-section > * {
  max-width: 1000px;
  margin: 0 auto;
}

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

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: var(--primary-dark);
  text-align: center;
}

.cta-section > * {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-box p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

.cta-box p strong {
  color: #ffffff;
  font-weight: 700;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(58, 85, 85, 0.4);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(90, 117, 117, 0.3);
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

.cta-benefit svg {
  flex-shrink: 0;
  color: #6ee7b7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  background: var(--accent);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.btn-light:hover {
  box-shadow: var(--shadow-md);
  background: #6a8585;
}

/* FAQ Section */
.faq-section {
  background: #ffffff;
  padding: 5rem 2rem;
}

.faq-section > * {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

.footer-bottom {
  border-top: 1px solid rgba(90, 117, 117, 0.2);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .landing-header {
    padding: 4rem 2rem 3rem;
  }

  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-large {
    grid-column: span 2;
  }

  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-banner {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  /* Mobile navigation - MOVED TO /public/css/navigation.css */
  /*
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #2c4a4a;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li a,
  .nav-menu li span {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
  }

  .nav-menu li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 0.5rem;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .landing-nav {
    z-index: 10001;
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
  }

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

  .landing-header h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .landing-header .subtitle {
    font-size: 1rem;
  }

  .hero-form {
    padding: 1.5rem;
  }

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

  .feature-card-large,
  .feature-card-medium,
  .feature-card-small {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: auto;
  }

  .feature-card-large h3 {
    font-size: 1.5rem;
  }

  .feature-card-large p {
    font-size: 1rem;
  }

  .feature-number {
    font-size: 3rem;
  }

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

  .calculator-card {
    padding: 2rem 1.5rem;
  }

  .calculator-card .pricing-features ul {
    grid-template-columns: 1fr;
  }

  .breakdown-row {
    font-size: 0.9rem;
  }

  .breakdown-row.total {
    font-size: 1.1rem;
  }

  .service-option {
    padding: 1rem;
  }

  .service-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

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

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

  .cta-box {
    padding: 3rem 2rem;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .feedback-card {
    padding: 2rem 1.5rem;
  }

  .feedback-card h2 {
    font-size: 1.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem 2rem;
  }

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

@media (max-width: 480px) {
  .landing-header {
    padding: 3rem 1rem 2rem;
  }

  .landing-header h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .footer-content {
    padding: 2rem 1rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .hero-form {
    padding: 1.25rem;
  }

  .hero-form h3 {
    font-size: 1.5rem;
  }

  .form-input,
  .form-textarea {
    font-size: 1rem;
  }

  .checkbox-wrapper label {
    font-size: 0.85rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .nav-brand {
    font-size: 1.25rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }

  .calculator-card {
    padding: 1.5rem 1rem;
  }

  .pricing-note {
    font-size: 0.85rem;
  }
}
