.wp-site-blocks, .entry-content { margin: 0; padding: 0; box-sizing: border-box; }
.ai24-page *, .ai24-page *::before, .ai24-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ai24-page { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #0a0f1e; color: #f1f5f9; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.ai24-page img { max-width: 100%; display: block; }
.ai24-page a { text-decoration: none; color: inherit; }
.ai24-page ul { list-style: none; }

/* ====== VARIABLES ====== */
.ai24-page {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #93c5fd;
  --accent: #f97316;
  --accent-dark: #ea6c0a;
  --bg-main: #0a0f1e;
  --bg-section: #0d1526;
  --bg-card: #1e293b;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #1e3a5f;
  --border-light: #2d4a6e;
  --success: #22c55e;
  --success-bg: rgba(34,197,94,0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --transition: 0.22s ease;
  --glow-primary: 0 0 40px rgba(59,130,246,0.18);
}

/* ====== LAYOUT ====== */
.ai24-page .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ai24-page section { padding: 96px 0; }
.ai24-page .section-alt { background: var(--bg-section); }

/* ====== SECTION HEADERS ====== */
.ai24-page .section-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.ai24-page .section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.12); color: var(--primary-light);
  padding: 6px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid rgba(59,130,246,0.25);
}
.ai24-page .section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; font-weight: 800; line-height: 1.15; }
.ai24-page .section-description { font-size: 18px; color: var(--text-muted); line-height: 1.75; }

/* ====== BUTTONS ====== */
.ai24-page .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 27px; border-radius: var(--radius); font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all var(--transition); border: none; text-align: center; min-height: 52px;
}
.ai24-page .btn-primary { background: var(--primary); color: white; }
.ai24-page .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.35); }
.ai24-page .btn-accent { background: var(--accent); color: white; }
.ai24-page .btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.35); }
.ai24-page .btn-secondary { background: transparent; color: var(--text-main); border: 2px solid var(--border-light); }
.ai24-page .btn-secondary:hover { border-color: var(--primary); background: rgba(59,130,246,0.1); }
.ai24-page .btn-lg { padding: 18px 40px; font-size: 18px; }
.ai24-page .btn-full { width: 100%; justify-content: center; }

