:root {
  --primary: #2563EB;
  --primary-dark: #1E40AF;
  --primary-light: #3B82F6;
  --accent: #F59E0B;
  --success: #10B981;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --text: #1F2937;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

a {
  cursor: pointer !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
}

a.cta-primary,
a.cta-secondary,
a[href^="tel:"] {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 9999 !important;
  position: relative !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 1.5rem 1.75rem;
  text-align: center;
}

.hero-experience {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero .price {
  color: var(--accent);
  display: inline-block;
}

.hero-tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.hero-benefit {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.cta-primary {
  display: inline-block !important;
  background: var(--accent) !important;
  color: white !important;
  padding: 1rem 2.5rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3) !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(245, 158, 11, 0.3) !important;
  touch-action: manipulation !important;
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

.cta-primary:hover {
  background: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.cta-primary.large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-light);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text);
}

.trust-item .check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

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

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

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.step-card p {
  color: var(--text-light);
  margin: 0;
}

.steps-footer {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 2rem;
}

/* Pricing */
.pricing {
  background: var(--bg-light);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

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

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

/* Who This Is For */
.who-for {
  background: var(--bg);
}

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

.who-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 500;
  text-align: center;
}

.who-note {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

/* Why Choose */
.why-choose {
  background: var(--bg-light);
}

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

.why-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.why-item strong {
  color: var(--text);
  font-size: 1.1rem;
}

.why-footer {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Service Area */
.service-area {
  background: var(--bg);
}

.service-area-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.cta-secondary {
  display: inline-block !important;
  background: transparent !important;
  color: white !important;
  padding: 1.25rem 3rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  text-decoration: none !important;
  border: 2px solid white !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3) !important;
  touch-action: manipulation !important;
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

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

.cta-footer {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
}

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

.footer-brand {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer p {
  margin: 0.5rem 0;
  opacity: 0.8;
}

.footer-cert {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Booking Calendar */
.booking-calendar {
  background: var(--bg);
}

.calendar-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  pointer-events: auto;
  z-index: 1;
}

.booking-iframe {
  min-width: 100%;
  width: 100%;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .trust-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(245, 158, 11, 0.4);
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
    z-index: 100;
    position: relative;
  }
  
  a.cta-primary,
  a.cta-secondary {
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  .booking-calendar {
    padding: 2rem 0;
  }

  .booking-calendar .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  .calendar-wrapper {
    width: 100%;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
  }

  .booking-iframe {
    width: 100% !important;
    min-width: 100% !important;
    height: 1000px !important;
    display: block;
    border: none;
    zoom: 1;
  }
}

@media (max-width: 480px) {
  .booking-iframe {
    height: 1200px !important;
  }
  
  .booking-calendar .container {
    padding: 0 0.5rem;
    max-width: 100%;
  }
  
  .calendar-wrapper {
    padding: 0;
    width: 100%;
    overflow-x: auto;
  }
  
  .cta-primary,
  .cta-secondary {
    min-height: 48px;
    padding: 1rem 2rem;
  }
  
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
  }
}


