/* ═══════════════════════════════════════════════════════════
   CAMINOCABS — HOME v3 "DARK EDITION" · sistema de diseño armónico
   ═══════════════════════════════════════════════════════════ */

.ccv2 *, .ccv2 *::before, .ccv2 *::after { box-sizing: border-box; }

body.cc-home-v2 {
  --v2-bg: #0a1018;
  --v2-bg-2: #0d1522;
  --v2-panel: rgba(255, 255, 255, 0.035);
  --v2-line: rgba(255, 255, 255, 0.08);
  --v2-ink: #eef1fa;
  --v2-dim: #a7b0c9;
  --v2-faint: #8d96b4;
  --v2-blue: #5d96af;
  --v2-blue-hi: #7fb8d0;
  --v2-coral: #e94560;
  --v2-coral-hi: #ff6b7d;
  --v2-green: #2ea043;
  --v2-amber: #e8a33d;
  --f-display: 'MuseoModerno', 'Anton', sans-serif;
  --f-body: 'Space Grotesk', 'Montserrat Alternates', sans-serif;

  background: var(--v2-bg);
  color: var(--v2-ink);
  font-family: var(--f-body);
  font-weight: 400;
}

/* ══ Utilidades de ritmo ══ */
.ccv2-wrap { max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.ccv2-sec { padding-top: clamp(4.5rem, 8vw, 7rem); padding-bottom: clamp(4.5rem, 8vw, 7rem); }
.ccv2-head { max-width: 660px; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }
.ccv2-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--v2-coral-hi);
  margin-bottom: 1rem;
}
.ccv2-kicker::before { content: ''; width: 22px; height: 2px; background: var(--v2-coral); }
.ccv2-h2 {
  font-family: var(--f-display) !important;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.01em !important;
  color: var(--v2-ink);
  margin: 0 0 0.9rem;
}
.ccv2-sub { color: var(--v2-dim); font-size: 1.02rem; line-height: 1.7; margin: 0; }

/* ══ Botones (jerarquía única) ══ */
.ccv2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.8rem 1.8rem;
  border-radius: 50px; border: none;
  font-family: var(--f-body);
  font-size: 0.95rem; font-weight: 700; line-height: 1;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.ccv2-btn-coral {
  color: #ffffff;
  background: linear-gradient(135deg, #c93a52, #b3354b);
  box-shadow: 0 12px 32px rgba(201, 58, 82, 0.32);
}
.ccv2-btn-coral:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #b3354b, #9c2f43);
  box-shadow: 0 18px 44px rgba(201, 58, 82, 0.46);
}
.ccv2-btn-ghost {
  color: var(--v2-ink);
  background: transparent;
  border: 1px solid rgba(127, 184, 208, 0.4);
}
.ccv2-btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--v2-blue-hi);
  background: rgba(93, 150, 175, 0.08);
}

/* ══ Grain ══ */
.ccv2-grain {
  position: fixed; inset: -50%; z-index: 60; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: ccv2Grain 8s steps(10) infinite;
}
@keyframes ccv2Grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

/* ══ Preloader ══ */
.ccv2-preloader {
  position: fixed; inset: 0; z-index: 100000; background: var(--v2-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.ccv2-preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.ccv2-preloader-inner { text-align: center; }
.ccv2-preloader-inner img {
  width: 72px; height: 72px; border-radius: 18px;
  animation: ccv2Pulse 1.2s ease-in-out infinite;
}
@keyframes ccv2Pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(93, 150, 175, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(93, 150, 175, 0); }
}
.ccv2-preloader-word {
  margin-top: 1.1rem;
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: 0.3em; padding-left: 0.3em;
  color: var(--v2-ink);
}
.ccv2-preloader-bar {
  width: 180px; height: 2px; margin: 1rem auto 0;
  background: rgba(255, 255, 255, 0.1); overflow: hidden;
}
.ccv2-preloader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--v2-blue), var(--v2-coral));
  animation: ccv2Bar 0.9s ease forwards;
}
@keyframes ccv2Bar { to { width: 100%; } }

