/* =========================================================
   ConectivaPro · ACOSTA MAINTENANCE LLC
   Paleta: morado oscuro premium + azul eléctrico + negro
   Dealer autorizado independiente — diseño tech premium
   ========================================================= */

:root {
  /* Core palette */
  --bg-deep:        #060414;
  --bg-night:       #0B0820;
  --bg-card:        #110D2C;
  --bg-elevated:    #1A1340;

  --purple-900:     #2A0E63;
  --purple-700:     #5B21B6;
  --purple-500:     #8B3DFF;
  --purple-400:     #A855F7;
  --magenta-500:    #D946EF;

  --blue-electric:  #2563EB;
  --blue-bright:    #3B82F6;
  --blue-glow:      #60A5FA;
  --cyan-accent:    #22D3EE;

  --call-green:     #00D26A;
  --call-green-dark:#00A152;

  --text-100:       #FFFFFF;
  --text-200:       #E8E4FF;
  --text-300:       #B8B2D9;
  --text-400:       #8B85B0;
  --text-500:       #5D5780;

  --border-soft:    rgba(139, 61, 255, 0.18);
  --border-strong:  rgba(139, 61, 255, 0.35);

  --gradient-brand: linear-gradient(135deg, #2563EB 0%, #8B3DFF 50%, #D946EF 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(139,61,255,0.18), rgba(217,70,239,0.18));
  --gradient-hero: radial-gradient(ellipse at 20% 0%, rgba(139,61,255,0.35) 0%, transparent 55%),
                   radial-gradient(ellipse at 85% 30%, rgba(37,99,235,0.30) 0%, transparent 55%),
                   radial-gradient(ellipse at 60% 100%, rgba(217,70,239,0.18) 0%, transparent 60%),
                   linear-gradient(180deg, #060414 0%, #0B0820 100%);
  --gradient-call:  linear-gradient(135deg, #00D26A 0%, #00A152 100%);

  --shadow-glow-purple: 0 0 60px -10px rgba(139, 61, 255, 0.55);
  --shadow-glow-blue:   0 0 60px -10px rgba(37, 99, 235, 0.55);
  --shadow-glow-green:  0 0 50px -8px rgba(0, 210, 106, 0.65);
  --shadow-card:        0 20px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-soft);
  --shadow-card-hover:  0 30px 80px -20px rgba(139, 61, 255, 0.4), 0 0 0 1px var(--border-strong);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--purple-500); color: white; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-200);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-100);
}

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

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ============ NOISE / GRAIN OVERLAY ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ============ TOP INFO BAR ============ */
.info-bar {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, var(--purple-700), var(--magenta-500), var(--blue-electric));
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.info-bar a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 4, 20, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  width: min(1200px, 92%);
  margin-inline: auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  position: relative;
  overflow: visible;
  filter: drop-shadow(0 6px 18px rgba(139, 61, 255, 0.35));
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-mark svg {
  width: 26px; height: 26px;
  color: white;
  position: relative;
  z-index: 2;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-100);
  letter-spacing: -0.02em;
}
.logo-name span { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-tag {
  font-size: 10.5px;
  color: var(--text-400);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a {
  color: var(--text-300);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .25s ease;
}
.header-nav a:hover { color: var(--text-100); }
.header-cta {
  background: var(--gradient-call);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-glow-green);
  transition: transform .25s var(--ease-bounce), box-shadow .25s ease;
  position: relative;
}
.header-cta:hover { transform: translateY(-2px) scale(1.03); }
.header-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  background: var(--call-green);
  opacity: 0.4;
  z-index: -1;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 61, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 61, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139, 61, 255, 0.5), transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
  bottom: -150px; right: -120px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 8px;
  border-radius: var(--radius-pill);
  background: rgba(139, 61, 255, 0.12);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-200);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-badge .dot {
  width: 10px; height: 10px;
  background: var(--purple-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.1rem);
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}
.hero h1 .gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-300);
  margin-bottom: 36px;
  max-width: 580px;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  animation: fadeUp 0.9s 0.3s var(--ease-out) both;
}

