/*
Theme Name: Lithy Agency
Theme URI: https://lithyagency.com
Author: Lithy Agency
Author URI: https://lithyagency.com
Description: Tema profesional de WordPress para Lithy Agency — Agencia de Marketing Digital. Diseño moderno con enfoque en conversión, optimizado para rendimiento.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lithyagency
Tags: marketing, agency, business, one-page, custom-menu, translation-ready
*/

/* ============================================
   LITHY AGENCY — Global Stylesheet v2
   Light theme: Clean, modern marketing agency
   Brand: Orange #F26A1B | Black #0F0F12 | Gray #2B2E34 | White #FFFFFF
   ============================================ */

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

:root {
  --orange: #F26A1B;
  --orange-dark: #d45a10;
  --orange-light: #ff8040;
  --orange-bg: rgba(242, 106, 27, 0.07);
  --orange-border: rgba(242, 106, 27, 0.2);
  --black: #0F0F12;
  --graphite: #2B2E34;
  --graphite-light: #3a3e47;
  --white: #FFFFFF;
  --bg: #F7F7F8;
  --bg-alt: #EEEEF1;
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(0, 0, 0, 0.13);
  --text: #1a1a2e;
  --text-muted: #5a5a7a;
  --text-light: #888899;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-orange: 0 4px 24px rgba(242, 106, 27, 0.3);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ─── Typography ────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-orange {
  color: var(--orange);
}

.text-white {
  color: var(--white);
}

.text-gray {
  color: var(--text-muted);
}

.text-dark {
  color: var(--black);
}

/* ─── Layout ────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-light {
  background: var(--bg);
}

.section-dark {
  background: var(--black);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

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

.mx-auto {
  margin: 0 auto;
}

/* ─── Section Labels ─────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-dark .section-label {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 52px;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

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

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

.btn-secondary:hover {
  background: var(--graphite);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  border-color: var(--bg);
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline-black {
  color: #111827;
  border: 1px solid #d1d5db;
}

.btn-outline-black:hover {
  background: #111827;
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  padding: 10px 0;
  font-size: 0.88rem;
}

.btn-ghost:hover {
  gap: 12px;
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1fb95a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ─── Navigation ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 15, 18, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.navbar:not(.scrolled) {
  /* On hero dark sections the nav is over dark bg */
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--white);
}

.navbar.scrolled .nav-link.active {
  color: var(--orange);
}


.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg);
  color: var(--black);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.nav-cta {
  margin-left: 10px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 8px;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--white);
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(242, 106, 27, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(242, 106, 27, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 106, 27, 0.12);
  border: 1px solid rgba(242, 106, 27, 0.25);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero p.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.stat-num span {
  color: var(--orange);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 10px var(--orange-light);
  animation: dot-blink 1.8s ease infinite;
}

.text-gradient {
  background: linear-gradient(180deg, #f6ad55 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* - Hero video -*/
.home-hero .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 380px);
  gap: 64px;
  align-items: center;
}

.home-hero .hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.home-hero .hero-video {
  display: block;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* ─── Cards ──────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Service cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Cards on dark sections */
.section-dark .card,
.section-dark .service-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .card:hover,
.section-dark .service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 106, 27, 0.3);
}

.section-dark .card h3,
.section-dark .service-card h3 {
  color: var(--white);
}

.section-dark .card p,
.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* Why Lithy */

#why-lithy {
  position: relative;
  background-image: url("assets/img/whyLithy.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

#why-lithy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 12, 0.72);
  z-index: 0;
}

#why-lithy>.container {
  position: relative;
  z-index: 1;
}

#why-lithy .section-tag {
  position: relative;
  z-index: 1;
}

#why-lithy h2,
#why-lithy h3,
#why-lithy p,
#why-lithy .lead,
#why-lithy .feature-card p,
#why-lithy .glass-card p {
  color: #f5f7fb;
}

#why-lithy .text-muted,
#why-lithy .section-subtitle {
  color: rgba(245, 247, 251, 0.82);
}