/* ══ Header oscuro (solo home) ══ */
body.cc-home-v2 .cc-site-header { background: transparent; }
body.cc-home-v2 .cc-header-bar {
  background: rgba(10, 16, 24, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-line);
}
body.cc-home-v2 .cc-site-header.cc-scrolled .cc-header-bar { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5); }
body.cc-home-v2 .cc-nav-link { color: var(--v2-ink); }
body.cc-home-v2 .cc-nav-link:hover,
body.cc-home-v2 .cc-nav-item:hover > .cc-nav-link { color: var(--v2-coral-hi); }
body.cc-home-v2 .cc-dropdown {
  background: #101826;
  border: 1px solid var(--v2-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}
body.cc-home-v2 .cc-dropdown-link { color: var(--v2-ink); }
body.cc-home-v2 .cc-dropdown-link:hover { background: rgba(93, 150, 175, 0.12); color: var(--v2-blue-hi); }
body.cc-home-v2 .cc-mobile-drawer {
  background: #0d1522;
  border-bottom: 1px solid var(--v2-line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
body.cc-home-v2 .cc-mobile-link { color: var(--v2-ink); }
body.cc-home-v2 .cc-mobile-link:hover { color: var(--v2-coral-hi); }

/* ══ Footer oscuro (solo home) ══ */
body.cc-home-v2 .cc-footer {
  background: #0b111c;
  border-top: 1px solid var(--v2-line);
  color: rgba(238, 241, 250, 0.8);
}
body.cc-home-v2 .cc-footer ul li a,
body.cc-home-v2 .cc-footer a { color: rgba(238, 241, 250, 0.8); }
body.cc-home-v2 .cc-footer ul li a:hover,
body.cc-home-v2 .cc-footer a:hover { color: #ffffff; }
body.cc-home-v2 .cc-footer-bottom { border-top-color: var(--v2-line); color: rgba(238, 241, 250, 0.55); }
body.cc-home-v2 .cc-footer-email { color: #ffffff !important; }
body.cc-home-v2 .cc-footer-logo img { opacity: 0.95; }

/* ══ Cookie popup oscuro (solo home) ══ */
body.cc-home-v2 #cc-cookie-popup {
  background: #101826;
  border: 1px solid var(--v2-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
body.cc-home-v2 #cc-cookie-popup h3,
body.cc-home-v2 #cc-cookie-popup .cc-popup-title { color: #ffffff; }
body.cc-home-v2 #cc-cookie-popup p { color: var(--v2-dim); }
body.cc-home-v2 .cc-decline { background: #1c2434; color: #fff; }
body.cc-home-v2 .cc-toggle-label strong { color: #fff; }
body.cc-home-v2 .cc-toggle-label span { color: var(--v2-faint); }
body.cc-home-v2 #cc-config-panel { border-top-color: var(--v2-line); }

/* ══ HERO ══ */
.ccv2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4.8rem 0 4.2rem;
  overflow: hidden;
  background:
    radial-gradient(1100px 560px at 12% -8%, rgba(93, 150, 175, 0.22), transparent 60%),
    radial-gradient(860px 480px at 95% 108%, rgba(233, 69, 96, 0.14), transparent 60%),
    linear-gradient(180deg, #0a1018 0%, #0d1522 100%);
}
.ccv2-hero-aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(420px 420px at 70% 30%, rgba(93, 150, 175, 0.14), transparent 70%),
    radial-gradient(300px 300px at 20% 75%, rgba(233, 69, 96, 0.1), transparent 70%);
  animation: ccv2Aurora 11s ease-in-out infinite alternate;
}
@keyframes ccv2Aurora {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -30px, 0) scale(1.12); }
}
.ccv2-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  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: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 10%, transparent 75%);
}
.ccv2-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 4rem;
  align-items: center;
}
.ccv2-hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(127, 184, 208, 0.35);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-blue-hi);
  background: rgba(93, 150, 175, 0.08);
  margin-bottom: 1.1rem;
}
.ccv2-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--v2-coral);
  animation: ccv2Blink 2s ease-in-out infinite;
}
@keyframes ccv2Blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.ccv2-hero h1 {
  font-family: var(--f-display) !important;
  font-size: clamp(2.9rem, 5.6vw, 4.9rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.015em !important;
  color: var(--v2-ink);
  margin: 0 0 1.1rem;
}
.ccv2-hero h1 .ccv2-coral {
  background: linear-gradient(92deg, #ff6b7d 0%, #e94560 55%, #ff8a5c 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ccv2-hero-desc {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--v2-dim);
  max-width: 520px;
  margin: 0 0 1.4rem;
}
.ccv2-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.7rem; }
.ccv2-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--v2-line);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--v2-dim);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.ccv2-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--v2-blue); }
.ccv2-chip:hover { border-color: rgba(127, 184, 208, 0.4); color: var(--v2-ink); }
.ccv2-hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.ccv2-store { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.ccv2-store-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--v2-faint);
}
.ccv2-store-badges { display: flex; gap: 0.7rem; }
.ccv2-store-badges a {
  display: inline-flex; border-radius: 12px; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ccv2-store-badges a:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5); }
