/* Call2Calendar - Conversion Site Styles */
/* Mobile-first, clean, fast-loading */

:root {
  --primary: #01285c;
  --primary-dark: #011d44;
  --primary-light: #0a3d7a;
  --secondary: #ea580c;
  --secondary-dark: #c2410c;
  --dark: #1e293b;
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --success: #22c55e;
  --warning: #eab308;
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  z-index: 1000;
  padding: 12px 0;
}

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

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

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

.header-cta {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.header-nav {
  display: none;
  gap: 24px;
}

.header-nav a {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

/* Click to call - mobile only */
.click-to-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--success);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .click-to-call {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

@media (min-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }
}

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

.hero h1 {
  margin-bottom: 16px;
  color: var(--gray-900);
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subhead {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-proof {
    flex-direction: row;
    gap: 32px;
    max-width: none;
    justify-content: center;
    text-align: center;
  }
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.proof-item svg {
  flex-shrink: 0;
  color: var(--success);
}

/* Social Proof Strip */
.social-proof {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.social-proof-content {
  text-align: center;
}

.social-proof p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0.6;
}

.logo-placeholder {
  padding: 12px 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Section */
.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

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

.section-header p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 16px auto 0;
}

/* Problem + Outcome Section */
.problem-outcome {
  background: var(--gray-100);
}

.po-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .po-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.po-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.po-card h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.po-card.problems h3 {
  color: #dc2626;
}

.po-card.outcomes h3 {
  color: var(--success);
}

.po-list {
  list-style: none;
}

.po-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.po-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.problems .po-list li svg {
  color: #dc2626;
}

.outcomes .po-list li svg {
  color: var(--success);
}

/* How It Works */
.how-it-works {
  background: var(--white);
}

.steps {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

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

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.step-arrow {
  display: none;
}

@media (min-width: 768px) {
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
  }
}

/* Diagram */
.diagram {
  margin-top: 48px;
  padding: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  text-align: center;
}

.diagram-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .diagram-flow {
    flex-direction: row;
    justify-content: center;
  }
}

.diagram-item {
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.diagram-arrow {
  color: var(--primary);
  font-weight: bold;
}

@media (min-width: 768px) {
  .diagram-arrow {
    transform: rotate(0deg);
  }
}

/* Packages */
.packages {
  background: var(--gray-100);
}

.package-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
  }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card h3 {
  margin-bottom: 8px;
}

.package-setup {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.package-features li svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 3px;
}

.package-card .btn {
  width: 100%;
}

/* Proof/Case Studies */
.proof-section {
  background: var(--white);
}

.case-studies {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .case-studies {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.case-study {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.case-study-avatar {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.case-study-meta h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.case-study-meta span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.case-study blockquote {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.case-study-stats {
  display: flex;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Video placeholder */
.video-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  border: 2px dashed var(--gray-300);
}

.video-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.video-placeholder p {
  color: var(--gray-500);
}

/* FAQ */
.faq {
  background: var(--gray-100);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  background: var(--white);
  color: var(--primary);
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

.final-cta h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  font-size: 1.125rem;
}

/* Calendar Embed */
.calendar-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-placeholder {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius);
  color: var(--gray-500);
}

/* Footer */
.footer {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--gray-300);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
  margin-bottom: 32px;
}

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

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

.footer-col h4 {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

/* Dark Footer Variant */
.footer-dark {
  background: #01285c !important;
  color: #94a3b8;
  border-top: none !important;
}

.footer-dark .footer-col h4 {
  color: #ffffff;
}

.footer-dark .footer-col a {
  color: #94a3b8;
}

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

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-sticky-cta .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* Add padding to body for sticky CTA */
body {
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Book Page */
.book-page {
  padding: 100px 0 60px;
  min-height: 100vh;
  background: var(--gray-100);
}

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

.book-content h1 {
  margin-bottom: 16px;
}

.book-content > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.booking-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Thank You Page */
.thank-you-page {
  padding: 100px 0 60px;
  min-height: 100vh;
  background: var(--gray-100);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.thank-you-content > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.next-steps {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  margin-bottom: 32px;
}

.next-steps h3 {
  margin-bottom: 20px;
}

.next-steps-list {
  list-style: none;
}

.next-steps-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.next-steps-list li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.video-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.video-section h3 {
  margin-bottom: 16px;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--gray-300);
}

.modal-content {
  padding: 32px;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* A/B Test variants - hidden by default */
[data-variant] {
  display: none;
}

[data-variant].active {
  display: block;
}

/* ===========================================
   UX IMPROVEMENTS
   =========================================== */

/* Enhanced buttons */
.btn-primary {
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

/* Enhanced hero spacing */
.hero {
  padding: 120px 0 80px;
}

@media (min-width: 768px) {
  .hero {
    padding: 160px 0 100px;
  }
}

.hero-subhead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hero-subhead {
    font-size: 1.35rem;
  }
}

.hero-buttons {
  gap: 16px;
  margin-bottom: 48px;
}

/* Enhanced social proof */
.social-proof {
  padding: 48px 0;
}

.social-proof-content h3 {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 24px;
}

.logo-strip {
  opacity: 1;
  gap: 20px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.logo-placeholder:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.logo-placeholder .metric {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 700;
}

/* Enhanced package cards */
.package-card.featured {
  border: 3px solid var(--secondary);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

@media (min-width: 768px) {
  .package-card.featured {
    transform: scale(1.02);
  }

  .package-card.featured:hover {
    transform: scale(1.04);
  }
}

.package-badge {
  background: var(--secondary);
  padding: 6px 18px;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.package-card .btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Step icons */
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

/* Enhanced diagram */
.diagram-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.85rem;
}

.diagram-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.diagram-arrow {
  font-size: 1.5rem;
  color: var(--secondary);
}

/* Enhanced case studies */
.case-study {
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.case-study:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.case-study-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: 24px;
}

.trust-badge svg {
  color: var(--success);
}

/* Improved section spacing */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

/* Better mobile sticky CTA */
.mobile-sticky-cta {
  padding: 12px 16px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  border-top: 1px solid var(--gray-100);
}

body {
  padding-bottom: 90px;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Lazy loading support */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* =============================================
   PREMIUM DESIGN ENHANCEMENTS
   ============================================= */

/* Inter font loaded via <link> tags in HTML head — no @import needed */

:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --gradient-primary: linear-gradient(135deg, #01285c 0%, #011d44 100%);
  --gradient-secondary: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  --gradient-dark: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Enhanced typography */
h1 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
}

h2 {
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 800;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
    line-height: 1.15;
  }
}

/* Hero gradient background */
.hero {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 50%, #fafbff 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(1, 40, 92, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero animations */
.hero h1 {
  animation: slideInDown 0.6s ease-out;
}

.hero-subhead {
  animation: slideInUp 0.6s ease-out 0.1s both;
  font-weight: 500;
}

.hero-buttons {
  animation: slideInUp 0.6s ease-out 0.2s both;
}

.hero-proof {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Enhanced buttons */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--gradient-secondary);
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(1, 40, 92, 0.04);
  transform: translateY(-2px);
}

.btn-outline:hover {
  box-shadow: 0 8px 16px rgba(1, 40, 92, 0.25);
  transform: translateY(-2px);
}

/* Enhanced trust badge */
.trust-badge {
  animation: fadeInUp 0.6s ease-out 0.4s both;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(1, 40, 92, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

/* Enhanced proof items */
.proof-item {
  font-weight: 500;
  transition: all 0.3s ease;
}

.proof-item:hover {
  transform: translateX(4px);
}

.proof-item svg {
  filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.2));
}

/* Social proof cards */
.logo-placeholder {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.logo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
}

.logo-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(1, 40, 92, 0.1);
}

.logo-placeholder:hover::before {
  left: 100%;
}

.logo-placeholder:hover svg {
  transform: scale(1.1);
}

.logo-placeholder svg {
  transition: transform 0.3s ease;
}

.logo-placeholder .metric {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Problem/outcome cards */
.po-card {
  padding: 40px 32px;
  border: 1px solid rgba(203, 213, 225, 0.5);
  position: relative;
  overflow: hidden;
}

.po-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.po-card.problems::before {
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.po-card.outcomes::before {
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%);
}

.po-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.po-card:hover::before {
  opacity: 1;
}

/* Enhanced step icons */
.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(1, 40, 92, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover .step-icon {
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(1, 40, 92, 0.15);
}

.step-icon svg {
  width: 36px;
  height: 36px;
}

/* Diagram items */
.diagram-item {
  padding: 16px 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
}

.diagram-item:hover {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(1, 40, 92, 0.15);
}

.diagram-arrow {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.7; transform: translateX(2px); }
}

/* Package cards */
.package-card {
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.package-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 247, 0.8) 100%);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.package-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(249, 115, 22, 0.25);
}

@media (min-width: 768px) {
  .package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
  }
}

.package-badge {
  background: var(--gradient-secondary);
  padding: 8px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Case studies */
.case-study {
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study:hover {
  box-shadow: 0 16px 32px rgba(1, 40, 92, 0.12);
  transform: translateY(-6px);
}

.case-study:hover::before {
  transform: scaleX(1);
}

.case-study-avatar {
  background: var(--gradient-primary);
  box-shadow: 0 8px 16px rgba(1, 40, 92, 0.3);
}

/* FAQ enhancements */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(1, 40, 92, 0.1);
}

.faq-question:hover {
  background: linear-gradient(90deg, rgba(1, 40, 92, 0.04) 0%, transparent 100%);
  color: var(--primary);
}

.faq-item.active .faq-question svg {
  color: var(--primary);
}

/* Final CTA */
.final-cta {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

/* Header enhancements */
.header {
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.click-to-call {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.click-to-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Animations */
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* Focus states for accessibility */
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Headline emphasis highlights */
.highlight-red {
  position: relative;
  white-space: nowrap;
}

.highlight-red::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.15em;
  background: linear-gradient(90deg, #ef4444 0%, #f87171 50%, #ef4444 100%);
  border-radius: 2px;
  z-index: -1;
}

.highlight-green {
  position: relative;
  white-space: nowrap;
}

.highlight-green::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.15em;
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
  border-radius: 2px;
  z-index: -1;
}

/* Capability tags */
.capability-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s ease;
}

.capability-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Package upgrade badge */
.package-badge-upgrade {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-500);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Package note */
.package-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

/* =============================================
   MEET SAMANTHA - AI DEMO EXPERIENCE
   ============================================= */

/* Space Mono loaded on-demand when Jessica modal opens */

/* The Overlay */
.samantha-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: radial-gradient(ellipse at center top, #01285c 0%, #011d44 60%, #010f24 100%);
  overflow: hidden;
}

.samantha-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: samanthaFadeIn 0.5s ease-out;
}

@keyframes samanthaFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Close Button */
.samantha-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
  padding-bottom: 4px;
}

.samantha-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: scale(1.05);
}

/* Floating Particles */
.samantha-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 245, 212, 0.4);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 75%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(7) { left: 85%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 95%; animation-delay: 4.5s; animation-duration: 23s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

/* Main Content */
.samantha-content {
  text-align: center;
  padding: 40px 24px;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

/* The AI Orb */
.samantha-orb {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
}

.samantha-overlay.active .samantha-orb {
  animation: orbReveal 0.8s ease-out forwards;
}

@keyframes orbReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.orb-core {
  position: absolute;
  inset: 30px;
  background: radial-gradient(circle at 35% 35%, #00f5d4 0%, #0ea5e9 50%, #6366f1 100%);
  border-radius: 50%;
  animation: orbBreathe 4s ease-in-out infinite;
  box-shadow:
    0 0 60px rgba(0, 245, 212, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.orb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbGlow 4s ease-in-out infinite;
}

@keyframes orbGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.orb-ring {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(0, 245, 212, 0.3);
  border-radius: 50%;
  animation: orbRingSpin 20s linear infinite;
}

.orb-ring-2 {
  inset: 0;
  border-color: rgba(167, 139, 250, 0.2);
  animation: orbRingSpin 30s linear infinite reverse;
}

@keyframes orbRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Title */
.samantha-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
}

.samantha-overlay.active .samantha-title {
  animation: textReveal 0.6s ease-out 0.3s forwards;
}

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

/* Subtitle */
.samantha-subtitle {
  font-size: 1.1rem;
  color: rgba(0, 245, 212, 0.9);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.samantha-overlay.active .samantha-subtitle {
  animation: textReveal 0.6s ease-out 0.4s forwards;
}

/* Message */
.samantha-message {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
}

.samantha-overlay.active .samantha-message {
  animation: textReveal 0.6s ease-out 0.5s forwards;
}

/* Phone Number */
.samantha-phone {
  font-family: 'Space Mono', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  opacity: 0;
}

.samantha-overlay.active .samantha-phone {
  animation: phoneReveal 0.6s ease-out 0.7s forwards;
}

@keyframes phoneReveal {
  to { opacity: 1; }
}

.phone-digit {
  color: #00f5d4;
  text-shadow:
    0 0 10px rgba(0, 245, 212, 0.8),
    0 0 30px rgba(0, 245, 212, 0.5),
    0 0 60px rgba(0, 245, 212, 0.3);
  opacity: 0;
  transform: translateY(10px);
}

.samantha-overlay.active .phone-digit {
  animation: digitGlow 0.3s ease-out forwards;
  animation-delay: calc(0.8s + (var(--i) * 0.06s));
}

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

.phone-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
}

/* Call Button */
.samantha-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(34, 197, 94, 0.4),
    0 0 0 0 rgba(34, 197, 94, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.samantha-overlay.active .samantha-call-btn {
  animation: btnReveal 0.6s ease-out 1.2s forwards;
}

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

.samantha-call-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 64px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  opacity: 0;
  z-index: -1;
  animation: pulseRing 2s ease-out infinite 1.5s;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.samantha-call-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 15px 50px rgba(34, 197, 94, 0.5),
    0 0 0 0 rgba(34, 197, 94, 0.4);
}

.samantha-call-btn svg {
  animation: phoneShake 2s ease-in-out infinite 2s;
}

@keyframes phoneShake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50%, 100% { transform: rotate(0deg); }
}

/* Expectations */
.samantha-expect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
}

.samantha-overlay.active .samantha-expect {
  animation: textReveal 0.6s ease-out 1.4s forwards;
}

.expect-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .samantha-phone {
    font-size: 2rem;
  }

  .samantha-title {
    font-size: 2rem;
  }

  .samantha-call-btn {
    padding: 16px 36px;
    font-size: 1.1rem;
  }

  .samantha-orb {
    width: 100px;
    height: 100px;
  }

  .samantha-expect {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Disable particles on mobile for performance */
  .particle {
    display: none;
  }
}

/* Demo CTA in results section */
.demo-cta {
  transition: all 0.3s ease;
  border: 2px dashed var(--gray-300);
}

.demo-cta:hover {
  border-color: var(--primary);
  background: rgba(1, 40, 92, 0.05);
  transform: scale(1.02);
}

.demo-cta svg {
  color: var(--primary);
}

/* =============================================
   SMS OPT-IN PAGE STYLES
   ============================================= */

/* Opt-In Page Layout */
.opt-in-page {
  padding: 100px 0 60px;
  min-height: 100vh;
  background: var(--gray-100);
}

.opt-in-content {
  max-width: 600px;
  margin: 0 auto;
}

.opt-in-content .section-header {
  margin-bottom: 32px;
}

.opt-in-content .section-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .opt-in-content .section-header h1 {
    font-size: 2.5rem;
  }
}

/* Opt-In Cards */
.opt-in-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .opt-in-card {
    padding: 32px;
  }
}

/* Program Info Card */
.program-info h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.program-info h3 svg {
  color: var(--primary);
}

.program-list {
  list-style: none;
  margin-bottom: 20px;
}

.program-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.program-list li svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}

.frequency-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(1, 40, 92, 0.05);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-700);
  border-left: 3px solid var(--primary);
}

.frequency-note svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
}