#why-lithy .feature-card,
#why-lithy .glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#why-lithy .feature-card h3,
#why-lithy .glass-card h3 {
  color: #111827;
}

#why-lithy .feature-card p,
#why-lithy .glass-card p {
  color: #4b5563;
}

#why-lithy .why-card {
  background: rgba(255, 255, 255, 0.95);
}

#why-lithy .why-card h3 {
  color: #111827;
}

#why-lithy .why-card p {
  color: #4b5563;
}

/* ─── Feature List ───────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--orange-border);
  background: rgba(242, 106, 27, 0.04);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  color: var(--black);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.85rem;
}

/* ─── Process ────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--orange);
  opacity: 0.35;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 32px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.process-step::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0 auto 18px;
  box-shadow: 0 0 0 5px var(--white);
  position: relative;
  z-index: 2;
}

.process-step:last-child .step-num {
  border-color: #22c55e;
  color: #22c55e;
}

.process-step h4 {
  color: var(--black);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.process-step p {
  font-size: 0.85rem;
}

/* Process on dark section */
.section-dark .process-step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .process-step .step-num {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.section-dark .process-step h4 {
  color: var(--white);
}

.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Testimonials ───────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars {
  width: 18px;
  height: 18px;
  color: #f6ad55;
  fill: #f6ad55;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-bg);
  border: 2px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.author-biz {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── CTA Banner ─────────────────────────────── */
.cta-banner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 106, 27, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner .section-label {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner .flex-center {
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner-centered-glow::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
}

/* ─── Forms ──────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}

.form-label span {
  color: var(--orange);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 13px 15px;
  color: var(--black);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  background-color: var(--white);
}

.form-select option {
  background: var(--white);
  color: var(--black);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

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

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* Radio/Checkbox */
.radio-group,
.check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-item,
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.radio-item input,
.check-item input {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

/* SMS consent checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 4px;
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox span a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Pricing ─────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 10px 0 22px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
}

.pricing-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.setup-label {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.setup-label strong {
  color: var(--black);
}

/* ─── FAQ ────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.92rem;
}

/* ─── Page Hero (inner pages) ─────────────────── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(242, 106, 27, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-label {
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

.page-hero h1 {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 18px;
}

.page-hero p.lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 36px;
}

.service-hero {
  padding: 148px 0 96px;
  text-align: left;
}

.service-hero::before {
  background:
    radial-gradient(ellipse 62% 58% at 24% 20%, rgba(242, 106, 27, 0.2) 0%, transparent 62%),
    radial-gradient(ellipse 54% 52% at 78% 50%, rgba(242, 106, 27, 0.12) 0%, transparent 64%);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-hero-copy,
.service-hero-visual {
  position: relative;
  z-index: 1;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 106, 27, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-hero .section-label {
  justify-content: flex-start;
  margin: 0 0 18px;
}

.service-hero h1 {
  max-width: none;
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5.3vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.service-hero h1 span {
  color: var(--orange);
}

.service-hero p.lead {
  max-width: 640px;
  margin: 0 0 34px;
  font-size: 1.06rem;
  line-height: 1.8;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.service-proof-dots {
  display: flex;
  align-items: center;
}

.service-proof-dots span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: -8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-proof-dots span:first-child {
  margin-left: 0;
}

.service-hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.service-hero-visual {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-panel {
  width: min(100%, 540px);
  border-radius: 30px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.9), rgba(14, 14, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 106, 27, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.service-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(242, 106, 27, 0.14) 0%, transparent 48%);
  pointer-events: none;
}

.service-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.service-panel-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.service-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.service-panel-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
  box-shadow: 0 0 10px rgba(72, 187, 120, 0.55);
}

.service-chat-stack,
.service-mini-grid,
.service-flow-list,
.service-rank-list,
.service-platform-grid {
  position: relative;
  z-index: 1;
}

.service-chat-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-chat-bubble {
  max-width: 84%;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-chat-bubble.incoming {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  border-bottom-left-radius: 6px;
}

.service-chat-bubble.outgoing {
  align-self: flex-end;
  background: rgba(242, 106, 27, 0.18);
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(242, 106, 27, 0.24);
  border-bottom-right-radius: 6px;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-mini-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-mini-value {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-mini-copy {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.service-flow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-flow-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-flow-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 106, 27, 0.16);
  border: 1px solid rgba(242, 106, 27, 0.28);
  color: var(--orange);
  font-weight: 800;
}

.service-flow-step strong,
.service-rank-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.service-flow-step p,
.service-rank-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.6;
}

.service-browser {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.service-browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.service-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.service-browser-screen {
  padding: 24px;
}

.service-browser-hero {
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(242, 106, 27, 0.22), rgba(242, 106, 27, 0.03));
  border: 1px solid rgba(242, 106, 27, 0.16);
  margin-bottom: 16px;
}

.service-browser-hero strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-browser-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-browser-metric {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-browser-metric .service-mini-card {
  padding: 16px 14px;
}

.service-rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-rank-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-rank-pos {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-rank-trend {
  color: #48bb78;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-platform-card {
  min-height: 180px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-platform-card strong {
  color: var(--white);
  font-size: 1rem;
}

.service-platform-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}

.service-platform-stat {
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* ─── Stats Strip ─────────────────────────────── */
.stats-strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-block {}

.stat-block .num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-block .num span {
  color: var(--orange);
}

.stat-block .lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* ─── Highlight box ──────────────────────────── */
.highlight-box {
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.highlight-box p {
  color: var(--text-muted);
}

/* ─── Tag / Badge ────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-bg);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  font-size: 0.77rem;
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 100px;
}

/* ─── Visual block ───────────────────────────── */
.visual-block {
  background: var(--bg);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* ─── Result Pill ────────────────────────────── */
.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text);
}

.result-pill strong {
  color: var(--black);
}

.result-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.footer-social-icons {
  gap: 18px;
}

.footer-social-icons .social-btn {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
}

.footer-social-icons .social-btn:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-social-icons .social-btn img {
  width: 34px;
  height: 34px;
  opacity: 0.9;
  transform: scale(1.3);
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(242, 106, 27, 0.08));
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.footer-social-icons .social-btn:hover img {
  opacity: 1;
  transform: scale(1.42);
  filter: drop-shadow(0 0 14px rgba(242, 106, 27, 0.22));
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

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

.footer-links span {
  font-size: 0.86rem;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── WhatsApp Float ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.wa-float-tooltip {
  position: absolute;
  right: 66px;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}

/* ─── Divider ────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
}

/* ─── Why card (home) ────────────────────────── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(242, 106, 27, 0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.why-card h4 {
  color: var(--black);
  margin-bottom: 7px;
  font-size: 0.95rem;
}

.why-card p {
  font-size: 0.85rem;
}

/* ─── Numbers comparison ─────────────────────── */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.ba-col {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.ba-col.before {
  border-color: rgba(239, 68, 68, 0.2);
  background: #fff5f5;
}

.ba-col.after {
  border-color: rgba(34, 197, 94, 0.25);
  background: #f0fdf4;
}

.ba-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.ba-col.before .ba-label {
  color: #ef4444;
}

.ba-col.after .ba-label {
  color: #22c55e;
}

.ba-arrow {
  font-size: 2rem;
  color: var(--orange);
}

.ba-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ─── About Page ─────────────────────────────── */
.about-hero {
  text-align: left;
  padding: 140px 0 80px;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  max-width: none;
  margin: 0 0 20px;
}

.about-hero p.lead {
  max-width: 560px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.about-hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.about-hero-stat:hover {
  border-color: rgba(242, 106, 27, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.about-hero-stat-num {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.about-hero-stat-lbl {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Stats bar */
.about-stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.about-stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-stats-bar-num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stats-bar-lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* History section */
.about-history-grid {
  gap: 64px;
  align-items: start;
}

.about-history-text {
  margin: 20px 0;
}

/* Timeline improved */
.about-timeline {
  position: relative;
  padding-left: 56px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(242, 106, 27, 0.15));
  z-index: 0;
}

.about-tl-item {
  position: relative;
  padding-bottom: 36px;
}

.about-tl-item:last-child {
  padding-bottom: 0;
}

.about-tl-marker {
  position: absolute;
  left: -56px;
  top: 4px;
  z-index: 2;
}

.about-tl-dot {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--white);
}

.about-tl-content {
  flex: 1;
}

.about-tl-year {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.about-tl-item h4 {
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-tl-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Misión / Visión / Valores */
.about-mvv-section {
  background: var(--bg);
}

.about-mvv-grid {
  margin-top: 48px;
}

.about-mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-mvv-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-mvv-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--orange);
}

.about-mvv-card h3 {
  margin-bottom: 12px;
}

/* Differentiators */
.about-diff-grid {
  gap: 56px;
  align-items: center;
}

.about-diff-text {
  margin: 20px 0;
}

.about-diff-highlight-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.about-diff-highlight-desc {
  font-size: 0.88rem;
}

.about-diff-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-diff-stat {
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-diff-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--orange-border);
}

.about-diff-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
}

.about-diff-stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Principles / Values */
.about-principles-section {
  background: var(--bg);
}

.about-principles-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  background: var(--white);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.value-card h4 {
  color: var(--text);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA actions */
.about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-label {
  justify-content: center;
}

/* ─── Contact Page ───────────────────────────── */
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-expect-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.contact-expect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-expect-num {
  width: 28px;
  height: 28px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}

/* Responsive for about page */
@media (max-width: 1024px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-stats-grid {
    max-width: 400px;
  }

  .about-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 60px;
  }

  .about-hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-diff-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 106, 27, 0.3);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(242, 106, 27, 0);
  }
}

/* ─── Contact info cards ─────────────────────── */
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-icon.wa {
  background: rgba(37, 211, 102, 0.1);
}

.contact-info-icon.em {
  background: var(--orange-bg);
}

.contact-info-icon.map {
  background: rgba(66, 133, 244, 0.1);
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-info-value {
  color: var(--black);
  font-weight: 600;
  font-size: 0.93rem;
}

.contact-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .ba-arrow {
    display: none;
  }
}

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

  .section-sm {
    padding: 44px 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── Force navbar dark bg when menu is open ── */
  .navbar.menu-open {
    background: var(--black) !important;
  }

  .nav-menu {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* ── Hamburger → X animation ── */
  .nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Mobile menu panel ── */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    width: 100%;
    background: var(--black);
    padding: 24px;
    overflow-y: auto;
    gap: 4px;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: menuSlideIn 0.3s ease;
  }

  @keyframes menuSlideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .nav-menu.open .nav-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 400;
    padding: 13px 16px;
    border-radius: 0;
    text-align: left;
    border-left: 2px solid transparent;
    letter-spacing: 0.01em;
  }

  .nav-menu.open .nav-link:hover {
    color: rgba(255, 255, 255, 0.85);
    border-left-color: rgba(242, 106, 27, 0.5);
  }

  .nav-menu.open .nav-link.active {
    color: var(--white);
    font-weight: 500;
    border-left-color: var(--orange);
  }

  /* ── Mobile dropdown ── */
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 4px 0;
    display: none;
  }

  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .home-hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-hero .hero-media {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .home-hero .hero-video {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner .flex-center {
    flex-direction: column;
  }
}



/* ─── Pagina Agentes de Voz con IA ─── */

/* ===== HERO ===== */
.av-hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.av-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.av-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.av-hero-badge svg {
  animation: live-blink 1.5s ease-in-out infinite;
  color: #f59e0b;
  stroke: #f59e0b;
}

.av-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}

.av-hero h1 span {
  color: var(--orange);
}

.av-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.av-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.av-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
}

.av-proof-dots {
  display: flex;
}

.av-proof-dots span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--graphite);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.av-proof-dots span:first-child {
  margin-left: 0;
}

.av-hero-proof p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.av-hero-proof strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Phone mockup */
.av-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.av-wave-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 106, 27, 0.12);
  animation: av-pulse-ring 3s ease-out infinite;
}

.av-wave-circle:nth-child(1) {
  width: 280px;
  height: 280px;
  animation-delay: 0s;
}

.av-wave-circle:nth-child(2) {
  width: 380px;
  height: 380px;
  animation-delay: 0.7s;
}

.av-wave-circle:nth-child(3) {
  width: 480px;
  height: 480px;
  animation-delay: 1.4s;
}

@keyframes av-pulse-ring {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.15;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.av-phone {
  width: 300px;
  background: #1a1a1f;
  border-radius: 44px;
  padding: 24px 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.av-phone-notch {
  width: 80px;
  height: 7px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 0 auto 24px;
}

.av-phone-screen {
  background: #0d0d10;
  border-radius: 28px;
  padding: 28px 20px;
  min-height: 360px;
}

.av-phone-caller {
  text-align: center;
  margin-bottom: 20px;
}

.av-caller-avatar {
  width: 68px;
  height: 68px;
  background: rgba(242, 106, 27, 0.2);
  border: 2px solid rgba(242, 106, 27, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.8rem;
}

.av-caller-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.av-caller-status {
  font-size: 0.8rem;
  color: var(--orange);
}

.av-vbars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 60px;
  margin: 20px 0;
}

.av-vbar {
  width: 7px;
  background: var(--orange);
  border-radius: 4px;
  animation: av-vbar-anim 1.2s ease-in-out infinite;
}

.av-vbar:nth-child(1) {
  animation-delay: 0s;
  height: 22px;
}

.av-vbar:nth-child(2) {
  animation-delay: 0.15s;
  height: 44px;
}

.av-vbar:nth-child(3) {
  animation-delay: 0.3s;
  height: 60px;
}

.av-vbar:nth-child(4) {
  animation-delay: 0.45s;
  height: 34px;
}

.av-vbar:nth-child(5) {
  animation-delay: 0.6s;
  height: 50px;
}

.av-vbar:nth-child(6) {
  animation-delay: 0.75s;
  height: 28px;
}

.av-vbar:nth-child(7) {
  animation-delay: 0.9s;
  height: 40px;
}

@keyframes av-vbar-anim {

  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.av-phone-msg {
  background: rgba(242, 106, 27, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 12px;
}

.av-phone-msg-bot {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.av-phone-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.av-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.av-action-btn.end {
  background: #e53e3e;
}

.av-action-btn.transfer {
  background: rgba(255, 255, 255, 0.1);
}

/* Floating stat cards */
.av-stat-card {
  position: absolute;
  background: rgba(26, 26, 31, 0.95);
  border: 1px solid rgba(242, 106, 27, 0.25);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  z-index: 3;
  animation: av-float 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.av-stat-card:nth-child(5) {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.av-stat-card:nth-child(6) {
  bottom: 20%;
  left: -40px;
  animation-delay: 1.3s;
}

.av-stat-card:nth-child(7) {
  top: 55%;
  right: -20px;
  animation-delay: 0.7s;
}

@keyframes av-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.av-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.av-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  white-space: nowrap;
}

.av-stat-dot {
  width: 8px;
  height: 8px;
  background: #48bb78;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: av-blink 1.5s ease-in-out infinite;
}

@keyframes av-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ===== PROBLEMA ===== */
.av-problema-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.av-problema-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.av-problema-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.av-problema-card::before {
  display: none;
}

.av-problema-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 62, 62, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.av-problema-icon svg {
  width: 26px;
  height: 26px;
  color: #e53e3e;
}

.av-problema-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.av-problema-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== SOLUCION ===== */
.av-solucion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.av-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.av-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.av-flow-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--orange), rgba(242, 106, 27, 0.3));
  margin: 0 38px;
}

.av-flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.av-flow-icon.call {
  background: rgba(72, 187, 120, 0.15);
}

.av-flow-icon.ai {
  background: rgba(242, 106, 27, 0.15);
}

.av-flow-icon.outcome {
  background: rgba(66, 153, 225, 0.15);
}

.av-flow-icon.crm {
  background: rgba(159, 122, 234, 0.15);
}

.av-flow-icon svg {
  width: 24px;
  height: 24px;
}

.av-flow-icon.call svg {
  color: #48bb78;
}

.av-flow-icon.ai svg {
  color: var(--orange);
}

.av-flow-icon.outcome svg {
  color: #4299e1;
}

.av-flow-icon.crm svg {
  color: #9f7aea;
}

.av-flow-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.av-flow-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== FEATURES ===== */
.av-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.av-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.av-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 106, 27, 0.3);
}

.av-feat-icon {
  width: 56px;
  height: 56px;
  background: rgba(242, 106, 27, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.av-feat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.av-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.av-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== STATS STRIP ===== */
.av-stats-strip {
  background: var(--black);
  padding: 72px 0;
}

.av-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.av-stat-item {
  position: relative;
}

.av-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.av-stat-big {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.av-stat-big-lbl {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== INDUSTRIAS ===== */
.av-industrias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.av-industria-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.av-industria-card:hover {
  border-color: rgba(242, 106, 27, 0.4);
  box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.08), var(--shadow-md);
  transform: translateY(-4px);
}

.av-ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(242, 106, 27, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

.av-industria-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.av-industria-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===== PROCESO ===== */
.av-proceso-section {
  background: var(--black);
  padding: 96px 0;
}

.av-proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.av-proceso-grid::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--orange);
  opacity: 0.4;
}

.av-proceso-step {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  position: relative;
}

.av-step-number {
  width: 56px;
  height: 56px;
  background: var(--black);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.av-proceso-step:last-child .av-step-number {
  border-color: #22c55e;
  color: #22c55e;
}

.av-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 106, 27, 0.15);
  border: 1px solid rgba(242, 106, 27, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}

.av-proceso-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.av-proceso-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}


/* ===== FAQ ===== */
.av-faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.av-faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.av-faq-list details[open] {
  border-color: rgba(242, 106, 27, 0.3);
  box-shadow: 0 0 0 3px rgba(242, 106, 27, 0.07);
}

.av-faq-list summary {
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.av-faq-list summary::-webkit-details-marker {
  display: none;
}

.av-faq-list summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.av-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.av-faq-list .av-faq-body {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--black);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 106, 27, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .section-label {
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-final h2 span {
  color: var(--orange);
}

.cta-final p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.av-cta-micro {
  margin-top: 20px !important;
  font-size: 0.81rem !important;
  color: rgba(255, 255, 255, 0.28) !important;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-micro {
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-hero {
    padding: 134px 0 84px;
  }

  .service-hero-visual {
    min-height: auto;
  }

  .service-platform-grid {
    grid-template-columns: 1fr;
  }

  .service-browser-metric {
    grid-template-columns: 1fr;
  }

  .av-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .av-phone-wrap {
    display: none;
  }

  .av-problema-grid {
    grid-template-columns: 1fr;
  }

  .av-solucion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .av-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-industrias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-proceso-grid {
    grid-template-columns: 1fr;
  }

  .av-proceso-grid::before {
    display: none;
  }

  .av-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .av-features-grid {
    grid-template-columns: 1fr;
  }

  .av-industrias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .av-stat-item::after {
    display: none;
  }
}


/* --- index.html --- */
/* Page-specific hero override */
.home-hero {
  padding: 0;
}

.home-hero .hero-content {
  padding: 160px 0 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .service-hero p.lead {
    font-size: 1rem;
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .service-mini-grid,
  .service-browser-metric {
    grid-template-columns: 1fr;
  }

  .service-rank-item {
    grid-template-columns: 48px 1fr;
  }

  .service-rank-trend {
    grid-column: 2;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-content {
    padding: 120px 0 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}