.ccv2-store-badges img { display: block; width: 148px; height: 56px; }

/* Visual */
.ccv2-hero-visual { position: relative; display: flex; justify-content: center; }
.ccv2-phone-glow {
  position: absolute; inset: -12%;
  background:
    radial-gradient(circle at 50% 45%, rgba(127, 184, 208, 0.40), transparent 58%),
    radial-gradient(circle at 62% 60%, rgba(233, 69, 96, 0.14), transparent 70%);
  filter: blur(12px);
  animation: ccv2Glow 7s ease-in-out infinite alternate;
}
@keyframes ccv2Glow {
  from { opacity: 0.8; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1.05); }
}
.ccv2-phone {
  position: relative;
  width: min(300px, 62%);
  height: auto;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 26px rgba(93, 150, 175, 0.22));
  animation: ccv2Float 7s ease-in-out infinite;
}
@keyframes ccv2Float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.ccv2-float {
  position: absolute;
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(16, 24, 38, 0.82);
  border: 1px solid var(--v2-line);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: ccv2Float 6s ease-in-out infinite;
  z-index: 3;
}
.ccv2-float-1 { top: 12%; left: -2%; animation-delay: 0.4s; }
.ccv2-float-2 { top: 40%; right: -6%; animation-delay: 1.1s; }
.ccv2-float-3 { bottom: 10%; left: 4%; animation-delay: 1.8s; }
.ccv2-float-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
}
.ccv2-ic-blue { background: rgba(93, 150, 175, 0.18); color: var(--v2-blue-hi); }
.ccv2-ic-coral { background: rgba(233, 69, 96, 0.16); color: var(--v2-coral-hi); }
.ccv2-ic-green { background: rgba(46, 160, 67, 0.16); color: #4ecb6f; }
.ccv2-ic-amber { background: rgba(232, 163, 61, 0.14); color: #f0b85f; }
.ccv2-float-info { display: flex; flex-direction: column; line-height: 1.25; }
.ccv2-float-info small { font-size: 0.68rem; color: var(--v2-faint); letter-spacing: 0.06em; }
.ccv2-float-info strong { font-size: 0.85rem; color: var(--v2-ink); font-weight: 600; }

.ccv2-scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px; z-index: 3;
}
.ccv2-scroll-hint span {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; border-radius: 3px; background: var(--v2-coral);
  animation: ccv2Scroll 1.8s ease-in-out infinite;
}
@keyframes ccv2Scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ══ Marquee ══ */
.ccv2-marquee {
  overflow: hidden;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #0c131f;
  padding: 1.05rem 0;
}
.ccv2-marquee-track {
  display: flex; align-items: center; gap: 2.6rem;
  width: max-content;
  animation: ccv2Marquee 30s linear infinite;
}
.ccv2-marquee:hover .ccv2-marquee-track { animation-play-state: paused; }
@keyframes ccv2Marquee { to { transform: translateX(-50%); } }
.ccv2-marquee span {
  font-family: var(--f-display);
  font-size: 1.45rem; font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(238, 241, 250, 0.5);
  white-space: nowrap;
}
.ccv2-marquee i { font-style: normal; color: var(--v2-coral); font-size: 0.95rem; opacity: 0.85; }

/* ══ Stats band ══ */
.ccv2-stats {
  border-bottom: 1px solid var(--v2-line);
  background: rgba(255, 255, 255, 0.015);
}
.ccv2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: clamp(2.6rem, 5vw, 4rem) 2rem;
}
.ccv2-stat { text-align: center; }
.ccv2-stat + .ccv2-stat { border-left: 1px solid var(--v2-line); }
.ccv2-stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--v2-ink);
}
.ccv2-stat-num em {
  font-style: normal;
  background: linear-gradient(92deg, var(--v2-coral-hi), var(--v2-coral));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ccv2-stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--v2-faint);
}

