/* =============================================
   DAVID TARAZONA - MAIN STYLESHEET
   Optimized for SPEED & CONVERSIONS
   Google Ads / FB Ads Landing Page
   ============================================= */

/* CSS Variables */
:root {
  /* Brand Colors - David Tarazona */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #10b981;
  --accent: #f59e0b;
  --dark: #1e293b;
  --dark-light: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light: #f8fafc;
  --white: #ffffff;
  --danger: #ef4444;
  --success: #22c55e;
  --whatsapp: #25d366;
  --preply: #3bb3bd;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-cta: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  
  /* Typography - System fonts for speed */
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --section-padding: 80px;
  --container-max: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  text-decoration: none;
}

.logo-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-by {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--dark-light);
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: block;
  }
}

.nav-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: block;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-light);
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.lang-link {
  color: var(--gray);
  font-weight: 500;
}

.lang-link.active {
  color: var(--primary);
}

.lang-divider {
  color: var(--gray-light);
}

@media (max-width: 768px) {
  .site-header {
    padding: 6px 0;
  }

  .header-content {
    gap: 8px;
  }

  .logo img {
    height: 24px;
  }

  .logo-brand {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .logo-by {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    font-size: 0.75rem;
    gap: 4px;
  }
}

/* Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(6px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .nav-menu.active {
    display: block;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active .nav-list {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu.active .nav-list li {
    border-bottom: 1px solid var(--light);
  }
  
  .nav-menu.active .nav-list a {
    display: block;
    padding: 15px 0;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

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

.btn-xl {
  padding: 18px 40px;
  font-size: 1.25rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

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

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

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  color: var(--white);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Hero Video centered */
.hero-video {
  margin: 24px auto;
  max-width: 560px;
}

.hero-video .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.hero-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-light);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
}

/* Mobile: Smaller hero image to fit above fold */
@media (max-width: 767px) {
  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
section {
  padding: var(--section-padding) 0;
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  color: var(--dark-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--light);
}

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

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.about-bio {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.credential-check {
  color: var(--secondary);
  font-weight: bold;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark-light);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 24px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--gray);
}

.testimonial-score {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.testimonial-text {
  color: var(--dark-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing {
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

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

.pricing-card.highlighted {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.highlighted:hover {
  transform: scale(1.05) translateY(-4px);
}

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

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.price-from {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: lowercase;
  margin-bottom: 2px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}

.price-currency-small {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-duration {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.pricing-description {
  color: var(--gray-light);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

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

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.95rem;
  color: var(--dark-light);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius-xl);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-main);
  font-size: 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--light);
  padding: 24px;
  border-radius: var(--radius);
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-card a,
.info-card p {
  color: var(--gray);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-brand .footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--gray-light);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-light);
  transition: color 0.2s;
}

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

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gray-light);
}

.footer-contact li svg {
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--gray-light);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-lang {
  display: flex;
  gap: 16px;
}

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

.footer-lang a.active {
  color: var(--white);
}

/* =============================================
   LANDING PAGES
   ============================================= */
.landing-page .site-header {
  background: transparent;
  border-bottom: none;
}

.landing-hero {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  color: var(--white);
}

.landing-hero .landing-content {
  max-width: 700px;
}

.landing-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.landing-hero .highlight {
  color: var(--accent);
}

.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-bottom: 24px;
}

.landing-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 12px;
}