/* Form Card */
.form-card {
  background: var(--white);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #dc2626;
}

.form-group label .optional {
  color: var(--gray-500);
  font-weight: 400;
  font-size: 0.85rem;
}

/* Form Inputs */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-main);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 40, 92, 0.1);
}

.form-group input.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

/* Field Errors */
.field-error {
  display: none;
  font-size: 0.85rem;
  color: #dc2626;
  margin-top: 6px;
}

/* Compliance Box */
.compliance-box {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.compliance-box h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 12px;
}

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

.compliance-box li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 6px 0;
  line-height: 1.5;
}

.compliance-box li strong {
  color: var(--dark);
}

.compliance-box a {
  color: var(--primary);
  text-decoration: underline;
}

.compliance-box a:hover {
  text-decoration: none;
}

/* Checkbox Group */
.checkbox-group {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.2s ease;
  position: relative;
  margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(1, 40, 92, 0.2);
}

.checkbox-label input.error + .checkbox-custom {
  border-color: #dc2626;
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--primary);
  text-decoration: underline;
}

.checkbox-text a:hover {
  text-decoration: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  margin-top: 8px;
}

.submit-btn .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Form Message */
.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Contact Info Card */
.contact-info {
  text-align: center;
}

.contact-info h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

.contact-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  color: var(--gray-700);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.contact-method:hover {
  background: var(--primary);
  color: var(--white);
}