/* ══ Features ══ */
.ccv2-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.ccv2-card {
  position: relative;
  display: flex; flex-direction: column; gap: 0.85rem;
  padding: 2rem 1.7rem;
  border-radius: 20px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line);
  color: var(--v2-ink);
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
.ccv2-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--v2-blue), var(--v2-coral));
  opacity: 0; transition: opacity 0.35s ease;
}
.ccv2-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 184, 208, 0.35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.ccv2-card:hover::before { opacity: 1; }
.ccv2-card-num {
  position: absolute; top: 1.4rem; right: 1.5rem;
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.34);
}
.ccv2-card-icon {
  display: flex; width: 50px; height: 50px;
  border-radius: 14px; align-items: center; justify-content: center;
  margin-bottom: 0.2rem;
}
.ccv2-card h3 {
  font-size: 1.12rem; font-weight: 700;
  line-height: 1.32; margin: 0;
  color: var(--v2-ink);
}
.ccv2-card-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--v2-blue-hi);
}
.ccv2-card p {
  font-size: 0.88rem; line-height: 1.65;
  color: var(--v2-dim);
  margin: 0;
}
.ccv2-card-stat {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.42rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--v2-coral-hi);
  background: rgba(233, 69, 96, 0.1);
  border: 1px solid rgba(233, 69, 96, 0.22);
  letter-spacing: 0.02em;
}

/* ══ Steps ══ */
.ccv2-steps-band {
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: linear-gradient(180deg, rgba(93, 150, 175, 0.05), transparent 60%);
}
.ccv2-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.ccv2-step {
  position: relative;
  padding: 2.2rem 1.9rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--v2-line);
  background: var(--v2-panel);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ccv2-step:hover { border-color: rgba(127, 184, 208, 0.35); transform: translateY(-4px); }
.ccv2-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px;
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 900;
  color: var(--v2-ink);
  background: linear-gradient(135deg, rgba(93, 150, 175, 0.35), rgba(93, 150, 175, 0.08));
  border: 1px solid rgba(127, 184, 208, 0.35);
  margin-bottom: 1.3rem;
}
.ccv2-step h3 {
  font-size: 1.18rem; font-weight: 700; color: var(--v2-ink);
  margin: 0 0 0.75rem;
}
.ccv2-step p { font-size: 0.92rem; line-height: 1.68; color: var(--v2-dim); margin: 0; }
.ccv2-center { display: flex; justify-content: center; margin-top: 3.2rem; }

/* ══ Drivers ══ */
.ccv2-driver-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
  padding: 2.4rem 2.6rem;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(233, 69, 96, 0.14), rgba(93, 150, 175, 0.1));
  border: 1px solid rgba(233, 69, 96, 0.3);
}
.ccv2-driver-cta p {
  font-size: 1.28rem; font-weight: 700; color: var(--v2-ink); margin: 0;
}

/* ══ App CTA ══ */
.ccv2-cta {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 9vw, 7.5rem) 2rem;
  overflow: hidden;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: radial-gradient(640px 320px at 50% 0%, rgba(93, 150, 175, 0.2), transparent 70%),
    linear-gradient(180deg, #0d1522, #0a1018);
}
.ccv2-cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(300px 300px at 50% 110%, rgba(233, 69, 96, 0.16), transparent 70%);
}
.ccv2-cta h2 {
  font-family: var(--f-display) !important;
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.01em !important;
  color: var(--v2-ink);
  margin: 0 0 1.1rem;
}
.ccv2-cta p {
  color: var(--v2-dim); font-size: 1.05rem; line-height: 1.7;
  max-width: 520px; margin: 0 auto 2.4rem;
}
.ccv2-cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; position: relative; }
.ccv2-cta-actions a { display: inline-flex; border-radius: 12px; overflow: hidden; transition: transform 0.25s ease; }
.ccv2-cta-actions a:hover { transform: translateY(-3px); }
.ccv2-cta-actions img { display: block; width: 148px; height: 56px; }

/* ══ Blog ══ */
.ccv2-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.ccv2-blog-card {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: 1.5rem 1.5rem 1.9rem;
  border-radius: 20px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line);
  text-decoration: none;
  color: var(--v2-ink);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.ccv2-blog-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--v2-line);
  margin: -0.2rem 0 0.3rem;
}
.ccv2-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 184, 208, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.ccv2-blog-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--v2-coral-hi);
}
.ccv2-blog-card h3 {
  font-size: 1.1rem; font-weight: 700; line-height: 1.32;
  color: var(--v2-ink); margin: 0;
}
.ccv2-blog-card p { font-size: 0.88rem; line-height: 1.66; color: var(--v2-dim); margin: 0; }