/* Problem/Solution */
.problem-solution {
  background: var(--light);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.problem-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.solution-box {
  background: var(--white);
  border-left: 4px solid var(--secondary);
  padding: 30px;
  border-radius: var(--radius);
}

.solution-box h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* Features Grid */
.what-you-get {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h4 {
  margin-bottom: 8px;
}

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

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.result-card {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.result-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}

.result-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.score-before {
  color: var(--gray);
  text-decoration: line-through;
}

.score-arrow {
  color: var(--secondary);
  font-size: 1.25rem;
}

.score-after {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

.result-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Landing Form */
.landing-form-section {
  background: var(--gradient-primary);
  padding: 80px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.form-header p {
  color: var(--gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.landing-form .form-group input,
.landing-form .form-group select {
  padding: 16px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 16px;
}

/* Urgency Section */
.urgency-section {
  background: var(--light);
  padding: 60px 0;
}

.urgency-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.urgency-box h3 {
  color: var(--dark);
  margin-bottom: 12px;
}

.urgency-box p {
  color: var(--dark-light);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

@media (max-width: 500px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--light);
  padding: 24px;
  border-radius: var(--radius);
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

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

/* Final CTA */
.final-cta {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 16px;
}

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

/* =============================================
   UTILITIES
   ============================================= */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .credentials {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .form-container {
    padding: 24px;
  }
}
/* =============================================
   ANNA SPANISH / PROFE ANA INSPIRED STYLES
   ============================================= */

/* Hero Modern - Anna Spanish Style */
.hero-modern {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-grid .hero-content {
  order: 0;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-grid .hero-content {
    order: 0;
  }
}

.hero-preheadline {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--dark);
}

.hero-title .highlight {
  color: #6b7d93;
  display: block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 28px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  display: inline-block;
  text-align: left;
}

.hero-benefits li {
  padding: 8px 0;
  font-size: 1.1rem;
  color: #2d3748;
}

.hero-benefits li::before {
  content: none;
}

/* Hero CTA centered */
.hero-content .btn {
  display: inline-block;
  margin: 0 auto;
}

.hero-trust-note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Social Proof Row */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.student-avatars {
  display: flex;
}

.student-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
  object-fit: cover;
  background: var(--light);
}

.student-avatars img:first-child {
  margin-left: 0;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-text .stars {
  color: #f5c518;
  font-size: 1rem;
}

.proof-text span:last-child {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Hero Image (hidden - video only) */
.hero-modern .hero-image {
  display: none;
}

.hero-modern .hero-image img {
  max-width: 450px;
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Google Reviews Badge - Profe Ana Style */
.reviews-badge-section {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: white;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: fit-content;
  margin: 0 auto;
}

.google-logo {
  height: 24px;
  width: auto;
}

.badge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-rating .rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.badge-rating .stars {
  color: #f5c518;
  font-size: 1.1rem;
}

.badge-rating .review-count {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Testimonials Carousel */
.testimonials-carousel {
  background: #6b7d93;
  padding: 60px 0;
  color: white;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .testimonials-slider {
    justify-content: center;
  }
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--dark);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.testimonial-slide:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  background: var(--light);
  border: 3px solid var(--primary-light);
}

.testimonial-slide h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.read-more {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--light);
}

.testimonial-rating .stars {
  color: #f5c518;
}

.google-icon {
  height: 18px;
  width: auto;
}

.powered-by {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* Meet Tutor Section - Anna Spanish Style */
.meet-tutor {
  background: #f5f7fa;
  padding: 100px 0;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .meet-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.meet-image img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  margin: 0 auto;
  display: block;
}

/* Video Container for YouTube embeds */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

@media (min-width: 992px) {
  .video-container {
    max-width: 700px;
    padding-bottom: 394px; /* Fixed height for larger display */
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
}

/* Certifications Section */
.certifications-section {
  background: var(--light);
  padding: 60px 0;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.certification-badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.certification-badge .cert-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.certification-badge .cert-icon.cert-icon--aws,
.certification-badge .cert-icon.cert-icon--udacity,
.certification-badge .cert-icon.cert-icon--coursera {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.certification-badge .cert-icon.cert-icon--aws {
  background: #232f3e;
}

.certification-badge .cert-icon.cert-icon--udacity {
  background: #3d6af2;
}

.certification-badge .cert-icon.cert-icon--coursera {
  background: #2a73cc;
}

.certification-badge .cert-info h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.certification-badge .cert-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.meet-preheadline {
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.meet-content h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--dark);
}

.meet-content h2 .highlight {
  font-weight: 700;
  color: #6b7d93;
}

.meet-bio {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Primera Clase Section - Profe Ana Style */
.primera-clase {
  background: linear-gradient(135deg, #4c6ef5 0%, #7c3aed 100%);
  padding: 80px 0;
}

.clase-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.clase-box h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
}

.clase-box p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  opacity: 0.95;
}

.primera-clase .btn-primary {
  background: white;
  color: #4c6ef5;
  border-color: white;
  padding: 16px 48px;
  font-size: 1.1rem;
}

.primera-clase .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* Is For You If Section - Anna Spanish Style */
.for-you-section {
  background: var(--white);
  padding: 80px 0;
}

.section-title-caps {
  text-align: center;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 50px;
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.for-you-item {
  text-align: center;
}

.for-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #6b7d93;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-you-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.for-you-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.for-you-item strong {
  color: var(--dark);
}

/* Services Numbered - Profe Ana Style */
.services-numbered {
  background: var(--white);
  padding: 100px 0;
}

.services-grid-numbered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card-numbered {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.service-card-numbered:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4c6ef5 0%, #7c3aed 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
}

.service-card-numbered h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.service-card-numbered p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* About Section Box - Profe Ana Style */
.about-section {
  background: #f5f7fa;
  padding: 100px 0;
}

.about-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-box h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 8px;
  font-family: var(--font-main);
}

.about-box h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.about-box p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.credential {
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-box blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  padding: 20px 0;
  border-left: none;
  text-align: center;
}

/* Final CTA Section - Anna Spanish Style */
.final-cta-section {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.final-cta-section h2 {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: #6b7d93;
  margin-bottom: 20px;
  line-height: 1.4;
}

.final-cta-section .underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta-section p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.btn-cta {
  background: #6b7d93;
  color: white;
  border-color: #6b7d93;
  padding: 18px 48px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-cta:hover {
  background: #5a6a7a;
  color: white;
}

/* Contact Section Styled */
.contact-section {
  background: #1a1a2e;
  padding: 80px 0;
  color: white;
}

.contact-section .section-header h2 {
  color: white;
}

.contact-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-section .contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--dark);
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-box .info-item {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
}

.contact-info-box .info-item h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-box .info-item a,
.contact-info-box .info-item p {
  color: rgba(255,255,255,0.8);
}

.btn-preply {
  background: #ff7043;
  color: white;
  border-color: #ff7043;
}

.btn-preply:hover {
  background: #f4623a;
  color: white;
}

/* FAQ Section - Profe Ana Style */
.faq-section {
  background: var(--white);
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-icon {
  display: inline-block;
  background: linear-gradient(135deg, #4c6ef5 0%, #7c3aed 100%);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.faq-header h2 {
  font-size: 1.5rem;
  color: var(--dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius-lg);
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Newsletter Section - Profe Ana Style */
.newsletter-section {
  background: #1a1a2e;
  padding: 60px 0;
  text-align: center;
}

.newsletter-section h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.newsletter-form .btn {
  white-space: nowrap;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
}

/* =============================================
   METHOD SECTION - TV Shows & Music
   ============================================= */
.method-section {
  background: var(--white);
  padding: 80px 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.method-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.method-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.method-card h3 {
  font-size: 1.25rem;
  padding: 20px 20px 8px;
  color: var(--dark);
}

.method-card p {
  font-size: 0.95rem;
  color: var(--gray);
  padding: 0 20px 24px;
  line-height: 1.6;
}

.method-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: var(--gradient-primary);
  color: white;
}

.method-card-text h3,
.method-card-text p {
  color: white;
  padding: 0;
}

.method-card-text h3 {
  margin-top: 16px;
}

.method-card-text p {
  margin-top: 12px;
  opacity: 0.9;
}

.method-icon {
  font-size: 4rem;
}

/* =============================================
   SPEED OPTIMIZATIONS
   ============================================= */
/* Reduce repaints */
img {
  content-visibility: auto;
}

/* Smooth scrolling only on desktop */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Critical above-the-fold styles inline */
.hero-modern {
  contain: layout style paint;
}

/* Optimize button animations */
.btn {
  will-change: transform;
}

/* =============================================
   MOBILE SPEED OPTIMIZATIONS
   ============================================= */
@media (max-width: 768px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
  
  .method-card img {
    height: 180px;
  }
  
  .hero-modern {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-image img {
    max-width: 300px;
  }
}

/* =============================================
   TEACHING STATS BAR
   ============================================= */
.teaching-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 2.5rem;
}

.stat-item {
  background: var(--white);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background 0.2s;
}

.stat-item:hover {
  background: #f8f0ff;
}

.stat-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  color: #6366f1;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .teaching-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   SPECIALTIES + METHODOLOGY SECTION
   ============================================= */
.specialties-section {
  background: linear-gradient(135deg, #f8f0ff 0%, #f0f4ff 100%);
  padding: 80px 0;
}

/* Profile card — brand-colored "screenshot" */
.profile-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-bottom: 3rem;
  border-top: 4px solid #6366f1;
}

.profile-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

.profile-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 160px;
}

.profile-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6366f1;
  margin-bottom: 0.75rem;
}

.profile-card-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.profile-card-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

.profile-card-rating {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6366f1;
}

.profile-card-right h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.specialty-tags .tag {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .profile-card-inner {
    grid-template-columns: 1fr;
  }
  .profile-card-left {
    min-width: unset;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  .profile-card-avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
  }
}

/* Methodology grid */
.methodology-header {
  text-align: center;
  margin-bottom: 2rem;
}

.methodology-header h2 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.methodology-header p {
  color: var(--gray);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.method-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.method-item .method-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.method-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.method-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   THANK YOU / BOOKING CONFIRMED PAGE
   ============================================= */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f0ff 0%, #e0f2fe 100%);
  padding: 4rem 1rem;
}

.thank-you-content {
  background: #fff;
  border-radius: 1.5rem;
  border-top: 5px solid var(--primary, #6366f1);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
  padding: 3rem 2.5rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.thank-you-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark, #1e293b);
  margin-bottom: 0.75rem;
}

.thank-you-subtitle {
  font-size: 1.1rem;
  color: var(--gray, #64748b);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f0ff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--dark, #1e293b);
}

.step-number {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.thank-you-message {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--gray, #64748b);
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .thank-you-content {
    padding: 2rem 1.25rem;
  }
  .thank-you-content h1 {
    font-size: 1.5rem;
  }
}

/* =============================================
   BLOG — LISTING PAGE
   ============================================= */
.blog-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  padding: 4rem 1rem 3rem;
  text-align: center;
}

.blog-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.blog-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-listing {
  padding: 3rem 1rem 4rem;
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid var(--primary, #6366f1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.13);
}

.blog-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary, #6366f1);
  margin-bottom: 0.6rem;
  display: block;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--dark, #1e293b);
  text-decoration: none;
}

.blog-card-title a:hover { color: var(--primary, #6366f1); }

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray, #64748b);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.blog-card-date { color: var(--gray, #94a3b8); }

.blog-card-read {
  color: var(--primary, #6366f1);
  font-weight: 600;
  text-decoration: none;
}

.blog-card-read:hover { text-decoration: underline; }

.blog-cta-banner {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #fff;
}

.blog-cta-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.blog-cta-text p { opacity: 0.9; font-size: 0.95rem; }

/* =============================================
   BLOG — SINGLE POST
   ============================================= */
.blog-post { padding: 2rem 0 4rem; }

.blog-post-container { max-width: 740px; }

.blog-back-link {
  display: inline-block;
  color: var(--primary, #6366f1);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.blog-back-link:hover { text-decoration: underline; }

.post-header { margin-bottom: 2.5rem; }

.post-category-badge {
  display: inline-block;
  background: #f0f0ff;
  color: var(--primary, #6366f1);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.post-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark, #1e293b);
  margin-bottom: 0.75rem;
}

.post-subtitle {
  font-size: 1.1rem;
  color: var(--gray, #64748b);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary, #6366f1);
}

.post-meta-info {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.post-author { font-weight: 600; color: var(--dark, #1e293b); }
.post-date   { color: var(--gray, #94a3b8); }

/* Post body typography */
.post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 3rem;
}

.post-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark, #1e293b);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #f1f5f9;
}

.post-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark, #1e293b);
  margin: 1.75rem 0 0.75rem;
}

.post-body p { margin-bottom: 1.25rem; }

.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-body li { margin-bottom: 0.5rem; }

.post-body strong { color: var(--dark, #1e293b); }

.post-body hr {
  border: none;
  border-top: 2px solid #f1f5f9;
  margin: 2.5rem 0;
}

.post-body a {
  color: var(--primary, #6366f1);
  font-weight: 600;
}

.post-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem 0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.post-body p:has(img) {
  margin: 1.75rem 0;
}

.post-figure {
  margin: 2rem 0 2.25rem;
}

.post-figure img {
  margin: 0;
}

.post-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray, #64748b);
  text-align: center;
}

/* Post CTA block */
.post-cta-block {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #fff;
}

.post-cta-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.post-cta-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.post-cta-inner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
}

.post-newsletter-block {
  margin-bottom: 2rem;
}

.post-newsletter-inner {
  background: #f8fafc;
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 1.25rem;
  padding: 2rem;
}

.post-newsletter-eyebrow {
  color: var(--primary, #6366f1);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-newsletter-inner h3 {
  margin-bottom: 0.5rem;
}

.post-newsletter-inner > p {
  color: var(--gray, #64748b);
  margin-bottom: 1rem;
}

.post-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-newsletter-form input {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 0.8rem;
  font-size: 1rem;
}

.post-newsletter-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.post-newsletter-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.post-newsletter-status[data-state="success"] {
  color: var(--success, #22c55e);
}

.post-newsletter-status[data-state="error"] {
  color: var(--danger, #ef4444);
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--primary, #6366f1);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Author bio */
.post-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary, #6366f1);
}

.bio-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary, #6366f1);
  flex-shrink: 0;
  object-fit: cover;
}

.bio-text strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.bio-text p { font-size: 0.875rem; color: var(--gray, #64748b); line-height: 1.6; margin: 0; }

/* Nav blog link */
.nav-blog-link {
  color: var(--dark, #1e293b);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.nav-blog-link:hover { color: var(--primary, #6366f1); }

.price-cop-line {
  font-size: 0.95rem;
  color: var(--gray, #64748b);
  margin: -0.25rem 0 0.75rem;
  font-weight: 500;
}

.tidycal-wrapper {
  margin: 1.5rem auto 0;
  max-width: 860px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(99,102,241,0.10);
  background: #fff;
}

.review-source {
  font-size: 0.78rem;
  color: var(--gray, #94a3b8);
  margin-left: 6px;
}

.review-meta {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray, #94a3b8);
  margin-left: 4px;
}

@media (max-width: 768px) {
  .blog-hero-title { font-size: 1.75rem; }
  .blog-cta-banner { flex-direction: column; text-align: center; }
  .post-title { font-size: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ========== JOURNALIST BG SECTION ========== */
.journalist-bg {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.journalist-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,10,30,0.82) 0%, rgba(30,20,60,0.78) 100%);
  z-index: 0;
}
.journalist-bg > * {
  position: relative;
  z-index: 1;
}
.journalist-bg .methodology-header h2,
.journalist-bg .methodology-header p,
.journalist-bg .method-item h4,
.journalist-bg .method-item p {
  color: #fff;
}
.journalist-bg .method-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}
.journalist-bg .method-icon {
  font-size: 2rem;
}

/* ========== ABOUT WITH PHOTO ========== */
.about-with-photo {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.about-photo {
  width: 220px;
  min-width: 180px;
  max-width: 240px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid #e9d5ff;
  flex-shrink: 0;
}
.about-text {
  flex: 1;
}
@media (max-width: 640px) {
  .about-with-photo { flex-direction: column; align-items: center; }
  .about-photo { width: 160px; min-width: 140px; }
}
.mini-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-top: 0.75rem;
}
.mini-credentials span {
  font-size: 0.8rem;
  color: #6366f1;
  font-weight: 600;
  background: #f5f3ff;
  border: 1px solid #e9d5ff;
  border-radius: 20px;
  padding: 2px 10px;
}

/* ========== CLEAN PRICING HEADER ========== */
.price-header-clean {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  margin-bottom: 1rem;
}
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-big {
  font-size: 3.5rem;
  font-weight: 900;
  color: #6366f1;
  line-height: 1;
}
.price-big small {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8b5cf6;
}
.price-cop-sub {
  font-size: 1.1rem;
  color: var(--gray, #64748b);
  font-weight: 500;
}
.price-features-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}
.price-features-inline span::before {
  content: '';
}

/* ========== PAYMENT TRUST BAR ========== */
.payment-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.25rem;
  background: #f8f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.87rem;
  color: #374151;
}
.trust-cards {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.trust-badge.mc   { background: #eb001b; color: #fff; }
.trust-badge.visa { background: #1a1f71; color: #fff; }
.trust-badge.pp   { background: #003087; color: #fff; font-weight: 700; }
@media (max-width: 600px) {
  .price-big { font-size: 2.6rem; }
  .price-features-inline { flex-direction: column; align-items: center; gap: 0.4rem; }
  .payment-trust-bar { flex-direction: column; text-align: center; }
}