.btn-call-mega {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: var(--gradient-call);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 18px;
  font-family: 'Sora', sans-serif;
  box-shadow: var(--shadow-glow-green);
  transition: transform .3s var(--ease-bounce);
  position: relative;
  overflow: hidden;
}
.btn-call-mega::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-call-mega:hover { transform: translateY(-3px) scale(1.02); }
.btn-call-mega:hover::before { transform: translateX(100%); }
.btn-call-mega .phone-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.22);
  border-radius: 12px;
  display: grid; place-items: center;
  animation: phoneShake 2.5s ease-in-out infinite;
}
.btn-call-mega .phone-num { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-call-mega .phone-label { font-size: 11.5px; opacity: 0.9; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-call-mega .phone-big { font-size: 22px; font-weight: 900; letter-spacing: -0.01em; }

@keyframes phoneShake {
  0%, 92%, 100% { transform: rotate(0); }
  94% { transform: rotate(-12deg); }
  96% { transform: rotate(12deg); }
  98% { transform: rotate(-8deg); }
}

.btn-ghost {
  padding: 18px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text-100);
  font-weight: 700;
  font-size: 15px;
  transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost:hover {
  background: rgba(139, 61, 255, 0.12);
  border-color: var(--purple-500);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  animation: fadeUp 0.9s 0.4s var(--ease-out) both;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-300); }
.trust-item svg { width: 18px; height: 18px; color: var(--call-green); }

/* HERO disclosure (above the fold) */
.hero-disclosure {
  margin-top: 26px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(139, 61, 255, 0.08);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--purple-500);
  max-width: 580px;
  animation: fadeUp 0.9s 0.35s var(--ease-out) both;
}
.hero-disclosure > strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--text-100);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-disclosure p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-300);
  margin: 0;
}
.hero-disclosure p strong { color: var(--text-200); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO Right - Live agent card */
.hero-card {
  background: linear-gradient(160deg, rgba(26, 19, 64, 0.8), rgba(11, 8, 32, 0.6));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  animation: fadeUp 1s 0.5s var(--ease-out) both;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}

.agent-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.agent-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  font-family: 'Sora', sans-serif;
  position: relative;
}
.agent-avatar::after {
  content: '';
  position: absolute;
  right: -2px; bottom: -2px;
  width: 16px; height: 16px;
  background: var(--purple-400);
  border: 3px solid var(--bg-card);
  border-radius: 50%;
}
.agent-info h4 { font-size: 17px; margin-bottom: 2px; }
.agent-info p { font-size: 13px; color: var(--text-400); }

.hero-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: rgba(139, 61, 255, 0.08);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.hero-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-300);
  border-bottom: 1px solid var(--border-soft);
}
.hero-hours-row:last-child { border-bottom: none; }
.hero-hours-row strong {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  color: var(--text-100);
  font-weight: 700;
  text-align: right;
}

.hero-card .btn-card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--gradient-call);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-glow-green);
}

.hero-card-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-400);
}

/* ============ SECTION COMMONS ============ */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-300);
  max-width: 640px;
  margin-bottom: 50px;
}
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-inline: auto; margin-bottom: 60px; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--bg-night);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 32px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-cell {
  display: flex; align-items: center; gap: 14px;
}
.trust-cell-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-cell-icon svg { width: 22px; height: 22px; color: var(--purple-400); }
.trust-cell-text strong { display: block; font-size: 15px; color: var(--text-100); font-weight: 700; font-family: 'Sora'; }
.trust-cell-text span { font-size: 12.5px; color: var(--text-400); }