/* ====== NAVBAR ====== */
.ai24-page .navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,30,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,58,95,0.6);
}
.ai24-page .navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.ai24-page .logo { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; }
.ai24-page .logo-icon {
  width: 34px; height: 34px; background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white; letter-spacing: -0.5px;
  object-fit: cover; flex-shrink: 0;
}
.ai24-page .nav-links { display: none; gap: 4px; align-items: center; }
@media (min-width: 900px) { .ai24-page .nav-links { display: flex; } }
.ai24-page .nav-links .custom-language-container { display: inline-flex; padding-right: 16px; border-right: 1px solid var(--border); margin-right: 8px; }
.ai24-page .nav-link { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: all var(--transition); padding: 8px 14px; border-radius: 8px; }
.ai24-page .nav-link:hover { color: var(--text-main); background: rgba(255,255,255,0.07); }
.ai24-page .mobile-menu-btn { display: block; background: transparent; border: 1.5px solid var(--border-light); color: var(--text-main); padding: 8px 12px; border-radius: 8px; font-size: 22px; cursor: pointer; min-height: 44px; min-width: 44px; }
@media (min-width: 900px) { .ai24-page .mobile-menu-btn { display: none; } }
.ai24-page .mobile-menu { display: none; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.ai24-page .mobile-menu.open { display: block; }
.ai24-page .mobile-menu-links { display: grid; gap: 4px; padding: 16px 24px 24px; }
.ai24-page .mobile-menu-link { color: var(--text-muted); font-size: 17px; padding: 14px 12px; border-radius: 8px; transition: all var(--transition); font-weight: 500; }
.ai24-page .mobile-menu-link:hover { background: rgba(59,130,246,0.1); color: var(--text-main); }

/* ====== HERO ====== */
.ai24-page .hero { padding: 0; position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.ai24-page .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.ai24-page .hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.ai24-page .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.94) 0%, rgba(10,15,30,0.82) 55%, rgba(10,15,30,0.6) 100%);
}
.ai24-page .hero-content { position: relative; z-index: 1; display: grid; gap: 48px; align-items: center; padding: 96px 0; }
@media (min-width: 968px) { .ai24-page .hero-content { grid-template-columns: 1.15fr 1fr; } }
.ai24-page .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: var(--success-bg);
  border: 1px solid rgba(34,197,94,0.3); border-radius: 999px;
  color: #86efac; font-size: 14px; font-weight: 600; margin-bottom: 28px;
}
.ai24-page .hero-badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 999px; flex-shrink: 0; box-shadow: 0 0 8px var(--success); }
.ai24-page .hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.08; margin-bottom: 24px; font-weight: 800; }
.ai24-page .highlight { background: linear-gradient(135deg, #60a5fa, #818cf8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ai24-page .hero-description { font-size: 19px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.75; max-width: 520px; }
.ai24-page .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.ai24-page .hero-features { display: grid; gap: 14px; }
.ai24-page .feature-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.ai24-page .feature-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 999px; flex-shrink: 0; }

/* ====== HERO CARD ====== */
.ai24-page .hero-card {
  background: rgba(30,41,59,0.88); border: 1.5px solid rgba(59,130,246,0.3);
  border-radius: var(--radius-lg); padding: 36px; backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}
.ai24-page .hero-card-tag { display: inline-block; background: rgba(59,130,246,0.18); color: var(--primary-light); padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.ai24-page .hero-card-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.ai24-page .hero-card-sub { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 28px; }
.ai24-page .hero-card-price { font-size: 54px; font-weight: 800; display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.ai24-page .hero-card-currency { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.ai24-page .hero-card-note { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }
.ai24-page .hero-card-features { margin-bottom: 28px; }
.ai24-page .hero-card-feature { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(30,58,95,0.6); font-size: 14px; }
.ai24-page .hero-card-feature:last-child { border-bottom: none; }
.ai24-page .check { color: var(--success); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.ai24-page .hero-card-zone { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); border-radius: 10px; padding: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.ai24-page .hero-card-zone strong { color: var(--text-main); }

/* ====== STATS BAR ====== */
.ai24-page .stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.ai24-page .stats-grid { display: grid; gap: 24px; text-align: center; }
@media (min-width: 600px) { .ai24-page .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ai24-page .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.ai24-page .stat-item { padding: 16px; }
.ai24-page .stat-number { font-size: 40px; font-weight: 800; background: linear-gradient(135deg, var(--primary-light), #818cf8); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1.1; }
.ai24-page .stat-label { color: var(--text-muted); font-size: 14px; margin-top: 8px; line-height: 1.4; }
.ai24-page .stat-source { font-size: 11px; color: #5a7a8a; letter-spacing: 0.5px; margin-top: 4px; }
@media (min-width: 900px) {
  .ai24-page .stat-item { border-right: 1px solid var(--border); }
  .ai24-page .stat-item:last-child { border-right: none; }
}

/* ====== RISK SECTION ====== */
.ai24-page .risk-grid { display: grid; gap: 32px; }
@media (min-width: 860px) { .ai24-page .risk-grid { grid-template-columns: 1fr 1fr; } }
.ai24-page .risk-card { border-radius: var(--radius-lg); padding: 40px; border: 1.5px solid; }
.ai24-page .risk-card.risk-bad { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.25); }
.ai24-page .risk-card.risk-good { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.25); }
.ai24-page .risk-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.ai24-page .risk-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.ai24-page .risk-bad .risk-icon { background: rgba(239,68,68,0.15); }
.ai24-page .risk-good .risk-icon { background: rgba(34,197,94,0.15); }
.ai24-page .risk-card-title { font-size: 20px; font-weight: 700; }
.ai24-page .risk-bad .risk-card-title { color: #fca5a5; }
.ai24-page .risk-good .risk-card-title { color: #86efac; }
.ai24-page .risk-list { display: grid; gap: 20px; }
.ai24-page .risk-list-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.ai24-page .risk-list-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ai24-page .risk-list-item p { color: var(--text-muted); line-height: 1.55; }
.ai24-page .risk-list-item strong { color: var(--text-main); display: block; margin-bottom: 3px; font-weight: 600; }

/* ====== STEPS ====== */
.ai24-page .steps { display: grid; gap: 28px; }
@media (min-width: 768px) { .ai24-page .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ai24-page .steps { grid-template-columns: repeat(4, 1fr); } }
.ai24-page .step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: border-color var(--transition); }
.ai24-page .step-card:hover { border-color: var(--primary); }
.ai24-page .step-number { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: white; margin-bottom: 20px; }
.ai24-page .step-title { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.ai24-page .step-text { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ====== CHECKLIST ====== */
.ai24-page .checklist-grid { display: grid; gap: 48px; }
@media (min-width: 968px) { .ai24-page .checklist-grid { grid-template-columns: 1.2fr 1fr; } }
.ai24-page .checklist { display: grid; gap: 8px; }
.ai24-page .checklist-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; transition: border-color var(--transition); }
.ai24-page .checklist-item:hover { border-color: var(--border-light); }
.ai24-page .checklist-item-header { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.ai24-page .checklist-icon { width: 36px; height: 36px; background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(249,115,22,0.2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ai24-page .checklist-item h3 { font-size: 16px; font-weight: 700; }
.ai24-page .checklist-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.ai24-page .info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.ai24-page .info-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ai24-page .info-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.ai24-page .info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.ai24-page .info-card-description { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 28px; }
.ai24-page .benefits { display: grid; gap: 16px; }
.ai24-page .benefit { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.ai24-page .benefit-icon { color: var(--success); font-size: 18px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ====== RAPPORT EXEMPLE ====== */
.ai24-page .rapport-wrapper { display: grid; gap: 40px; }
@media (min-width: 968px) { .ai24-page .rapport-wrapper { grid-template-columns: 1fr 2fr; align-items: start; } }
.ai24-page .rapport-meta { display: flex; flex-direction: column; gap: 28px; }
.ai24-page .rapport-badge { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.ai24-page .rapport-badge-icon { font-size: 32px; flex-shrink: 0; }
.ai24-page .rapport-badge-label { font-size: 12px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.ai24-page .rapport-badge-vehicle { font-size: 15px; font-weight: 700; color: var(--text-main); }
.ai24-page .rapport-features { display: flex; flex-direction: column; gap: 12px; }
.ai24-page .rapport-preview { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ai24-page .rapport-iframe { width: 100%; height: 620px; border: none; display: block; }
@media (max-width: 767px) { .ai24-page .rapport-iframe { height: 420px; } }

/* ====== TESTIMONIALS ====== */
.ai24-page .testimonials-grid { display: grid; gap: 28px; }
@media (min-width: 768px) { .ai24-page .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.ai24-page .testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: border-color var(--transition); display: flex; flex-direction: column; }
.ai24-page .testimonial-card:hover { border-color: var(--primary); }
.ai24-page .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.ai24-page .star { color: #fbbf24; font-size: 20px; }
.ai24-page .testimonial-text { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; flex-grow: 1; font-style: italic; }
.ai24-page .testimonial-author { display: flex; align-items: center; gap: 14px; }
.ai24-page .author-avatar { width: 46px; height: 46px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 16px; flex-shrink: 0; }
.ai24-page .author-name { font-weight: 700; font-size: 15px; }
.ai24-page .author-detail { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.ai24-page .testimonial-tag { display: inline-block; margin-top: 14px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); padding: 4px 12px; border-radius: 999px; font-size: 12px; color: #86efac; font-weight: 600; }

/* ====== PRICING ====== */
.ai24-page .pricing-grid { display: grid; gap: 24px; margin-bottom: 40px; }
@media (min-width: 768px) { .ai24-page .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.ai24-page .pricing-card { background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; transition: all var(--transition); }
.ai24-page .pricing-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ai24-page .pricing-card.featured { border-color: var(--primary); background: linear-gradient(155deg, rgba(59,130,246,0.12), var(--bg-card)); box-shadow: var(--glow-primary); }
.ai24-page .pricing-badge { display: inline-block; background: rgba(59,130,246,0.15); color: var(--primary-light); padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 18px; width: fit-content; border: 1px solid rgba(59,130,246,0.3); }
.ai24-page .pricing-card h3 { font-size: 22px; margin-bottom: 10px; font-weight: 800; }
.ai24-page .pricing-description { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; line-height: 1.55; }
.ai24-page .pricing-amount { font-size: 56px; font-weight: 800; line-height: 1; }
.ai24-page .pricing-currency { font-size: 17px; color: var(--text-muted); font-weight: 500; }
.ai24-page .pricing-note { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; margin-top: 4px; }
.ai24-page .pricing-addon { font-size: 12px; font-weight: 600; color: #22b08c; background: rgba(29,158,117,0.10); border: 1px solid rgba(29,158,117,0.25); border-radius: 6px; padding: 6px 10px; margin-bottom: 20px; }
.ai24-page .pricing-features { margin-bottom: 28px; flex-grow: 1; }
.ai24-page .pricing-features li { padding: 9px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid rgba(30,58,95,0.5); display: flex; align-items: center; gap: 10px; }
.ai24-page .pricing-features li:last-child { border-bottom: none; }
.ai24-page .pricing-features strong { color: var(--text-main); }
.ai24-page .pricing-cta { margin-top: auto; }
.ai24-page .extras-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.ai24-page .extras-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.ai24-page .extras-description { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.ai24-page .extras-list li { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; display: flex; align-items: flex-start; gap: 12px; }
.ai24-page .extras-list li:last-child { border-bottom: none; }
.ai24-page .extras-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.ai24-page .extras-list strong { color: var(--text-main); }
.ai24-page .extras-note { color: var(--text-muted); font-size: 13px; font-style: italic; margin-top: 16px; }

/* ====== ABOUT ====== */
.ai24-page .about-grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 968px) { .ai24-page .about-grid { grid-template-columns: 1fr 1.1fr; } }
.ai24-page .about-image-wrap { position: relative; }
.ai24-page .about-image { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 480px; }
.ai24-page .about-image-badge {
  position: absolute; bottom: -20px; right: 16px;
  background: var(--bg-card); border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-lg);
}
.ai24-page .about-text { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.ai24-page .about-highlight { background: rgba(59,130,246,0.1); border-left: 3px solid var(--primary); padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 24px 0; font-size: 16px; color: var(--text-main); font-style: italic; line-height: 1.6; }
.ai24-page .zone-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ai24-page .badge { padding: 8px 18px; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25); border-radius: 999px; font-size: 14px; color: var(--text-muted); }
.ai24-page .badge-primary { background: rgba(59,130,246,0.18); border-color: var(--primary); color: var(--primary-light); font-weight: 700; }

/* ====== FAQ ====== */
.ai24-page .faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.ai24-page .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.ai24-page .faq-item.open { border-color: var(--border-light); }
.ai24-page .faq-question {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; background: none; border: none; cursor: pointer; color: var(--text-main);
  font-size: 16px; font-weight: 600; font-family: inherit; line-height: 1.4;
}
.ai24-page .faq-question:hover { color: var(--primary-light); }
.ai24-page .faq-chevron { color: var(--text-muted); font-size: 20px; transition: transform var(--transition); flex-shrink: 0; }
.ai24-page .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary-light); }
.ai24-page .faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease; }
.ai24-page .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.ai24-page .faq-answer p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ====== CONTACT ====== */
.ai24-page .contact-wrapper {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(30,41,59,0.5));
  border: 2px solid rgba(59,130,246,0.35); border-radius: var(--radius-lg);
  padding: 56px 48px; box-shadow: var(--shadow-lg), var(--glow-primary);
}
@media (max-width: 768px) { .ai24-page .contact-wrapper { padding: 36px 24px; } }
.ai24-page .contact-grid { display: grid; gap: 56px; }
@media (min-width: 968px) { .ai24-page .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.ai24-page .contact-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.35); padding: 8px 18px; border-radius: 999px; font-size: 13px; color: var(--primary-light); margin-bottom: 24px; font-weight: 600; }
.ai24-page .contact-title { font-size: clamp(24px, 4vw, 34px); margin-bottom: 18px; font-weight: 800; }
.ai24-page .contact-description { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.ai24-page .contact-info { display: grid; gap: 16px; }
.ai24-page .contact-info-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.ai24-page .contact-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

/* CF7 form styles within ai24-page */
.ai24-page .wpcf7 input:not([type="submit"]),
.ai24-page .wpcf7 textarea,
.ai24-page .wpcf7 select {
  width: 100%; padding: 14px 16px; background: rgba(15,23,42,0.6);
  border: 1px solid var(--border-light); border-radius: 8px; color: var(--text-main);
  font-size: 15px; font-family: inherit; transition: all var(--transition); margin-top: 4px;
}
.ai24-page .wpcf7 input:focus,
.ai24-page .wpcf7 textarea:focus {
  outline: none; border-color: var(--primary); background: rgba(15,23,42,0.8);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.ai24-page .wpcf7 textarea { min-height: 120px; resize: vertical; }
.ai24-page .wpcf7 input[type="submit"] {
  background: var(--accent); color: white; border: none; padding: 15px 32px;
  border-radius: var(--radius); font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all var(--transition); width: 100%; margin-top: 8px;
}
.ai24-page .wpcf7 input[type="submit"]:hover { background: var(--accent-dark); transform: translateY(-2px); }
.ai24-page .wpcf7 label { font-size: 13px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 2px; }
.ai24-page .wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 16px; }
.ai24-page .wpcf7 .wpcf7-not-valid-tip { color: #f87171; font-size: 13px; margin-top: 4px; }
.ai24-page .wpcf7 .wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; border: 1px solid; }

/* ====== FOOTER ====== */
.ai24-page .footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 40px 0; }
.ai24-page .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.ai24-page .footer-text { color: var(--text-muted); font-size: 14px; }
.ai24-page .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.ai24-page .footer-link { color: var(--text-muted); font-size: 14px; transition: color var(--transition); }
.ai24-page .footer-link:hover { color: var(--text-main); }

/* ====== IMPRESSUM ====== */
.ai24-page .footer-impressum {
  border-top: 1px solid var(--border);
  padding: 28px 0 20px;
  margin-bottom: 20px;
}
.ai24-page .impressum-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px;
}
.ai24-page .impressum-text { color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.ai24-page .impressum-link { color: var(--text-muted); transition: color var(--transition); }
.ai24-page .impressum-link:hover { color: var(--primary-light); }

/* ====== WHATSAPP BUTTON ====== */

/* ====== WHATSAPP FLOATING BUTTON (desktop only) ====== */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: white;
  padding: 14px 20px; border-radius: 999px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.22s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

/* ====== SCROLL ANIMATION ====== */
.ai24-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.ai24-fade.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 767px) {
  .ai24-page section { padding: 64px 0; }
  .ai24-page .hero-content { padding: 72px 0; }
  .ai24-page .section-header { margin-bottom: 48px; }
  .ai24-page .pricing-card { padding: 28px 24px; }
  .ai24-page .risk-card { padding: 28px 24px; }
  .ai24-page .about-image-badge { bottom: 12px; }
}

/* ====== LANGUAGE SELECTOR ====== */
.custom-language-container {
    display: inline-flex;
    align-items: center;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#autoinspect-lang {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(30,41,59,0.8);
    border: 1px solid rgba(59,130,246,0.4);
    border-radius: 8px;
    padding: 8px 34px 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: inherit;
}

#autoinspect-lang:hover {
    border-color: #3b82f6;
    color: #f1f5f9;
    background-color: rgba(59,130,246,0.12);
}

#autoinspect-lang:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
    color: #f1f5f9;
}

#autoinspect-lang option {
    background-color: #1e293b;
    color: #f1f5f9;
}

.custom-arrow {
    position: absolute;
    right: 11px;
    pointer-events: none;
    width: 7px;
    height: 7px;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    margin-top: -4px;
}

/* .custom-language-container se oculta automáticamente con .nav-links en móvil */

/* ====== TERMS & CONDITIONS PAGE ====== */
.ai24-page .terms-header {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}
.ai24-page .terms-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  margin-bottom: 20px;
}
.ai24-page .terms-back:hover { color: var(--primary-light); }
.ai24-page .terms-page-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.12); color: var(--primary-light);
  padding: 6px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid rgba(59,130,246,0.25);
}
.ai24-page .terms-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ai24-page .terms-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.ai24-page .terms-body { padding: 64px 0 96px; }
.ai24-page .terms-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.ai24-page .terms-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--transition);
}
.ai24-page .terms-block:hover { border-color: var(--border-light); }
.ai24-page .terms-block h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--primary-light);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.ai24-page .terms-block h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 22px 0 8px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai24-page .terms-block h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 15px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.ai24-page .terms-block h3:first-of-type { margin-top: 0; }
.ai24-page .terms-block p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.ai24-page .terms-block p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .ai24-page .terms-header { padding: 48px 0 40px; }
  .ai24-page .terms-block { padding: 28px 24px; }
  .ai24-page .terms-body { padding: 48px 0 72px; }
}

/* ====== TRUST SECTION ====== */
.ai24-page .trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.ai24-page .trust-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.2s, transform 0.2s; }
.ai24-page .trust-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.ai24-page .trust-card h3 { font-size: 16px; font-weight: 700; margin: 0; color: var(--text-main); }
.ai24-page .trust-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }
@media (max-width: 767px) {
  .ai24-page .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .ai24-page .trust-grid { grid-template-columns: 1fr; }
}
.ai24-page .navbar p {
  margin: 0;
}

.ai24-page .navbar br {
  display: none;
}
/* ====== INTEGRACIÓN WORDPRESS ====== */
.wp-block-template-part,
.wp-block-post-title {
    display: none !important;
}
body {
    background-color: #0a0f1e !important;
    overflow-x: hidden;
    --wp--style--root--padding-top: 0px;
    --wp--style--root--padding-right: 0px;
    --wp--style--root--padding-bottom: 0px;
    --wp--style--root--padding-left: 0px;
}
main.wp-block-group {
    margin-top: 0 !important;
}
.wp-block-group.alignfull {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.entry-content.wp-block-post-content {
    max-width: 100% !important;
}
.entry-content .ai24-page,
.wp-block-post-content .ai24-page {
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
}

/* ====== BLOG LISTING ====== */
.ai24-page .blog-page-hero {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 72px;
  text-align: center;
}
.ai24-page .blog-page-hero .section-label { margin-bottom: 20px; }
.ai24-page .blog-page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ai24-page .blog-page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.ai24-page .blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 40px 0 0;
}
.ai24-page .blog-filter-btn {
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.ai24-page .blog-filter-btn:hover,
.ai24-page .blog-filter-btn.active {
  background: rgba(59,130,246,0.12);
  border-color: var(--primary);
  color: var(--primary-light);
}

.ai24-page .blog-grid {
  display: grid;
  gap: 32px;
  margin-top: 64px;
}
@media (min-width: 640px) { .ai24-page .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ai24-page .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.ai24-page .blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.ai24-page .blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ai24-page .blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(249,115,22,0.1));
}
.ai24-page .blog-card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(30,41,59,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--border);
}

.ai24-page .blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ai24-page .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ai24-page .blog-card-category {
  display: inline-block;
  background: rgba(59,130,246,0.12);
  color: var(--primary-light);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(59,130,246,0.25);
}
.ai24-page .blog-card-category.cat-conseils { background: rgba(249,115,22,0.12); color: #fdba74; border-color: rgba(249,115,22,0.25); }
.ai24-page .blog-card-category.cat-guide { background: rgba(34,197,94,0.1); color: #86efac; border-color: rgba(34,197,94,0.25); }
.ai24-page .blog-card-category.cat-marche { background: rgba(168,85,247,0.1); color: #d8b4fe; border-color: rgba(168,85,247,0.25); }

.ai24-page .blog-card-date {
  color: var(--text-muted);
  font-size: 13px;
}

.ai24-page .blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text-main);
}
.ai24-page .blog-card:hover .blog-card-title { color: var(--primary-light); }

.ai24-page .blog-card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ai24-page .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.ai24-page .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 700;
  transition: gap var(--transition);
}
.ai24-page .blog-card:hover .blog-read-more { gap: 12px; }
.ai24-page .blog-read-time {
  color: var(--text-muted);
  font-size: 13px;
}

.ai24-page .blog-featured {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(59,130,246,0.3);
  background: var(--bg-card);
  box-shadow: var(--glow-primary);
  transition: all var(--transition);
}
@media (min-width: 768px) { .ai24-page .blog-featured { grid-template-columns: 1.2fr 1fr; } }
.ai24-page .blog-featured:hover { border-color: var(--primary); transform: translateY(-3px); }
.ai24-page .blog-featured .blog-card-image-placeholder {
  aspect-ratio: unset;
  min-height: 280px;
  font-size: 72px;
}
.ai24-page .blog-featured .blog-card-image { aspect-ratio: unset; min-height: 280px; }
.ai24-page .blog-featured .blog-card-content { padding: 40px; }
.ai24-page .blog-featured .blog-card-title { font-size: 24px; }
.ai24-page .blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  color: #fdba74;
  border: 1px solid rgba(249,115,22,0.3);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.ai24-page .blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.ai24-page .blog-empty-icon { font-size: 56px; margin-bottom: 20px; }
.ai24-page .blog-empty h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }

.ai24-page .blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}
.ai24-page .blog-page-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  display: flex; align-items: center; justify-content: center;
}
.ai24-page .blog-page-btn:hover { border-color: var(--primary); color: var(--primary-light); background: rgba(59,130,246,0.1); }
.ai24-page .blog-page-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* ====== BLOG ARTICLE (individual post) ====== */
.ai24-page .article-hero {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 64px;
}
.ai24-page .article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  margin-bottom: 28px;
}
.ai24-page .article-back:hover { color: var(--primary-light); }
.ai24-page .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ai24-page .article-hero h1 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ai24-page .article-hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.75;
}
.ai24-page .article-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 48px 0;
  object-fit: cover;
  max-height: 480px;
  border: 1px solid var(--border);
}
.ai24-page .article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 96px;
}
.ai24-page .article-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 48px 0 18px;
  color: var(--text-main);
}
.ai24-page .article-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text-main);
}
.ai24-page .article-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.ai24-page .article-body ul,
.ai24-page .article-body ol {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}
.ai24-page .article-body li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}
.ai24-page .article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}
.ai24-page .article-body ol { list-style: decimal; padding-left: 20px; }
.ai24-page .article-body ol li { padding-left: 8px; }
.ai24-page .article-callout {
  background: rgba(59,130,246,0.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 16px;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.65;
}
.ai24-page .article-cta-box {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(30,41,59,0.6));
  border: 2px solid rgba(59,130,246,0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 56px 0;
}
.ai24-page .article-cta-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.ai24-page .article-cta-box p { color: var(--text-muted); margin-bottom: 24px; font-style: normal; }

@media (max-width: 767px) {
  .ai24-page .blog-page-hero { padding: 56px 0 48px; }
  .ai24-page .blog-card-content { padding: 22px; }
  .ai24-page .blog-featured .blog-card-content { padding: 28px; }
  .ai24-page .blog-featured .blog-card-title { font-size: 20px; }
  .ai24-page .article-body { padding: 48px 0 72px; }
  .ai24-page .article-cta-box { padding: 28px 20px; }
}

/* ── Form shortcode CSS (moved from inline HEAD) ── */

/* ── Autoinspect24 Multi-step Form ──────────────────────────────────── */
.ai24-form-wrap {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #111827;
  border: 1px solid #1e3a5f;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 560px;
  margin: 0 auto 48px;
  color: #f1f5f9;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
@media (max-width: 600px) {
  .ai24-form-wrap { padding: 28px 18px; border-radius: 14px; }
}

/* Progreso */
.ai24-progress-container { margin-bottom: 32px; }
.ai24-steps-indicator {
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.ai24-step-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: #1e2a3b; border: 2px solid #1e3a5f;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #94a3b8;
  transition: all 0.22s ease; flex-shrink: 0;
}
.ai24-dot-active {
  background: #3b82f6; border-color: #3b82f6; color: #fff;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}
.ai24-dot-done { background: #22c55e; border-color: #22c55e; color: #fff; }
.ai24-step-line {
  flex: 1; height: 2px; background: #1e3a5f; margin: 0 8px;
  max-width: 80px; transition: background 0.22s ease;
}
.ai24-step-line.ai24-line-done { background: #22c55e; }
.ai24-progress-labels { display: flex; justify-content: space-between; padding: 0 4px; }
.ai24-step-label {
  font-size: 11px; color: #94a3b8; text-align: center;
  flex: 1; transition: color 0.22s ease; text-transform: uppercase; letter-spacing: 0.06em;
}
.ai24-label-active { color: #3b82f6; font-weight: 700; }

/* Promesa */
.ai24-promise {
  display: flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25);
  border-radius: 999px; padding: 8px 18px; margin-bottom: 32px;
  font-size: 13px; color: #93c5fd; width: fit-content;
}
.ai24-promise-icon { font-size: 14px; }

/* Pasos */
.ai24-step { display: none; }
.ai24-step.ai24-active { display: block; animation: ai24SlideIn 0.28s ease; }
.ai24-step.ai24-active.ai24-slide-back { animation: ai24SlideBack 0.28s ease; }
@keyframes ai24SlideIn   { from { opacity:0; transform:translateX(18px); } to { opacity:1; transform:translateX(0); } }
@keyframes ai24SlideBack { from { opacity:0; transform:translateX(-18px); } to { opacity:1; transform:translateX(0); } }

.ai24-step-title {
  font-size: 22px; font-weight: 800; margin-bottom: 28px;
  line-height: 1.3; color: #f1f5f9;
}

/* Campos */
.ai24-field { margin-bottom: 20px; }
.ai24-label {
  display: block; font-size: 13px; font-weight: 600;
  color: #94a3b8; margin-bottom: 8px; letter-spacing: 0.04em;
}
.ai24-label:not(.ai24-label-optional)::after { content: " *"; color: #f97316; }
.ai24-input {
  width: 100%; padding: 13px 16px;
  background: #1e2a3b; border: 1.5px solid #1e3a5f;
  border-radius: 12px; color: #f1f5f9; font-size: 15px;
  font-family: inherit; outline: none; box-sizing: border-box;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.ai24-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.ai24-input.ai24-input-error { border-color: #ef4444; }
.ai24-textarea { resize: vertical; min-height: 88px; }
.ai24-error { display: block; font-size: 12px; color: #ef4444; margin-top: 5px; min-height: 16px; }

/* Botones */
.ai24-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.22s; border: none; font-family: inherit; min-height: 50px;
}
.ai24-btn-primary { background: #3b82f6; color: #fff; }
.ai24-btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }
.ai24-btn-accent  { background: #f97316; color: #fff; }
.ai24-btn-accent:hover  { background: #ea6c0a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.3); }
.ai24-btn-secondary { background: transparent; color: #f1f5f9; border: 2px solid #2d4a6e; }
.ai24-btn-secondary:hover { border-color: #3b82f6; background: rgba(59,130,246,0.08); }
.ai24-btn-full   { width: 100%; }
.ai24-btn-submit { width: 100%; margin-top: 8px; }
.ai24-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.ai24-btn-row    { display: flex; gap: 12px; margin-top: 24px; }
.ai24-btn-row .ai24-btn-primary,
.ai24-btn-row .ai24-btn-accent  { flex: 1; }

/* Resumen */
.ai24-summary-card {
  background: #1e2a3b; border: 1px solid #1e3a5f;
  border-radius: 12px; padding: 20px; margin-bottom: 24px;
}
.ai24-summary-row {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(30,58,95,0.5);
}
.ai24-summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.ai24-summary-label { font-size: 12px; color: #94a3b8; font-weight: 600; min-width: 110px; flex-shrink: 0; }
.ai24-summary-value { font-size: 14px; color: #f1f5f9; word-break: break-all; }

/* CGV */
.ai24-cgv-wrap  { margin-bottom: 8px; }
.ai24-cgv-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.ai24-cgv-checkbox { width: 18px; height: 18px; margin-top: 2px; accent-color: #3b82f6; flex-shrink: 0; cursor: pointer; }
.ai24-cgv-text  { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.ai24-cgv-text a { color: #3b82f6; text-decoration: underline; }

/* Éxito */
.ai24-success { display: none; text-align: center; padding: 16px 0; }
.ai24-success.ai24-active { display: block; animation: ai24FadeIn 0.4s ease; }
@keyframes ai24FadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.ai24-checkmark { margin: 0 auto 24px; width: 80px; height: 80px; }
.ai24-check-svg { width: 80px; height: 80px; }
.ai24-check-circle {
  stroke: #22c55e; stroke-width: 2;
  stroke-dasharray: 166; stroke-dashoffset: 166;
  animation: ai24DrawCircle 0.6s ease forwards;
}
.ai24-check-path {
  stroke: #22c55e; stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: ai24DrawCheck 0.4s 0.5s ease forwards;
}
@keyframes ai24DrawCircle { to { stroke-dashoffset: 0; } }
@keyframes ai24DrawCheck  { to { stroke-dashoffset: 0; } }
.ai24-success-title { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.ai24-success-msg   { font-size: 16px; color: #94a3b8; margin-bottom: 28px; }

/* Spinner */
.ai24-spinner { display: none; }
.ai24-spinner.ai24-spinning {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ai24Spin 0.8s linear infinite;
}
@keyframes ai24Spin { to { transform: rotate(360deg); } }

/* Botón sticky */
.ai24-sticky-btn {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #3b82f6; color: #fff;
  padding: 15px 32px; border-radius: 999px; font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(59,130,246,0.4); cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  z-index: 9999; transition: all 0.22s; white-space: nowrap;
  font-family: "Inter", system-ui, sans-serif;
}
.ai24-sticky-btn:hover { background: #2563eb; transform: translateX(-50%) translateY(-2px); }
.ai24-sticky-btn.ai24-sticky-hidden { display: none !important; }
@media (min-width: 769px) { .ai24-sticky-btn { display: none !important; } }

/* ── Reviews section ────────────────────────────── */
.ai24-page .section-reviews { background: var(--bg-section); }
.ai24-page .reviews-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .ai24-page .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.ai24-page .review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 0; box-shadow: var(--shadow); }
.ai24-page .review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.ai24-page .review-stars { color: #fbbf24; font-size: 20px; letter-spacing: 2px; line-height: 1; }
.ai24-page .review-google-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.ai24-page .review-text { color: var(--text-muted); font-size: 15px; line-height: 1.7; font-style: italic; flex-grow: 1; margin-bottom: 20px; }
.ai24-page .review-footer { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 5px; }
.ai24-page .review-name { font-weight: 700; font-size: 15px; color: var(--text-main); }
.ai24-page .review-badge-pill { display: inline-block; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); border-radius: 999px; padding: 3px 10px; font-size: 12px; color: #86efac; font-weight: 600; width: fit-content; }
.ai24-page .review-date { font-size: 12px; color: var(--text-muted); }

/* ====== CAMBIOS CONVERSIÓN 2026-06-09 ====== */

/* ── CAMBIO 1: Hero WA button + microcopy ── */
.ai24-page .btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ai24-page .btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.ai24-page .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ai24-page .hero-cta-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: -4px 0 0 2px;
  line-height: 1.4;
}

/* ── CAMBIO 3: Trust Google link ── */
.ai24-page .trust-google-link {
  color: var(--primary, #3b82f6);
  text-decoration: underline;
  font-weight: 600;
}
.ai24-page .trust-google-link:hover {
  color: var(--primary-dark, #2563eb);
}

/* ── CAMBIO 2: Sticky mobile bar ── */
.ai24-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #0f2133;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .ai24-sticky-bar.ai24-sbar-visible { display: flex; }
  body { padding-bottom: 72px; }
  .whatsapp-btn { display: none !important; }
}
.ai24-sbar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 0;
}
.ai24-sbar-wa {
  background: #25D366;
  color: #fff;
}
.ai24-sbar-wa:hover { background: #1ebe5d; }

/* ── v2.0: Canton selector + WhatsApp escape + Price separator ── */
.ai24w-canton-select {
  width: 100%; padding: 13px 16px; font-size: 16px;
  margin-bottom: 4px;
  appearance: auto; -webkit-appearance: auto;
  cursor: pointer;
}
.ai24w-canton-autres {
  margin-top: 16px; padding: 16px 18px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 12px;
}
.ai24w-canton-autres-msg {
  margin: 0 0 12px; font-size: 14px;
  color: rgba(255,255,255,0.82); line-height: 1.5;
}
.ai24w-price-separator {
  border: none; border-top: 1px solid rgba(255,255,255,0.12);
  margin: 8px 0 12px;
}
.ai24w-price-inclus {
  color: #22c55e; font-weight: 700; font-style: italic;
}
.ai24w-wa-escape {
  margin-top: 20px; padding: 16px 18px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: 12px;
}
.ai24w-wa-escape-text {
  margin: 0 0 10px; font-size: 13px;
  color: rgba(255,255,255,0.72); line-height: 1.5;
}
.ai24w-wa-btn {
  display: inline-flex; align-items: center;
  background: #25D366; color: #fff;
  font-family: Arial, sans-serif; font-size: 14px; font-weight: 700;
  padding: 11px 18px; border-radius: 10px;
  text-decoration: none; transition: background .2s;
  border: none; cursor: pointer;
}
.ai24w-wa-btn:hover { background: #1ebe5d; color: #fff; }

/* ── v3.0: Paso de precio rediseñado ── */

/* Ancla de valor (encuadra el riesgo antes del precio) */
.ai24w-anchor-value {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.ai24w-anchor-text {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
}

/* Total todo incluido */
.ai24w-total-allincl {
  margin-bottom: 16px;
}
.ai24w-total-allincl-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-align: center;
}

/* Botón WhatsApp principal — grande y dominante */
.ai24w-wa-main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 14px;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
.ai24w-wa-main-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

/* Bloque de entrada de bajo compromiso (pré-analyse 79 CHF) */
.ai24w-step5-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 14px 0 10px;
}
.ai24w-low-entry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 0;
}
.ai24w-low-entry-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* Botón WhatsApp pequeño (bajo compromiso) */
.ai24w-wa-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.35);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ai24w-wa-btn-sm:hover {
  background: rgba(37,211,102,0.22);
  color: #25D366;
}

/* Invitación al formulario de devolución de llamada */
.ai24w-callback-invite {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  margin-top: 2px;
}
.ai24w-callback-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1.4;
}
.ai24w-callback-link:hover {
  color: #94a3b8;
}
