:root {
    --deep-dark: #00162D;
    --green-brand: #86FAB0;
    --green-cta: #25D366;
    --blue-accent: #006492;
    --blue-brand: #2E96DC;
    --blue-brand-light: #6EC4F2;
    --blue-brand-dark: #1E70B5;
    --blue-glow: rgba(110, 196, 242, 0.38);
    --blue-glow-strong: rgba(46, 150, 220, 0.45);
    --ivv-dark-gradient:
        linear-gradient(122deg, rgb(0, 22, 45) 6%, rgba(30, 112, 181, 0.86) 44%, rgba(46, 150, 220, 0.65) 85%),
        radial-gradient(circle at 18% 32%, rgba(46, 150, 220, 0.42), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(110, 196, 242, 0.34), transparent 34%);
    --bg-light: #F7F9FB;
    --text-dark: #191C1E;
    --text-medium: #43474D;
    --footer-dark: #000A1A;
    --ivv-border: rgba(0, 22, 45, 0.12);
    --ivv-shadow: 0 22px 60px rgba(0, 22, 45, 0.12);
    --card-bg: rgba(255, 255, 255, 0.72);
    --card-bg-strong: rgba(255, 255, 255, 0.92);
    --card-border: rgba(221, 234, 240, 0.75);
    --card-shadow: 0 18px 21px rgba(0, 18, 31, 0.16);
    --card-shadow-soft: 0 14px 15px rgba(0, 15, 26, 0.1);
    --text-on-dark-92: rgba(207, 228, 234, 0.92);
    --text-dark-92: rgba(25, 28, 30, 0.92);
    --green-glow: rgba(197, 253, 217, 0.38);
    --green-glow-strong: rgba(94, 255, 209, 0.38);
    --separator-soft: #e0e3e5;
    --input-border: #c4c6ce;
    --warning-bg: #ffdad6;
    --warning-text: #8a1d14;
    --badge-green: #86fab0;
    --easing-emphasized: cubic-bezier(0.2, 0.9, 0.3, 1);
    --easing-out: cubic-bezier(0.16, 1, 0.3, 1);
    --easing-out-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====================================================================
   ANIMATION SYSTEM
   - Reveal-on-scroll via IntersectionObserver (added by frontend.js)
   - All .ivv-reveal elements start hidden; .ivv-revealed makes them visible
   - Respects prefers-reduced-motion
   ==================================================================== */

@keyframes ivvFadeUp {
    from { opacity: 0; transform: translate3d(0, 28px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ivvFadeDown {
    from { opacity: 0; transform: translate3d(0, -28px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ivvFadeLeft {
    from { opacity: 0; transform: translate3d(-32px, 0, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ivvFadeRight {
    from { opacity: 0; transform: translate3d(32px, 0, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ivvScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes ivvFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ivvFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@keyframes ivvPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.06); opacity: 0.85; }
}
@keyframes ivvShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes ivvSpin {
    to { transform: rotate(360deg); }
}
@keyframes ivvBounceIn {
    0%   { opacity: 0; transform: scale(0.3); }
    50%  { opacity: 1; transform: scale(1.08); }
    70%  { transform: scale(0.96); }
    100% { transform: scale(1); }
}

.ivv-reveal { will-change: opacity, transform; }
.ivv-reveal.ivv-hidden-start { opacity: 0 !important; }
.ivv-reveal.ivv-revealed.ivv-anim-fade-up    { animation: ivvFadeUp 0.8s var(--easing-out) both; }
.ivv-reveal.ivv-revealed.ivv-anim-fade-down  { animation: ivvFadeDown 0.8s var(--easing-out) both; }
.ivv-reveal.ivv-revealed.ivv-anim-fade-left  { animation: ivvFadeLeft 0.8s var(--easing-out) both; }
.ivv-reveal.ivv-revealed.ivv-anim-fade-right { animation: ivvFadeRight 0.8s var(--easing-out) both; }
.ivv-reveal.ivv-revealed.ivv-anim-scale-in   { animation: ivvScaleIn 0.7s var(--easing-emphasized) both; }
.ivv-reveal.ivv-revealed.ivv-anim-fade-in    { animation: ivvFadeIn 0.9s var(--easing-out-soft) both; }
.ivv-reveal.ivv-revealed.ivv-anim-bounce-in  { animation: ivvBounceIn 0.9s var(--easing-emphasized) both; }

/* Stagger delays (use with data-ivv-stagger="N" on parent to auto-assign) */
.ivv-stagger > * { animation-delay: 0ms; }
.ivv-stagger > *:nth-child(1)  { animation-delay: 60ms; }
.ivv-stagger > *:nth-child(2)  { animation-delay: 120ms; }
.ivv-stagger > *:nth-child(3)  { animation-delay: 180ms; }
.ivv-stagger > *:nth-child(4)  { animation-delay: 240ms; }
.ivv-stagger > *:nth-child(5)  { animation-delay: 300ms; }
.ivv-stagger > *:nth-child(6)  { animation-delay: 360ms; }
.ivv-stagger > *:nth-child(7)  { animation-delay: 420ms; }
.ivv-stagger > *:nth-child(8)  { animation-delay: 480ms; }
.ivv-stagger > *:nth-child(9)  { animation-delay: 540ms; }
.ivv-stagger > *:nth-child(10) { animation-delay: 600ms; }
.ivv-stagger > *:nth-child(11) { animation-delay: 660ms; }
.ivv-stagger > *:nth-child(12) { animation-delay: 720ms; }

/* ====================================================================
   MICRO-INTERACTIONS
   ==================================================================== */

.ivv-button {
    transition: transform 0.2s var(--easing-out), box-shadow 0.2s var(--easing-out), filter 0.2s var(--easing-out);
}
.ivv-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.ivv-button:active { transform: translateY(0); filter: brightness(0.96); }

.ivv-button-primary {
    position: relative;
    overflow: hidden;
}
.ivv-button-primary::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    background-size: 200% 100%;
    content: "";
    height: 100%;
    left: -100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: left 0.55s var(--easing-out);
    width: 100%;
}
.ivv-button-primary:hover::after { left: 100%; }

.ivv-glass-card,
.ivv-vehicle-card,
.ivv-resource-card,
.ivv-testimonial-card,
.ivv-error-card,
.ivv-info-stack > article {
    transition: transform 0.35s var(--easing-out), box-shadow 0.35s var(--easing-out), border-color 0.35s var(--easing-out);
}
.ivv-glass-card:hover,
.ivv-vehicle-card:hover,
.ivv-resource-card:hover,
.ivv-testimonial-card:hover,
.ivv-error-card:hover,
.ivv-info-stack > article:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -12px rgba(0, 18, 31, 0.18);
    border-color: var(--blue-glow);
}

.ivv-process-card {
    transition: transform 0.4s var(--easing-out), box-shadow 0.4s var(--easing-out), border-color 0.4s var(--easing-out);
}
.ivv-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 196, 242, 0.65);
    box-shadow: 0 24px 50px -10px rgba(0, 18, 31, 0.35);
}

.ivv-icon-square {
    transition: transform 0.3s var(--easing-emphasized), box-shadow 0.3s var(--easing-out);
}
.ivv-glass-card:hover .ivv-icon-square { transform: scale(1.08) rotate(-4deg); }
.ivv-vehicle-content img,
.ivv-resource-image img,
.ivv-image-panel img {
    transition: transform 0.5s var(--easing-out);
}
.ivv-vehicle-card:hover .ivv-vehicle-content img,
.ivv-resource-card:hover .ivv-resource-image img,
.ivv-image-panel:hover img { transform: scale(1.05); }

.ivv-eyebrow {
    transition: transform 0.3s var(--easing-out), box-shadow 0.3s var(--easing-out);
}
.ivv-section-copy,
.ivv-lead,
.ivv-info-stack > article p,
.ivv-vehicle-content li,
.ivv-testimonial-card blockquote {
    transition: color 0.25s var(--easing-out);
}

.ivv-section-head a {
    transition: transform 0.2s var(--easing-out), color 0.2s var(--easing-out);
}
.ivv-section-head a:hover { transform: translateX(3px); }
.ivv-section-head-arrow { transition: transform 0.2s var(--easing-out); }
.ivv-section-head a:hover .ivv-section-head-arrow { transform: translateX(4px); }

.ivv-form-submit {
    transition: transform 0.18s var(--easing-out), box-shadow 0.18s var(--easing-out), filter 0.18s var(--easing-out);
}
.ivv-form-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 22px rgba(20, 184, 77, 0.36); filter: brightness(1.05); }
.ivv-form-submit:active { transform: translateY(0); box-shadow: 0 8px 12px rgba(20, 184, 77, 0.32); }

.ivv-calculator-input-wrap {
    transition: box-shadow 0.2s var(--easing-out), transform 0.2s var(--easing-out);
}
.ivv-calculator-input-wrap:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 22, 45, 0.18); }
.ivv-calculator-input-wrap:focus-within { transform: translateY(-1px); }

.ivv-calculator-card {
    transition: transform 0.4s var(--easing-out);
}
.ivv-calculator-card:hover { transform: translateY(-2px); }

.ivv-image-panel {
    transition: transform 0.4s var(--easing-out);
}
.ivv-image-panel:hover { transform: translateY(-4px); }

/* Hero ambient motion */
.ivv-hero::before {
    animation: ivvFloat 8s ease-in-out infinite;
}

/* Section title underline accent */
.ivv-section h2,
.ivv-footer h2,
.ivv-testimonial-name {
    position: relative;
    display: inline-block;
}
.ivv-section h2::after,
.ivv-footer h2::after {
    background: linear-gradient(90deg, var(--blue-brand), var(--blue-brand-light));
    border-radius: 2px;
    bottom: -10px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.5s var(--easing-out) 0.2s;
    width: 64px;
}
.ivv-section.ivv-revealed h2::after,
.ivv-section.ivv-revealed .ivv-footer h2::after { transform: scaleX(1); }
.ivv-section.ivv-center h2::after { left: 50%; transform: translateX(-50%) scaleX(0); }
.ivv-section.ivv-revealed.ivv-center h2::after { transform: translateX(-50%) scaleX(1); }

/* Brand badge subtle pulse (hero eyebrow) */
.ivv-eyebrow.ivv-revealed {
    animation: ivvBounceIn 0.7s var(--easing-emphasized) 0.1s both, ivvFloat 5s ease-in-out 1.5s infinite;
}

/* CTA primary subtle attention pulse (only on first render) */
.ivv-button-primary.ivv-revealed.ivv-anim-bounce-in {
    animation: ivvBounceIn 0.7s var(--easing-emphasized) 0.4s both, ivvPulse 2.4s ease-in-out 1.2s infinite;
}

/* Calculator number tick animation */
.ivv-calculator-inner dd,
.ivv-calculator-inner dt {
    transition: color 0.2s var(--easing-out);
}

/* Reduced motion: kill animations */
@media (prefers-reduced-motion: reduce) {
    .ivv-reveal,
    .ivv-reveal.ivv-revealed,
    .ivv-reveal.ivv-revealed[class*="ivv-anim-"] { animation: none !important; opacity: 1 !important; transform: none !important; }
    .ivv-glass-card:hover,
    .ivv-vehicle-card:hover,
    .ivv-resource-card:hover,
    .ivv-testimonial-card:hover,
    .ivv-error-card:hover,
    .ivv-info-stack > article:hover,
    .ivv-process-card:hover,
    .ivv-button:hover,
    .ivv-form-submit:hover { transform: none !important; }
}

.ivv-section,
.ivv-footer {
    box-sizing: border-box;
    color: var(--text-dark);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ivv-section *,
.ivv-footer * {
    box-sizing: border-box;
}

.ivv-section {
    padding: clamp(72px, 8vw, 116px) 24px;
}

.ivv-shell {
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.ivv-center {
    text-align: center;
}

.ivv-section h1,
.ivv-section h2,
.ivv-section h3,
.ivv-footer h2,
.ivv-footer h3 {
    color: inherit;
    font-family: "Space Grotesk", "DM Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
}

.ivv-section h1 {
    font-size: clamp(42px, 4.7vw, 54px);
    line-height: 1.08;
    max-width: 760px;
}

.ivv-section h2 {
    font-size: clamp(30px, 3.5vw, 32px);
    line-height: 1.12;
}

.ivv-section h3 {
    font-size: 18px;
    line-height: 1.16;
    margin-bottom: 8px;
}

.ivv-section p,
.ivv-footer p,
.ivv-section li,
.ivv-section a,
.ivv-footer a,
.ivv-section input {
    font-size: 16px;
    line-height: 1.58;
}

.ivv-section-copy,
.ivv-lead {
    color: var(--text-medium);
    margin: 16px auto 0;
    max-width: 768px;
    line-height: 1.45;
}

.ivv-lead {
    font-size: 17px;
}

.ivv-dark,
.ivv-hero,
.ivv-calculator,
.ivv-process,
.ivv-verifier {
    color: #FFFFFF;
}

.ivv-dark .ivv-section-copy,
.ivv-dark .ivv-lead,
.ivv-hero .ivv-section-copy,
.ivv-hero .ivv-lead,
.ivv-footer p,
.ivv-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.ivv-light,
.ivv-lightest,
.ivv-muted {
    background: linear-gradient(180deg, #F7F9FB 0%, #F2F4F6 52%, #F7F9FB 100%);
}

.ivv-lightest {
    background: #FFFFFF;
}

.ivv-muted {
    background: #F2F4F6;
}

.ivv-hero {
    --ivv-hero-image: url("images/hero-ev-colombia.png");
    background:
        radial-gradient(circle at 16% 22%, rgba(46, 150, 220, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(4, 15, 26, 0.88) 0%, rgba(4, 15, 26, 0.56) 35%, rgba(4, 15, 26, 0.06) 70%, rgba(4, 15, 26, 0) 100%),
        linear-gradient(180deg, rgba(0, 13, 26, 0) 50%, #F7F9FB 100%),
        var(--ivv-hero-image);
    background-position: center;
    background-size: cover;
    min-height: clamp(620px, 82vh, 780px);
    padding-bottom: clamp(120px, 14vw, 180px);
    padding-top: clamp(88px, 11vw, 142px);
}

.ivv-hero-grid,
.ivv-two-col {
    align-items: center;
    display: grid;
    gap: clamp(36px, 6vw, 76px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.ivv-hero-grid {
    display: block;
}

.ivv-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 672px;
}

.ivv-hero .ivv-logo {
    display: none;
}

.ivv-logo {
    border-radius: 12px;
    box-shadow: 0 18px 46px rgba(37, 211, 102, 0.18);
    height: 54px;
    object-fit: contain;
    width: 54px;
}

.ivv-eyebrow {
    align-self: flex-start;
    background: rgba(7, 29, 49, 0.78);
    border: 1px solid var(--blue-glow-strong);
    border-radius: 14px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
    padding: 7px 12px;
    text-transform: none;
}

.ivv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.ivv-button {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    text-decoration: none;
}

.ivv-button-primary {
    background: linear-gradient(162deg, var(--green-cta) 8%, var(--green-brand) 92%);
    box-shadow: 0 14px 15px rgba(20, 184, 77, 0.28);
    color: var(--deep-dark);
}

.ivv-button-secondary {
    background: rgba(0, 22, 45, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    color: #FFFFFF;
}

.ivv-hero-bullets {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ivv-hero-bullets li {
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    font-size: 15px;
    gap: 9px;
    line-height: 1.35;
}

.ivv-hero-bullets li::before {
    align-items: center;
    background: var(--green-cta);
    border-radius: 999px;
    color: var(--deep-dark);
    content: "✓";
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 10px;
    font-weight: 700;
    height: 17px;
    justify-content: center;
    width: 17px;
}

.ivv-hero-copy .ivv-lead::after {
    color: rgba(255, 255, 255, 0.9);
    content: "✓ Solo pagas si el trámite es exitoso.\A✓ Proceso legal respaldado ante UPME y DIAN.\A✓ Para compras recientes y hasta 3 años.";
    display: block;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 18px;
    white-space: pre-line;
}

.ivv-hero-copy:has(.ivv-hero-bullets) .ivv-lead::after {
    display: none;
}

.ivv-hero .ivv-image-panel {
    min-height: 420px;
}

.ivv-image-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.ivv-image-panel img {
    display: block;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    width: 100%;
}

.ivv-glass-card,
.ivv-calculator-card,
.ivv-process-card,
.ivv-testimonial-card,
.ivv-error-card,
.ivv-resource-card,
.ivv-vehicle-card,
.ivv-form,
.ivv-info-stack > article {
    backdrop-filter: blur(8px);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.ivv-card-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.ivv-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ivv-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ivv-errors .ivv-card-grid,
.ivv-errors .ivv-four,
.ivv-errors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}

.ivv-glass-card,
.ivv-error-card,
.ivv-testimonial-card {
    min-height: 100%;
    padding: 25px;
    text-align: left;
}

.ivv-icon-chip,
.ivv-process-card span,
.ivv-testimonial-card > span {
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.16), rgba(0, 100, 146, 0.16));
    border-radius: 12px;
    color: var(--blue-accent);
    display: inline-flex;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    margin-bottom: 16px;
    width: 48px;
}

.ivv-icon-square {
    align-items: center;
    border-radius: 18px;
    display: inline-flex;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    height: 64px;
    justify-content: center;
    margin-bottom: 16px;
    width: 64px;
}

.ivv-icon-square i {
    font-size: 28px;
    line-height: 1;
}

.ivv-icon-square.ivv-icon-red {
    background: linear-gradient(135deg, #071d31 0%, #2b1420 100%);
    border: 1px solid rgba(255, 139, 155, 0.42);
    box-shadow: 0 16px 17px rgba(0, 13, 23, 0.2);
    color: #FFFFFF;
}

.ivv-icon-square.ivv-icon-teal {
    background: linear-gradient(135deg, #071d31 0%, #073e43 100%);
    border: 1px solid rgba(77, 255, 210, 0.42);
    box-shadow: 0 16px 17px rgba(0, 13, 23, 0.2);
    color: #FFFFFF;
}

.ivv-calculator,
.ivv-process,
.ivv-verifier {
    background: var(--ivv-dark-gradient);
    position: relative;
    overflow: hidden;
}

.ivv-calculator-card {
    background: rgba(6, 26, 47, 0.62);
    border-color: var(--blue-glow);
    color: #FFFFFF;
    padding: 33px;
    box-shadow: 0 18px 21px rgba(0, 18, 31, 0.16);
}

.ivv-calculator-inner {
    background: rgba(7, 28, 49, 0.82);
    border: 1px solid rgba(110, 196, 242, 0.32);
    border-radius: 18px;
    box-shadow: 0 26px 52px -16px rgba(0, 10, 20, 0.34);
    margin: 15px 0 0;
    padding: 24px;
}

.ivv-calculator-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ivv-calculator-image {
    background: linear-gradient(135deg, rgba(3, 24, 39, 0.12) 0%, rgba(110, 196, 242, 0.22) 100%);
    border: 0;
    border-radius: 28px;
    box-shadow: 0 24px 50px -10px rgba(0, 13, 23, 0.28);
    min-height: 320px;
    overflow: hidden;
}

.ivv-calculator-image img {
    border-radius: 28px;
    height: 100%;
    mix-blend-mode: screen;
    object-fit: cover;
}

.ivv-calculator-card label {
    color: rgba(207, 228, 234, 0.92);
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ivv-calculator-card input {
    background: #FFFFFF;
    border: 0;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 16px;
    margin: 0 0 24px;
    padding: 16px;
    width: 100%;
}

.ivv-calculator-input-wrap {
    align-items: center;
    background: #FFFFFF;
    border: 0;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    margin: 0 0 24px;
    padding: 16px;
    transition: box-shadow 0.18s ease;
    width: 100%;
}

.ivv-calculator-input-wrap:focus-within {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.35);
    outline: 0;
}

.ivv-calculator-input-prefix {
    color: var(--text-medium);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    user-select: none;
}

.ivv-calculator-input {
    background: transparent;
    border: 0;
    color: var(--text-dark);
    flex: 1;
    font-size: 16px;
    margin: 0;
    min-width: 0;
    outline: 0;
    padding: 0;
    width: 100%;
}

.ivv-calculator-input::placeholder {
    color: var(--text-medium);
    opacity: 0.7;
}

.ivv-calculator-slider {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    margin: 0 0 24px;
    padding: 18px;
}

.ivv-calculator-slider-head,
.ivv-calculator-slider-range {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.ivv-calculator-slider output {
    color: var(--green-brand);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.ivv-calculator-slider input[type="range"] {
    accent-color: var(--green-cta);
    background: transparent;
    cursor: pointer;
    margin: 16px 0 8px;
    padding: 0;
    width: 100%;
}

.ivv-calculator-slider-range {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 700;
}

.ivv-calculator-card dl {
    display: grid;
    gap: 16px;
    margin: 0;
}

.ivv-calculator-card dl > div {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.ivv-calculator-card dt,
.ivv-calculator-card dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.ivv-total {
    border-top: 1px solid rgba(116, 119, 126, 0.3);
    margin-top: 16px;
    padding-top: 17px;
}

.ivv-total dt,
.ivv-total dd {
    color: #FFFFFF;
    font-weight: 700;
}

.ivv-calc-cap-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
    margin: 8px 0 0;
    text-align: right;
}

.ivv-vehicle-card {
    background: var(--card-bg);
    border-color: var(--card-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    padding: 0;
}

.ivv-vehicle-image {
    aspect-ratio: 16 / 9;
    height: 164px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ivv-vehicle-image img {
    aspect-ratio: auto;
    display: block;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    width: 100%;
}

.ivv-vehicle-image::after {
    background: linear-gradient(180deg, rgba(5, 20, 26, 0) 0%, rgba(5, 20, 26, 0.58) 100%);
    bottom: 0;
    content: "";
    height: 52px;
    left: 0;
    position: absolute;
    right: 0;
}

.ivv-vehicle-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 25px;
}

.ivv-vehicle-category {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    margin-bottom: 8px;
    width: 48px;
}

.ivv-vehicle-category svg {
    height: 24px;
    width: 24px;
}

.ivv-vehicle-content h3 {
    font-size: 24px;
    line-height: 1.12;
    margin: 0 0 4px;
}

.ivv-vehicle-content p {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}

.ivv-vehicle-content ul {
    border-top: 1px solid #C4C6CE;
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 12px 0 0;
    padding: 12px 0 0;
}

.ivv-vehicle-content li {
    color: var(--text-medium);
    display: flex;
    font-size: 16px;
    gap: 8px;
    line-height: 1.4;
}

.ivv-vehicle-content li::before {
    color: var(--green-cta);
    content: "✓";
    flex: 0 0 auto;
    font-weight: 700;
}

.ivv-badge {
    align-self: flex-start;
    background: var(--badge-green);
    border-radius: 12px;
    color: var(--text-medium);
    font-size: 12px;
    font-weight: 700;
    margin-top: auto;
    padding: 4px 12px;
}

.ivv-alert {
    background: var(--warning-bg);
    border-radius: 16px;
    color: var(--warning-text);
    margin: 32px auto 0;
    max-width: 100%;
    padding: 24px;
    text-align: left;
}

.ivv-process,
.ivv-verifier {
    padding: 70px 40px 80px;
}

.ivv-process-shell {
    background: rgba(6, 26, 47, 0.62);
    border: 1px solid var(--blue-glow);
    border-radius: 16px;
    box-shadow: 0 18px 42px -14px rgba(0, 18, 31, 0.28);
    margin: 0 auto;
    max-width: 1200px;
    overflow: clip;
    padding: 0 24px;
    position: relative;
}

.ivv-process-shell .ivv-center {
    padding: 32px 0 48px;
    position: relative;
}

.ivv-process-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
    padding-bottom: 32px;
    position: relative;
}

.ivv-process-grid::before {
    background: var(--input-border);
    content: "";
    height: 2px;
    left: 12.5%;
    position: absolute;
    right: 12.5%;
    top: 20px;
}

.ivv-process-card {
    background: rgba(6, 26, 47, 0.62);
    border: 1px solid var(--blue-glow);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 21px rgba(0, 18, 31, 0.16);
    color: #FFFFFF;
    padding: 41px 25px 25px;
    position: relative;
    text-align: left;
}

.ivv-process-card span {
    align-items: center;
    background: var(--deep-dark);
    border: 4px solid #f2f4f6;
    border-radius: 12px;
    color: #FFFFFF;
    display: inline-flex;
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    left: 24px;
    position: absolute;
    top: -20px;
    width: 40px;
}

.ivv-process-card:last-child span {
    background: #001A0A;
}

.ivv-process-card h3 {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.16;
    margin: 0 0 8px;
}

.ivv-process-card p {
    color: var(--text-on-dark-92);
    font-size: 14px;
    line-height: 1.45;
}

.ivv-info-stack {
    display: grid;
    gap: 18px;
}

.ivv-info-stack > article {
    padding: 26px;
}

.ivv-certificate-image > div {
    background: linear-gradient(180deg, rgba(0, 22, 45, 0.02), rgba(0, 22, 45, 0.55) 58%, rgba(0, 22, 45, 0.86) 100%);
    bottom: 0;
    color: #FFFFFF;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    text-align: left;
}

.ivv-certificate-overlay strong {
    color: #FFFFFF;
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
}

.ivv-certificate-overlay p {
    color: rgba(215, 231, 240, 0.94);
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.ivv-certificate-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.ivv-testimonial-card {
    background: var(--card-bg-strong);
    box-shadow: var(--card-shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ivv-testimonial-stars {
    color: #F5A623;
    display: flex;
    font-size: 15px;
    gap: 3px;
    line-height: 1;
}

.ivv-testimonial-card:not(:has(.ivv-testimonial-stars)) blockquote::before {
    color: #F5A623;
    content: "★★★★★";
    display: block;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 16px;
}

.ivv-testimonial-head {
    align-items: center;
    display: flex;
    gap: 16px;
}

.ivv-testimonial-avatar {
    align-items: center;
    background: #0f2b48;
    border-radius: 12px;
    color: rgb(255 255 255 / 92%);
    display: inline-flex;
    flex: 0 0 48px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.ivv-testimonial-name {
    color: var(--text-dark-92);
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.ivv-testimonial-meta {
    color: var(--text-medium);
    font-size: 12px;
    line-height: 1.3;
    margin: 4px 0 0;
}

.ivv-testimonial-card blockquote {
    color: var(--text-dark-92);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

.ivv-testimonial-footer {
    align-items: center;
    border-top: 1px solid var(--separator-soft);
    color: var(--text-dark-92);
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    margin: auto 0 0;
    padding-top: 17px;
}

.ivv-testimonial-footer strong {
    color: var(--text-dark-92);
    font-weight: 700;
}

.ivv-error-card {
    display: block;
    min-height: 190px;
    padding: 24px;
    text-align: left;
}

.ivv-error-card h3 {
    display: block;
    font-size: 18px;
    line-height: 1.18;
    margin: 0 0 12px;
    max-width: none;
    overflow-wrap: normal;
    text-wrap: balance;
    width: 100%;
}

.ivv-error-card p {
    color: var(--text-medium);
    display: block;
    font-size: 15px;
    line-height: 1.48;
    margin: 0;
    max-width: none;
    width: 100%;
}

.ivv-error-icon {
    color: var(--text-medium);
    flex: 0 0 20px;
    margin-top: 2px;
}

.ivv-error-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.ivv-error-body h3 {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}

.ivv-error-body p {
    color: var(--text-medium);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.ivv-form {
    background: var(--card-bg-strong);
    border-color: rgba(227, 254, 237, 0.87);
    box-shadow: 0 28px 30px rgba(0, 13, 26, 0.3);
    margin: 0 auto;
    max-width: 768px;
    padding: 33px;
}

.ivv-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
}

.ivv-form-grid input {
    background: #F7F9FB;
    border: 1px solid var(--input-border);
    border-radius: 6px;
    color: var(--text-dark-92);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.2;
    min-height: 50px;
    min-width: 0;
    padding: 13px 15px;
    text-overflow: ellipsis;
    width: 100%;
}

.ivv-form-grid input:nth-child(6) {
    grid-column: span 2;
}

.ivv-form-slider {
    background: rgba(247, 249, 251, 0.86);
    border: 1px solid rgba(0, 100, 146, 0.18);
    border-radius: 12px;
    margin: 4px 0 18px;
    padding: 18px 18px 14px;
    text-align: left;
}

.ivv-form-slider-head,
.ivv-form-slider-range {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.ivv-form-slider label {
    color: var(--text-dark-92);
    font-size: 14px;
    font-weight: 700;
}

.ivv-form-slider output {
    color: var(--blue-brand-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.ivv-form-slider input[type="range"] {
    accent-color: var(--green-cta);
    cursor: pointer;
    margin: 16px 0 8px;
    width: 100%;
}

.ivv-form-slider-range {
    color: var(--text-medium);
    font-size: 12px;
    font-weight: 700;
}

.ivv-form-fieldset {
    background: #F7F9FB;
    border: 1px solid rgba(0, 100, 146, 0.18);
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 16px;
}

.ivv-form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ivv-form-row.ivv-form-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ivv-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ivv-form-field label {
    color: var(--text-dark-92);
    font-size: 14px;
    font-weight: 700;
}

.ivv-form-field input,
.ivv-form-field select {
    background: #F7F9FB;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    color: var(--text-dark-92);
    font-family: inherit;
    font-size: 16px;
    min-height: 50px;
    padding: 13px 15px;
    width: 100%;
}

.ivv-form-criteria-title {
    color: #000000 !important;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 24px 0 8px;
}

.ivv-verifier .ivv-form-criteria-title,
.ivv-dark .ivv-form-criteria-title {
    color: #000000 !important;
}

.ivv-form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ivv-form-radio {
    align-items: center;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    padding: 13px;
}

.ivv-form-radio input {
    accent-color: var(--green-cta);
    height: 16px;
    margin: 0;
    width: 16px;
}

.ivv-form-radio-text strong {
    color: var(--text-dark);
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.3;
}

.ivv-form-radio-text span {
    color: var(--text-medium);
    display: block;
    font-size: 12px;
    line-height: 1.3;
}

.ivv-form-consent {
    align-items: center;
    color: var(--text-dark-92);
    display: flex;
    gap: 8px;
    margin: 14px 0 18px;
    text-align: left;
}

.ivv-form-consent input {
    accent-color: var(--green-cta);
    border-radius: 2px;
    height: 16px;
    margin: 0;
    width: 16px;
}

.ivv-form-consent label {
    font-size: 14px;
    line-height: 1.4;
}

.ivv-form-consent span {
    color: var(--text-dark-92);
    font-size: 14px;
    line-height: 1.4;
}

.ivv-form-submit {
    background: linear-gradient(173deg, var(--green-cta) 8%, var(--green-brand) 92%);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 14px 15px rgba(20, 184, 77, 0.28);
    color: var(--text-dark-92);
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-top: 24px;
    min-height: 50px;
    padding: 16px 24px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    width: 100%;
}

.ivv-form-submit:hover {
    box-shadow: 0 18px 22px rgba(20, 184, 77, 0.36);
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.ivv-form-submit:active {
    box-shadow: 0 8px 12px rgba(20, 184, 77, 0.32);
    transform: translateY(0);
}

.ivv-form-divider {
    border-top: 1px solid var(--separator-soft);
    margin-top: 17px;
    padding-top: 16px;
}

.ivv-form-row input,
.ivv-form-row select {
    background: #F7F9FB;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    color: var(--text-dark-92);
    font-size: 16px;
    min-height: 50px;
    padding: 13px 15px;
}

.ivv-section-head {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.ivv-section-head p {
    color: var(--text-medium);
    margin: 10px 0 0;
}

.ivv-section-head a {
    color: var(--text-medium);
    font-weight: 400;
    text-decoration: none;
}

.ivv-section-head-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ivv-section-head-copy p {
    margin: 0;
}

.ivv-section-head-arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.ivv-section-head a:hover .ivv-section-head-arrow {
    transform: translateX(3px);
}

.ivv-resources {
    background: linear-gradient(180deg, #F7F9FB 0%, #F2F4F6 55%, #F7F9FB 100%);
    padding: 80px 40px;
}

.ivv-resource-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(221, 234, 240, 0.75);
    border-radius: 16px;
    box-shadow: 0 16px 17px rgba(0, 18, 31, 0.12);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 410px;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
}

.ivv-resource-image {
    background: #F2F4F6;
    border-radius: 10px;
    flex: 0 0 auto;
    height: 207px;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

.ivv-resource-image img {
    display: block;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    width: 100%;
}

.ivv-resource-card h3 {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.12;
    margin: 0;
    padding: 8px 16px 0;
    width: calc(100% - 32px);
}

.ivv-resource-card p {
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    padding: 0 16px 16px;
    width: calc(100% - 32px);
}

.ivv-footer {
    background: var(--footer-dark);
    color: #FFFFFF;
    padding: 54px 24px 44px;
}

.ivv-footer-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 56px;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    padding-bottom: 32px;
}

.ivv-footer a {
    display: block;
    margin-top: 12px;
    text-decoration: none;
}

.ivv-legal {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 20px;
    padding: 18px;
}

.ivv-copyright {
    margin: 28px auto 0;
    max-width: 1180px;
    text-align: center;
}

@media (max-width: 900px) {
    .ivv-section {
        padding: 64px 18px;
    }

    .ivv-hero-grid,
    .ivv-two-col,
    .ivv-three,
    .ivv-four,
    .ivv-process-grid,
    .ivv-footer-grid {
        grid-template-columns: 1fr;
    }

    .ivv-hero {
        background-position: 58% center;
        min-height: 620px;
        padding-bottom: 120px;
    }

    .ivv-hero::before {
        height: 150px;
        position: absolute;
        width: 100%;
    }

    .ivv-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ivv-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .ivv-section h1 {
        font-size: 42px;
    }

    .ivv-actions {
        flex-direction: column;
    }

    .ivv-button {
        width: 100%;
    }
}