/* ============ PROCESS / CÓMO FUNCIONA ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-night));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.process-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow-purple);
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--text-300); font-size: 14px; margin: 0; }
.process-disclosure {
  margin-top: 36px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(139, 61, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--purple-500);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-300);
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 28px;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-night));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--purple-500);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--purple-400); }

.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-300); font-size: 14.5px; margin-bottom: 18px; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ============ FEATURES (alternating) ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse > div:first-child { order: 2; }

.feature-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}
.feature-content p {
  color: var(--text-300);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.feature-list { margin-bottom: 28px; }
.feature-list li {
  list-style: none;
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-200);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  background: var(--gradient-brand);
  border-radius: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--bg-card), var(--bg-night));
  border: 1px solid var(--border-strong);
  padding: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(139, 61, 255, 0.35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.35), transparent 50%);
}
.feature-visual-icon {
  position: relative;
  width: 140px; height: 140px;
  border-radius: 32px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow-purple);
}
.feature-visual-icon svg { width: 70px; height: 70px; color: white; }
.feature-visual-icon::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  border: 1px solid var(--purple-500);
  opacity: 0.4;
  animation: ringExpand 3s ease-out infinite;
}
@keyframes ringExpand {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ============ STATS BANNER ============ */
.stats-banner {
  background: linear-gradient(135deg, var(--purple-900), var(--bg-night), var(--bg-deep));
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.6;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-big-label {
  font-size: 14px;
  color: var(--text-300);
  font-weight: 500;
}

/* ============ FAQ ============ */
.faq-grid { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--purple-500); background: var(--bg-elevated); }
.faq-summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-family: 'Sora', sans-serif;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 26px;
  color: var(--purple-400);
  transition: transform .3s ease;
  font-weight: 300;
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--text-300); font-size: 15px; }

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative;
  background: var(--gradient-hero);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139, 61, 255, 0.4), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.4), transparent 60%);
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.cta-final p {
  font-size: 1.15rem;
  color: var(--text-300);
  margin-bottom: 40px;
  max-width: 620px;
  margin-inline: auto;
}
.cta-final .btn-call-mega { padding: 22px 40px; font-size: 19px; }
.cta-final .btn-call-mega .phone-big { font-size: 26px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 30px;
  color: var(--text-300);
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: var(--text-400); line-height: 1.7; }
.footer h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--text-100);
  font-weight: 700;
}
.footer ul li { list-style: none; margin-bottom: 10px; }
.footer ul li a {
  color: var(--text-300);
  transition: color .2s ease;
  font-size: 14px;
}
.footer ul li a:hover { color: var(--purple-400); }
.footer-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--gradient-call);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
}

.footer-business {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-200);
}
.footer-business strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  color: var(--text-100);
  margin-bottom: 4px;
}
.footer-business a {
  color: var(--text-100);
  font-weight: 700;
}
.footer-business a:hover { color: var(--purple-400); }
.footer-dealer-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-300);
}
.footer-dealer-note strong { color: var(--text-100); }

.footer-disclaimer {
  background: rgba(139, 61, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--purple-500);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: var(--text-400);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-disclaimer strong { color: var(--text-200); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-500);
  font-size: 13px;
}

/* ============ FLOATING CALL ============ */
.floating-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: var(--gradient-call);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  box-shadow: var(--shadow-glow-green), 0 10px 30px -5px rgba(0,0,0,0.5);
  transition: transform .3s var(--ease-bounce);
}
.floating-call:hover { transform: translateY(-3px) scale(1.05); }
.floating-call svg { width: 22px; height: 22px; }
.floating-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  background: var(--call-green);
  opacity: 0.4;
  z-index: -1;
  animation: pulseRing 2s ease-out infinite;
}

/* ============ MOBILE STICKY BOTTOM ============ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 195;
  background: rgba(6, 4, 20, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-strong);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-sticky a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gradient-call);
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-glow-green);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse > div:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .hero-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .floating-call { display: none; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 80px; }
  .header-cta .tel-num { display: none; }
  .logo-tag { display: none; }
  .btn-call-mega { width: 100%; justify-content: center; }
  .feature-visual { aspect-ratio: 1.4; padding: 30px; }
  .feature-visual-icon { width: 100px; height: 100px; }
  .feature-visual-icon svg { width: 50px; height: 50px; }
}
