/* ══════════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════════ */
:root {
    --red:         #009fe3;
    --red-dark:    #0074aa;
    --red-light:   #e0f4fc;
    --navy:        #0d2144;
    --navy-light:  #162d5a;
    --gold:        #C9A84C;
    --blue:        #2563EB;
    --violet:      #7C3AED;
    --green:       #059669;

    --bg:          #FFFFFF;
    --bg-gray:     #F0F7FC;
    --bg-dark:     #061428;
    --bg-darker:   #030d1c;

    --text:        #1a1a2e;
    --text-muted:  #5a6376;
    --text-light:  #8892a4;

    --border:      #E2E8F0;
    --border-dark: #CBD5E1;

    --radius-sm:   8px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   28px;

    --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
    --shadow:      0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
    --shadow-xl:   0 24px 64px rgba(0,0,0,0.18);

    --transition:  0.25s ease;
    --font:         'DM Sans', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4,
.hv-card__big, .subsidy-number__value,
.about-stat__value, .result-main__value, .assist-phone { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.925rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    position: relative;
    overflow: hidden;
}
.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    pointer-events: none;
    transition: none;
}
.btn--primary:hover::before { animation: btnShimmer 0.55s ease forwards; }
@keyframes btnShimmer {
    from { left: -80%; }
    to   { left: 140%; }
}
.btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,159,227,0.35);
}
.btn--pulse {
    animation: btnPulse 2.4s ease-out infinite;
}
.btn--pulse:hover {
    animation: none;
}
@keyframes btnPulse {
    0%   { box-shadow: 0 0 0 0   rgba(0,159,227,0.6); }
    65%  { box-shadow: 0 0 0 16px rgba(0,159,227,0);  }
    100% { box-shadow: 0 0 0 0   rgba(0,159,227,0);   }
}
.btn--outline {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn--outline:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-1px);
}
.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
}
.logo__text { color: var(--navy); font-family: var(--font-display); font-weight: 700; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav__link {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--red); background: var(--red-light); }