/* ══ SEO block ══ */
.ccv2-seo { border-top: 1px solid var(--v2-line); background: #0b111c; }
.ccv2-seo-inner { max-width: 800px; margin: 0 auto; padding: clamp(4rem, 7vw, 6rem) 2rem; }
.ccv2-seo h2 {
  font-family: var(--f-display) !important;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.1;
  color: var(--v2-ink);
  margin-bottom: 1.6rem;
}
.ccv2-seo p { font-size: 0.95rem; line-height: 1.75; color: var(--v2-dim); margin-bottom: 1.1rem; }
.ccv2-seo a { color: var(--v2-blue-hi); text-decoration: underline; text-underline-offset: 3px; }
.ccv2-seo a:hover { color: var(--v2-coral-hi); }

/* ══ Reveal ══ */
.ccv2-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.ccv2-reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ Responsive ══ */
@media (max-width: 1100px) {
  .ccv2-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ccv2-hero-content { grid-template-columns: 1fr; gap: 3.5rem; }
  .ccv2-hero { padding-top: 6rem; min-height: auto; }
  .ccv2-hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .ccv2-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .ccv2-stat + .ccv2-stat { border-left: none; }
}
@media (max-width: 720px) {
  .ccv2-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .ccv2-chip { justify-content: center; text-align: center; padding: 0.5rem 0.6rem; }
  .ccv2-wrap { padding-left: 1.4rem; padding-right: 1.4rem; }
  .ccv2-sec { padding-top: 4rem; padding-bottom: 4rem; }
  .ccv2-hero { padding: 4rem 0 3.5rem; }
  .ccv2-hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem) !important; }
  .ccv2-steps, .ccv2-blog-grid, .ccv2-grid-4 { grid-template-columns: 1fr; }
  .ccv2-float-1 { left: -2%; }
  .ccv2-float-2 { right: -2%; }
  .ccv2-marquee span { font-size: 1.2rem; }
  .ccv2-driver-cta { flex-direction: column; text-align: center; }
  .ccv2-hero-actions { flex-direction: column; align-items: stretch; gap: 0.9rem; width: 100%; }
  .ccv2-hero-actions .ccv2-btn { width: 100%; white-space: normal; text-align: center; }
}

/* ══ Reduced motion ══ */
@media (max-width: 380px) {
  .ccv2-store-badges, .ccv2-cta-actions { flex-direction: column; align-items: center; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ccv2-hero-aurora, .ccv2-phone-glow, .ccv2-phone, .ccv2-float,
  .ccv2-marquee-track, .ccv2-scroll-hint span, .ccv2-grain,
  .ccv2-preloader-inner img, .ccv2-preloader-bar span, .ccv2-dot {
    animation: none !important;
  }
  .ccv2-reveal { opacity: 1; transform: none; transition: none; }
}
.ccv2-hero-prices { margin-top: 1rem; font-size: 0.92rem; color: var(--v2-dim); }
.ccv2-hero-prices strong { color: var(--v2-text); font-family: var(--v2-display, inherit); }
.ccv2-hero-prices a { color: var(--v2-blue, #5d96af); font-weight: 700; text-decoration: underline; }
.ccv2-hero-social { margin: 0.7rem 0 1.1rem; font-size: 0.9rem; color: var(--v2-dim); }
.ccv2-hero-social .ccv2-stars { color: #f5b301; letter-spacing: 0.1em; }
.ccv2-hero-social a { color: var(--v2-blue, #5d96af); font-weight: 600; text-decoration: underline; font-style: italic; }
.ccv2-btn-ghost { background: transparent; border: 2px solid var(--v2-line, rgba(255,255,255,0.25)); color: var(--v2-text, #fff) !important; }
.ccv2-btn-wa { background: #25D366; color: #fff !important; }
.ccv2-faq { border-bottom: 1px solid var(--v2-line, rgba(255,255,255,0.12)); }
.ccv2-faq summary { padding: 1.1rem 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ccv2-faq summary::-webkit-details-marker { display: none; }
.ccv2-faq summary::after { content: '+'; font-size: 1.2rem; color: var(--v2-dim); }
.ccv2-faq[open] summary::after { content: '−'; }
.ccv2-faq p { font-size: 0.9rem; line-height: 1.7; color: var(--v2-dim); padding-bottom: 1.1rem; }
.ccv2-faq a { color: var(--v2-blue, #5d96af); text-decoration: underline; }
