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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #f97316;
  --secondary-dark: #ea580c;
  --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;
}

/* 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(3, 1fr);
    gap: 32px;
  }
}

.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(--dark);
  color: var(--white);
  text-align: center;
}

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

.final-cta p {
  color: var(--gray-300);
  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-900);
  color: var(--gray-300);
  padding: 40px 0;
  text-align: center;
}

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

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

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

.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(4, 1fr);
  }
}

.footer-col h4 {
  color: var(--white);
  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-300);
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

/* 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
   ============================================= */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-secondary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 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(37, 99, 235, 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(37, 99, 235, 0.04);
  transform: translateY(-2px);
}

.btn-outline:hover {
  box-shadow: 0 8px 16px rgba(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 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(37, 99, 235, 0.1);
}

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

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

/* Final CTA */
.final-cta {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 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);
}