.nav__cta { margin-left: 8px; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061428 0%, #0d2144 50%, #0a1a38 100%);
    z-index: 0;
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,159,227,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,159,227,0.07) 1px, transparent 1px);
    background-size: 52px 52px;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,159,227,0.2) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0%   { opacity: 0.65; }
    100% { opacity: 1; }
}
.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 120px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,159,227,0.15);
    border: 1px solid rgba(0,159,227,0.4);
    color: #5dd8ff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
}
.badge__dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}
.text-gradient {
    background: linear-gradient(90deg, #009fe3, #00d4ff, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero__subtitle strong { color: #fff; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    max-width: 700px;
}
.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 18px 16px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.stat-card__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}
.stat-card--countdown .stat-card__value { color: #00d4ff; }
.stat-card__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero__actions .btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.hero__actions .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(5px); }
}

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--bg-dark); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0;
    border-radius: 0;
    margin-bottom: 16px;
}
.section__badge::before,
.section__badge::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    flex-shrink: 0;
}
.section__badge--light { background: transparent; color: rgba(255,255,255,0.65); }
.section__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.section__title--light { color: #fff; }
.section__subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.section__subtitle--light { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════
   PROGRAM CARDS
══════════════════════════════════════════════ */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.program-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.program-card__accent--a { background: linear-gradient(90deg, var(--blue), #60a5fa); }
.program-card__accent--b { background: linear-gradient(90deg, var(--violet), #a78bfa); }
.program-card__accent--c { background: linear-gradient(90deg, var(--green), #34d399); }

.program-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.program-card__type {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}
.program-card__type--a { background: #eff6ff; color: var(--blue); }
.program-card__type--b { background: #f5f3ff; color: var(--violet); }
.program-card__type--c { background: #ecfdf5; color: var(--green); }
.program-card__icon { font-size: 2rem; }
.program-card__title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.program-card__desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.program-card__list { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.program-card__list li { font-size: 0.875rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.program-card__list li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.program-card__data { display: flex; gap: 16px; padding-top: 18px; border-top: 1px solid var(--border); }
.data-item { flex: 1; }
.data-item__label { display: block; font-size: 0.72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.data-item__value { font-size: 1.05rem; font-weight: 800; color: var(--navy); }

/* ══════════════════════════════════════════════
   REQUIREMENTS
══════════════════════════════════════════════ */
.requirements {
    background: linear-gradient(135deg, #e8f5fb 0%, #e0f4fc 100%);
    border: 1px solid #b8dff0;
    border-radius: var(--radius-lg);
    padding: 40px;
}
.requirements__title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; text-align: center; }
.requirements__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.req-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 12px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--radius);
}
.req-item__icon { font-size: 1.2rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FILTERS
══════════════════════════════════════════════ */
.filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.filters__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--bg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.active { background: var(--red); border-color: var(--red); color: #fff; }

.filters__search { position: relative; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }
.search-input {
    padding: 10px 14px 10px 40px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    width: 240px;
    outline: none;
    transition: border-color var(--transition);
    background: var(--bg);
}
.search-input:focus { border-color: var(--red); }

/* ══════════════════════════════════════════════
   PRODUCTS GRID
══════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.4s ease both;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--red); }

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

.product-card__top {
    padding: 24px 24px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.product-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    background: var(--bg-gray);
}
.product-card__meta { flex: 1; min-width: 0; }
.product-card__category { font-size: 0.72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.product-card__name { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; }

.product-card__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    background: var(--gold);
    color: #fff;
}

.product-card__body { padding: 0 24px 16px; flex: 1; }
.product-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.product-card__aid-types { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.aid-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
}
.aid-badge--A1, .aid-badge--A2 { background: #eff6ff; color: var(--blue); }
.aid-badge--B  { background: #f5f3ff; color: var(--violet); }
.aid-badge--C  { background: #ecfdf5; color: var(--green); }

.product-card__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--bg-gray);
}
.product-card__price { display: flex; flex-direction: column; gap: 2px; }
.price__label { font-size: 0.68rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; }
.price__value { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.product-card__subsidy {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.subsidy__label { font-size: 0.68rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; }
.subsidy__value { font-size: 0.92rem; font-weight: 800; color: var(--green); }

.product-card__cta {
    display: block;
    text-align: center;
    padding: 12px;
    margin: 0 24px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--transition);
    cursor: pointer;
    background: none;
    width: calc(100% - 48px);
}
.product-card__cta:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Loading */
.loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px;
    color: var(--text-muted);
    font-size: 1rem;
}
.loading__spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1rem;
}
.no-results__icon { font-size: 3rem; margin-bottom: 12px; }

/* ══════════════════════════════════════════════
   CALCULATOR
══════════════════════════════════════════════ */
.calculator-wrapper { max-width: 960px; margin: 0 auto; }
.calculator {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-card { cursor: pointer; }
.radio-card input { display: none; }
.radio-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    background: var(--bg);
}
.radio-card:hover .radio-card__body { border-color: var(--red-dark); }
.radio-card input:checked ~ .radio-card__body {
    border-color: var(--red);
    background: var(--red-light);
}
.radio-card__type {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}
.radio-card__type--a { background: #eff6ff; color: var(--blue); }
.radio-card__type--b { background: #f5f3ff; color: var(--violet); }
.radio-card__type--c { background: #ecfdf5; color: var(--green); }
.radio-card__name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.radio-card__pct { font-size: 1.4rem; font-weight: 800; color: var(--red); }

.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.form-label em { font-style: normal; color: var(--text-light); font-weight: 400; }

.range-wrapper { display: flex; flex-direction: column; gap: 12px; }
.range-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: linear-gradient(to right, var(--red) 0%, var(--red) 18.75%, var(--border) 18.75%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,159,227,0.4);
    cursor: pointer;
    transition: transform var(--transition);
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.range-inputs { display: flex; align-items: center; gap: 8px; }
.number-input {
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    width: 140px;
    outline: none;
    transition: border-color var(--transition);
    text-align: right;
}
.number-input:focus { border-color: var(--red); }
.input-suffix { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}
.checkbox-label input { display: none; }
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all var(--transition);
    position: relative;
    background: var(--bg);
}
.checkbox-label input:checked ~ .checkbox-custom {
    background: var(--red);
    border-color: var(--red);
}
.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.bonus-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
}

/* Result Card */
.result-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
    position: sticky;
    top: 88px;
}
.result-card__title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.result-main { margin-bottom: 20px; }
.result-main__label { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.result-main__value { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }

.result-bar { margin-bottom: 20px; }
.result-bar__track {
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.result-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), #00d4ff);
    border-radius: 4px;
    transition: width 0.4s ease;
}
.result-bar__labels { position: relative; height: 14px; }
.result-bar__labels span {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    transition: left 0.4s ease;
}

.result-details { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.result-row strong { color: #fff; font-weight: 700; }
.result-row--highlight { color: #fff; font-weight: 600; }
.result-row--highlight strong { color: #6ee7b7; font-size: 1.05rem; }

.result-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 20px; line-height: 1.5; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item__icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-item strong { display: block; color: #fff; font-size: 0.875rem; margin-bottom: 2px; }
.contact-item p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
.form-label { color: rgba(255,255,255,0.75) !important; }
.form-select { cursor: pointer; }
.form-select option { background: var(--navy); color: #fff; }
.form-textarea { resize: vertical; min-height: 100px; }

.contact-form .checkbox-label { color: rgba(255,255,255,0.65); }
.link--light { color: #5dd8ff; }
.link--light:hover { color: #fff; }

.form-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}
.form-message--success { background: rgba(5,150,105,0.2); color: #6ee7b7; border: 1px solid rgba(5,150,105,0.3); }
.form-message--error   { background: rgba(220,53,69,0.2);   color: #ff8fa0; border: 1px solid rgba(220,53,69,0.3); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    background: var(--bg-darker);
    padding: 56px 0 32px;
    color: rgba(255,255,255,0.5);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer__brand .nav__logo { margin-bottom: 12px; }
.footer__brand .logo__text { color: rgba(255,255,255,0.9); }
.footer__tagline { font-size: 0.875rem; line-height: 1.6; }
.footer__seo { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-top: 10px; }
.footer__seo a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px; }
.footer__seo a:hover { color: rgba(255,255,255,0.85); }
.footer__links h4 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__links a:hover { color: rgba(255,255,255,0.9); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: rgba(255,255,255,0.9); }

.wa-link { display: inline-flex; align-items: center; gap: 4px; }
.wa-link svg { flex-shrink: 0; vertical-align: middle; }

/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
}
.modal__box {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-xl);
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
    position: sticky;
    float: right;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg-gray);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 1;
    transition: all var(--transition);
    margin: 12px 12px 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal__close:hover { background: var(--red); color: #fff; }

.modal__content { padding: 8px 32px 32px; }
.modal__icon { font-size: 3rem; margin-bottom: 12px; display: block; }
.modal__badge { margin-bottom: 8px; }
.modal__title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.modal__category { font-size: 0.8rem; color: var(--text-light); margin-bottom: 16px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.06em; }
.modal__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.modal__section-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 12px; }
.modal__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.modal__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.modal__feature::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 0.85rem; }
.modal__aid-types { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.modal__divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.modal__pricing {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.modal__price-item { text-align: center; padding: 16px; background: var(--bg-gray); border-radius: var(--radius); }
.modal__price-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.modal__price-value { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.modal__price-value--green { color: var(--green); }
.modal__cta { display: flex; gap: 12px; }

/* ══════════════════════════════════════════════
   HOME — HERO EXTRAS
══════════════════════════════════════════════ */
.stars { color: #FBBF24; letter-spacing: 1px; }

.hero__contact-bar {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
}

.nav__link--accent {
    background: var(--red) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 14px !important;
}
.nav__link--accent:hover { background: var(--red-dark) !important; color: #fff !important; }

/* ══════════════════════════════════════════════
   HERO — DOMAIN BADGE (index.html)
══════════════════════════════════════════════ */
.hero__domain {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 48px;
    padding-bottom: 8px;
}
.hero__seo {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
    max-width: 560px;
    line-height: 1.6;
}

.hero__domain-url {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-decoration: none;
    background: linear-gradient(90deg, #009fe3, #00d4ff, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.2s;
}

.hero__domain-url:hover { opacity: 0.75; }

/* ══════════════════════════════════════════════
   HERO — TWO COLUMN GRID (index.html)
══════════════════════════════════════════════ */
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 64px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 120px;
}

.hero__left { display: flex; flex-direction: column; }

/* Visual cards panel */
.hero__visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hv-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    color: #fff;
    transition: all var(--transition);
}
.hv-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-2px);
    border-color: rgba(0,159,227,0.4);
}

.hv-card--main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.hv-card--main .hv-card__icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.hv-card--main strong { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hv-card--main p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0 0 3px; }
.hv-card--main small { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

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

.hv-card--sm { text-align: center; }
.hv-card__value {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    white-space: nowrap;
}
.hv-card__value a { color: inherit; text-decoration: none; }
.hv-card__label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.hv-card--stars .stars { display: block; font-size: 1.1rem; margin-bottom: 5px; }

.hv-card--years {
    text-align: center;
    background: linear-gradient(135deg, rgba(0,159,227,0.14), rgba(0,212,255,0.06));
    border-color: rgba(0,159,227,0.32);
    animation: yearsGlow 4s ease-in-out infinite alternate;
}
@keyframes yearsGlow {
    0%   { box-shadow: 0 0 0 rgba(0,159,227,0); }
    100% { box-shadow: 0 4px 32px rgba(0,159,227,0.22), inset 0 0 16px rgba(0,159,227,0.06); }
}
.hv-card__big {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #009fe3, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hv-card__years-label { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════ */
.trust-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.trust-strip__grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 18px 20px;
    flex: 1;
    justify-content: center;
    border-right: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg-gray); color: var(--red); }
.trust-item__icon { font-size: 1.1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   HOME — SERVICIOS
══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card__accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card__accent--blue   { background: linear-gradient(90deg, var(--blue),   #60a5fa); }
.service-card__accent--green  { background: linear-gradient(90deg, var(--green),  #34d399); }
.service-card__accent--violet { background: linear-gradient(90deg, var(--violet), #a78bfa); }
.service-card__accent--gold   { background: linear-gradient(90deg, var(--gold),   #fcd34d); }
.service-card__accent--brand  { background: linear-gradient(90deg, var(--red),    #00d4ff); }

/* Icon wrap — replaces bare emoji */
.service-card__icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 18px;
}
.service-card__icon-wrap--blue   { background: #eff6ff; }
.service-card__icon-wrap--green  { background: #ecfdf5; }
.service-card__icon-wrap--violet { background: #f5f3ff; }
.service-card__icon-wrap--gold   { background: #fffbeb; }
.service-card__icon-wrap--brand  { background: var(--red-light); }

.service-card__icon  { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.service-card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card__desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-card__list  { display: flex; flex-direction: column; gap: 5px; }
.service-card__list li { font-size: 0.85rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.service-card__list li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ══════════════════════════════════════════════
   HOME — NOSOTROS
══════════════════════════════════════════════ */
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__overline { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); margin-bottom: 12px; }
.about__title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.about__body  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.about-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat   { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.about-stat__value { font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 4px; }
.about-stat__label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.about-card-stack   { display: flex; flex-direction: column; gap: 14px; }
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.about-feature:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.about-feature__icon { font-size: 1.4rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bg-gray); border-radius: var(--radius-sm); flex-shrink: 0; }
.about-feature strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 3px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════════════
   HOME — BANNER SUBVENCIONES
══════════════════════════════════════════════ */
.subsidy-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.subsidy-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,159,227,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.subsidy-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.subsidy-banner__label {
    display: inline-block;
    background: rgba(0,159,227,0.18);
    color: #5dd8ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,159,227,0.3);
}
.subsidy-banner__title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.subsidy-banner__subtitle { font-size: 0.975rem; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.6; margin-bottom: 28px; }
.subsidy-banner__numbers { display: flex; gap: 36px; flex-wrap: wrap; }
.subsidy-number__value { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.subsidy-number__label { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 3px; }

/* ══════════════════════════════════════════════
   HOME — FORMULARIO ASISTENCIA
══════════════════════════════════════════════ */
.assist-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.assist-info  { display: flex; flex-direction: column; gap: 20px; }
.assist-phone-label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.assist-phone { font-size: 1.9rem; font-weight: 800; color: #fff; text-decoration: none; display: block; line-height: 1.2; transition: color var(--transition); }
.assist-phone:hover { color: #5dd8ff; }
.assist-phone--secondary { font-size: 1.4rem; opacity: 0.7; margin-top: 2px; }
.assist-link { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.6); font-size: 0.9rem; text-decoration: none; transition: color var(--transition); line-height: 1.4; }
.assist-link:hover { color: #fff; }
.assist-link__icon { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.assist-response { background: rgba(0,159,227,0.1); border: 1px solid rgba(0,159,227,0.22); border-radius: var(--radius); padding: 14px 18px; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.assist-response strong { color: #5dd8ff; }

/* Radio cards sobre fondo oscuro */
.section--dark .radio-card__body { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.section--dark .radio-card:hover .radio-card__body { border-color: var(--red); }
.section--dark .radio-card input:checked ~ .radio-card__body { border-color: var(--red); background: rgba(0,159,227,0.15); }
.section--dark .radio-card__name { color: rgba(255,255,255,0.8); }

.urgency-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__grid     { grid-template-columns: 1fr; gap: 32px; padding-bottom: 80px; }
    .hero__visual   { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .hv-card--main  { flex: 2 0 220px; }
    .hv-row         { flex: 1 0 200px; }
    .hv-card--years { flex: 1 0 140px; }
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .about-grid     { grid-template-columns: 1fr; gap: 40px; }
    .assist-grid    { grid-template-columns: 1fr; }
    .subsidy-banner__inner { flex-direction: column; gap: 32px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .program-grid  { grid-template-columns: repeat(2, 1fr); }
    .program-grid > :last-child { grid-column: 1 / -1; }
    .calculator { grid-template-columns: 1fr; }
    .result-card { position: static; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-strip__grid { flex-wrap: wrap; }
    .trust-item { flex: 1 0 33%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
    .hero__grid     { padding-bottom: 60px; }
    .hero__visual   { display: none; }
    .services-grid  { grid-template-columns: 1fr; }
    .about-stats    { grid-template-columns: 1fr 1fr; }
    .subsidy-banner__numbers { gap: 20px; }
    .hero__contact-bar { flex-direction: column; gap: 8px; }
    .section { padding: 64px 0; }
    .nav__menu, .nav__cta { display: none; }
    .nav__menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 4px;
    }
    .nav__burger { display: flex; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .program-grid > :last-child { grid-column: auto; }
    .requirements__grid { grid-template-columns: 1fr 1fr; }
    .radio-group { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .modal__pricing { grid-template-columns: 1fr; }
    .modal__cta { flex-direction: column; }
    .footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .filters { flex-direction: column; align-items: stretch; }
    .search-input { width: 100%; }
    .trust-item { flex: 1 0 50%; }
}

@media (max-width: 480px) {
    .hero__stats { grid-template-columns: 1fr 1fr; }
    .requirements__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .modal__box { border-radius: var(--radius-lg); }
    .modal__content { padding: 8px 20px 24px; }
    .trust-item { flex: 1 0 100%; }
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
