/* g410/hero-home — design "hero" de la home (bundle standalone) */

.hero {
    --he-ink: var(--ink, #00202f);
    --he-ink-3: var(--ink-3, #0f4763);
    --he-blue: var(--blue, #359ee0);
    --he-blue-deep: var(--blue-deep, #1f4a7e);
    --he-blue-soft: var(--blue-soft, #e7f3fc);
    --he-blue-line: var(--blue-line, #cfe5f6);
    --he-line: var(--line, #e7ebee);
    --he-muted: var(--muted, #5a6b76);
    --he-radius-lg: var(--radius-lg, 22px);
    --he-radius-xl: var(--radius-xl, 28px);
    --he-shadow: var(--shadow, 0 10px 30px -14px rgba(0, 32, 47, .22), 0 2px 6px rgba(0, 32, 47, .06));
    --he-shadow-lg: var(--shadow-lg, 0 30px 60px -28px rgba(0, 32, 47, .35), 0 8px 20px -10px rgba(0, 32, 47, .12));
    --he-display: var(--font-display, "Manrope", ui-sans-serif, system-ui, sans-serif);

    position: relative;
    background: #fff;
    padding: 56px 0 40px;
    overflow: hidden;
    color: var(--he-ink);
}
.hero > .container,
.hero .hero-grid {
    max-width: var(--container-width, 1240px);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.hero .hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--he-blue-soft);
    color: var(--he-blue-deep);
    border: 1px solid var(--he-blue-line);
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero-kicker .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--he-blue);
    box-shadow: 0 0 0 4px rgba(53, 158, 224, .18);
    animation: g410-pulse 2.6s ease-in-out infinite;
    flex: none;
}
@keyframes g410-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(53, 158, 224, .18); }
    50% { box-shadow: 0 0 0 7px rgba(53, 158, 224, .05); }
}

.hero h1 {
    font-family: var(--he-display);
    font-size: clamp(40px, 5.6vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0;
    color: var(--he-ink);
    text-wrap: balance;
}
.hero h1 .line { display: block; }
.hero h1 .accent {
    font-style: italic;
    font-weight: 500;
    color: var(--he-blue-deep);
}
.hero h1 .accent .punchy {
    background: linear-gradient(180deg, transparent 64%, rgba(53, 158, 224, .28) 64%);
    padding: 0 .06em;
}

.hero-sub {
    font-size: 19px;
    color: var(--he-muted);
    max-width: 540px;
    margin: 20px 0 32px;
    line-height: 1.55;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    box-sizing: border-box;
    white-space: nowrap;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.hero .btn-primary {
    background: var(--he-ink);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(0, 32, 47, .55);
}
.hero .btn-primary:hover {
    background: var(--he-blue-deep);
    transform: translateY(-1px);
}
.hero .btn-primary svg {
    transition: transform .2s ease;
    width: 16px;
    height: 16px;
}
.hero .btn-primary:hover svg { transform: translateX(3px); }
.hero .btn-ghost {
    background: transparent;
    color: var(--he-ink);
    border: 1.5px solid var(--he-ink);
    padding: 11.5px 20.5px;
}
.hero .btn-ghost:hover {
    background: var(--he-ink);
    color: #fff;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--he-line);
    flex-wrap: wrap;
}
.hero-proof .stars {
    color: var(--he-blue);
    letter-spacing: 2px;
    font-size: 13px;
}
.hero-proof span {
    font-size: 13px;
    color: var(--he-muted);
}
.hero-proof strong {
    color: var(--he-ink);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    width: 100%;
}
.hero-card {
    position: relative;
    border-radius: var(--he-radius-xl);
    background:
        radial-gradient(120% 80% at 10% 0%, rgba(53, 158, 224, .18) 0%, transparent 55%),
        linear-gradient(160deg, var(--he-ink) 0%, var(--he-ink-3) 100%);
    box-shadow: var(--he-shadow-lg);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    width: 100%;
}
.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(120% 80% at 60% 30%, black, transparent 70%);
    mask-image: radial-gradient(120% 80% at 60% 30%, black, transparent 70%);
    pointer-events: none;
}
.hero-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
}
.hero-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--he-blue);
    box-shadow: 0 0 10px var(--he-blue);
    flex: none;
}
.hero-card .hero-image,
.hero-card .hero-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}
.hero-card .hero-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6%;
}
.hero-card .hero-placeholder .hero-car {
    width: 88%;
    max-width: 100%;
}
.hero-car {
    width: 100%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .5));
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-radius: var(--he-radius-lg);
    box-shadow: var(--he-shadow);
    margin-top: -28px;
    position: relative;
    z-index: 3;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    grid-column: 1 / -1;
}
.hero-stat {
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid var(--he-line);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
    font-family: var(--he-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--he-ink);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero-stat .v .plus { color: var(--he-blue); }
.hero-stat .l {
    font-size: 11px;
    color: var(--he-muted);
    margin-top: 6px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 960px) {
    .hero .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-visual { margin: 0 auto; max-width: 460px; }
    .hero-stats { width: 100%; }
}
@media (max-width: 480px) {
    .hero-stat { padding: 14px 8px; }
    .hero-stat .v { font-size: 18px; }
    .hero-stat .l { font-size: 10px; }
    .hero h1 { font-size: clamp(32px, 9vw, 48px); }
}