.contact-method svg {
  flex-shrink: 0;
}

/* =============================================
   MINI TESTIMONIAL STRIP
   ============================================= */

.testimonial-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .testimonial-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mini-testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.mini-testimonial:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.mini-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mini-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mini-testimonial-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.mini-testimonial-header span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.mini-testimonial p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.testimonial-metric svg {
  flex-shrink: 0;
}

/* =============================================
   ROI CALCULATOR
   ============================================= */

.roi-calculator {
  background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 700px;
  margin: 0 auto 48px;
  box-shadow: 0 12px 24px rgba(1, 40, 92, 0.1);
}

.roi-calculator h3 {
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}

.roi-calculator .roi-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .roi-inputs {
    grid-template-columns: 1fr 1fr;
  }
}

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

.roi-input-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.roi-input-group input {
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s ease;
}

.roi-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 40, 92, 0.1);
}

.roi-input-group .input-hint {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}

.roi-result {
  background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.roi-result-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.roi-result-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.roi-result-subtext {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 8px;
}

.roi-cta {
  text-align: center;
  margin-top: 20px;
}

.roi-cta p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 12px;
}

/* =============================================
   PRICING INDICATOR STYLES
   ============================================= */

.pricing-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(1, 40, 92, 0.05);
  border: 1px dashed var(--primary);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 16px 0;
}

.pricing-indicator span {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.pricing-indicator .price-range {
  font-weight: 700;
  color: var(--primary);
}

/* =============================================
   THANK YOU PAGE ENHANCEMENTS
   ============================================= */

.demo-cta-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #01285c 0%, #012a60 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.demo-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.demo-orb-mini {
  width: 60px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
}

.orb-core-mini {
  position: absolute;
  inset: 10px;
  background: radial-gradient(circle at 35% 35%, #00f5d4 0%, #0ea5e9 50%, #6366f1 100%);
  border-radius: 50%;
  animation: orbBreathe 4s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0, 245, 212, 0.5);
}

.demo-cta-content {
  flex-grow: 1;
}

.demo-cta-content h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.demo-cta-content p {
  color: rgba(0, 245, 212, 0.9);
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-phone-link {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

.demo-cta-arrow {
  color: #22c55e;
  animation: phoneShake 2s ease-in-out infinite;
}

.quick-stats {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.quick-stats h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.expect-list {
  list-style: none;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.expect-list li svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}

/* Performance hints */
.hero-slide { will-change: opacity; }
.fade-in { will-change: opacity, transform; }
.samantha-orb { will-change: transform, opacity; }
.orb-core { will-change: transform; }

