:root {
    --bg: #0b0a10;
    --bg-2: #12101a;
    --panel: rgba(19, 17, 25, 0.92);
    --panel-2: rgba(25, 21, 34, 0.96);
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f7f2ea;
    --muted: #c8c0b4;
    --muted-2: #9f978d;
    --accent: #ff7d42;
    --accent-2: #ffb84d;
    --accent-3: #ff596f;
    --success: #90dbab;
    --danger: #ffafaf;
    --shadow-xl: 0 34px 100px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 22px 58px rgba(0, 0, 0, 0.32);
    --radius-2xl: 34px;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 125, 66, 0.16), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.12), transparent 24%),
        linear-gradient(180deg, #0d0b12 0%, #09080d 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-shell { position: relative; overflow: clip; }
.site-shell::before,
.site-shell::after {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    pointer-events: none;
}
.site-shell::before { top: 120px; left: -180px; background: rgba(255, 125, 66, 0.22); }
.site-shell::after { top: 860px; right: -200px; background: rgba(255, 89, 111, 0.14); }
.site-shell > * { position: relative; z-index: 1; }

h1, h2, h3, h4 { margin: 0; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.04em; }
p, li, td, th, a, span, button, small { line-height: 1.75; }
p { margin: 0 0 18px; }

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(10, 9, 13, 0.76);
    backdrop-filter: blur(18px);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
}
.brand-mark {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 8px rgba(255, 125, 66, 0.13);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.nav-links a,
.lang-switcher .lang-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: rgba(247,242,234,0.84);
    background: rgba(255,255,255,0.03);
    font-weight: 700;
}
.nav-links a:hover,
.lang-switcher .lang-trigger:hover { color: var(--text); background: rgba(255,255,255,0.07); }

.lang-switcher { position: relative; }
.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(17,15,22,0.08);
    background: #fffdf8;
    box-shadow: 0 26px 60px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: 0.18s ease;
}
.lang-switcher:hover .lang-menu,
.lang-switcher:focus-within .lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #1d1822;
    font-weight: 700;
}
.lang-menu a:hover,
.lang-menu a.is-active { background: rgba(255,125,66,0.12); }

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button-primary {
    color: #190f09;
    background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
    box-shadow: 0 18px 36px rgba(255, 125, 66, 0.28);
}
.button-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
}
.button-primary:hover,
.button-secondary:hover { transform: translateY(-2px); }

.hero {
    padding: 52px 0 34px;
}
.hero-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-2xl);
    background:
        linear-gradient(110deg, rgba(14,12,18,0.95) 0%, rgba(14,12,18,0.88) 55%, rgba(14,12,18,0.55) 100%),
        url('../images/hero.webp') center/cover no-repeat;
    box-shadow: var(--shadow-xl);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 30px;
    align-items: center;
    padding: 64px;
}
.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.92;
    margin-bottom: 18px;
    max-width: 11ch;
}
.hero-copy p {
    max-width: 64ch;
    color: #e7ddd3;
    font-size: 1.02rem;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffe0c6;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    font-size: 0.83rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-side {
    display: grid;
    gap: 18px;
}
.hero-stat,
.hero-image-card,
.card,
.table-card,
.tool-card,
.reason-card,
.closing-card,
.age-panel {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(17,14,24,0.94));
    box-shadow: var(--shadow-lg);
}
.hero-stat { padding: 24px; }
.hero-stat h2 { font-size: 1.5rem; margin-bottom: 10px; }
.hero-stat p { color: var(--muted); margin: 0; }
.hero-image-card { padding: 16px; }
.hero-image-card img { width: 100%; border-radius: 22px; }

.section { padding: 88px 0; }
.section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin-bottom: 30px;
}
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.25rem); line-height: 0.95; }
.section-head p { color: var(--muted); max-width: 70ch; }

.summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}
.table-card { padding: 18px; }
.table-wrap {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.table-card table { width: 100%; border-collapse: collapse; }
.table-card th,
.table-card td { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); text-align: left; }
.table-card th {
    background: rgba(255,255,255,0.05);
    color: #ffe2cc;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.table-card td { color: var(--text); background: rgba(255,255,255,0.025); vertical-align: top; }
.table-card tbody tr:nth-child(even) td { background: rgba(255,255,255,0.05); }
.table-card tbody tr:first-child td { background: linear-gradient(90deg, rgba(255,184,77,0.14), rgba(255,125,66,0.08)); }
.table-card tbody td:first-child { color: #fff1de; font-weight: 800; }

.summary-side {
    display: grid;
    gap: 16px;
}
.card { padding: 24px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }
.editor-choice {
    background: linear-gradient(160deg, rgba(255,125,66,0.14), rgba(255,89,111,0.08) 35%, rgba(18,15,25,0.96));
}

.alts-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}
.alt-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(16,14,22,0.94));
    box-shadow: var(--shadow-lg);
}
.alt-card .rank {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: #ffe2cc;
    font-weight: 800;
    margin-bottom: 12px;
}
.alt-card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.alt-card p { color: var(--muted); min-height: 120px; }
.alt-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.alt-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
    color: #ebe0d5;
}

.tool-section {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
    gap: 30px;
    align-items: start;
}
.tool-card {
    position: relative;
    padding: 34px 36px 36px 40px;
    overflow: hidden;
}
.tool-card::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.tool-label {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 800;
    color: #ffe2cc;
    margin-bottom: 18px;
}
.tool-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.tool-card h3 { font-size: 1.35rem; margin: 28px 0 12px; }
.tool-card p, .tool-card li { color: var(--muted); }
.tool-card ul { margin: 0; padding-left: 22px; }
.tool-card li { margin-bottom: 10px; }
.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}
.pros, .cons {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}
.pros { background: rgba(144,219,171,0.06); border-color: rgba(144,219,171,0.16); }
.cons { background: rgba(255,175,175,0.06); border-color: rgba(255,175,175,0.16); }
.pros h4 { color: var(--success); margin-bottom: 12px; font-size: 1.1rem; }
.cons h4 { color: var(--danger); margin-bottom: 12px; font-size: 1.1rem; }
.pros ul, .cons ul { margin: 0; padding-left: 20px; }
.cta-note { display: block; margin: 24px 0 12px; color: #ffe3cd; font-weight: 800; }
.tool-visual {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 18px;
}
.visual-card {
    padding: 16px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(17,14,24,0.94));
    box-shadow: var(--shadow-lg);
}
.visual-card img,
.placeholder-visual {
    width: 100%;
    min-height: 360px;
    border-radius: 22px;
    object-fit: cover;
}
.placeholder-visual {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 32px;
    background:
        radial-gradient(circle at top, rgba(255,184,77,0.2), transparent 50%),
        linear-gradient(135deg, rgba(255,125,66,0.18), rgba(255,255,255,0.04));
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffe7d0;
}

.reasons-grid,
.closing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.reason-card,
.closing-card { padding: 30px; }
.reason-card h3,
.closing-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.reason-card p,
.closing-card p { color: var(--muted); }
.notice {
    margin-top: 26px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
.footer {
    padding: 26px 0 52px;
}
.footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 22px 26px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(6,5,8,0.84);
    backdrop-filter: blur(12px);
}
.age-modal.hidden { display: none; }
.age-panel {
    width: min(680px, 100%);
    padding: 32px;
}
.age-panel h2 { font-size: 2rem; margin-bottom: 14px; }
.age-panel p { color: var(--muted); }
.age-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }

@media (max-width: 1199px) {
    .summary-grid,
    .tool-section,
    .reasons-grid,
    .closing-grid,
    .alts-grid,
    .pros-cons,
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .alts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tool-visual { position: static; }
}
@media (max-width: 991px) {
    .navbar { min-height: auto; padding: 16px 0; align-items: flex-start; flex-direction: column; }
    .nav-actions { width: 100%; justify-content: space-between; }
    .hero-grid { padding: 26px; }
}
@media (max-width: 767px) {
    .container, .tool-section { width: min(var(--container), calc(100% - 24px)); }
    .section { padding: 64px 0; }
    .hero-copy h1 { font-size: clamp(2.5rem, 12vw, 4rem); max-width: none; }
    .hero-actions, .age-actions { flex-direction: column; }
    .button-primary, .button-secondary { width: 100%; }
    .alts-grid { grid-template-columns: 1fr; }
    .tool-card { padding: 24px; }
    .tool-card::before { display: none; }
    .table-card th, .table-card td { padding: 14px 16px; }
}


/* Full-width editorial layout refinement */
.hero > .container,
.section > .container,
.footer > .container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(22px, 4vw, 72px);
}

.hero { padding: 0 0 42px; }
.hero-wrap {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.hero-grid,
.summary-grid,
.alts-grid,
.reasons-grid,
.closing-grid,
.footer-bar {
    max-width: 1440px;
    margin-inline: auto;
}

.section-head {
    max-width: 1440px;
    margin-inline: auto;
    margin-bottom: 30px;
}

.tool-section {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 44px clamp(22px, 4vw, 72px);
    justify-content: center;
}

.tool-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.015), rgba(255,255,255,0.005)),
        radial-gradient(circle at right center, rgba(255,125,66,0.08), transparent 30%);
    pointer-events: none;
}

.tool-section > * {
    position: relative;
    z-index: 1;
}

.tool-card {
    padding: 0 24px 0 40px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tool-card::before {
    top: 4px;
    bottom: 4px;
    left: 0;
}

.tool-visual {
    max-width: 640px;
    width: 100%;
}

.visual-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(13,11,18,0.82));
}

@media (max-width: 991px) {
    .hero > .container,
    .section > .container,
    .footer > .container,
    .tool-section {
        padding-inline: 20px;
    }

    .hero-wrap {
        border-radius: 28px;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .tool-section {
        padding-block: 28px;
    }

    .tool-card {
        padding: 0;
    }

    .tool-card::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero > .container,
    .section > .container,
    .footer > .container,
    .tool-section {
        padding-inline: 12px;
    }

    .hero-wrap {
        border-radius: 22px;
    }
}


/* Visual direction refresh: editorial full-bleed layout */
body {
    background:
        linear-gradient(180deg, #110f14 0%, #09080c 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 133, 71, 0.18), transparent 20%),
        radial-gradient(circle at 88% 20%, rgba(208, 82, 255, 0.13), transparent 24%),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: auto, auto, 120px 120px, 120px 120px;
    opacity: 0.6;
    z-index: 0;
}

.site-shell::before,
.site-shell::after {
    display: none;
}

.header {
    background: rgba(11, 10, 15, 0.82);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
    max-width: 1500px;
    margin: 0 auto;
    min-height: 92px;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 6px;
}

.nav-links {
    gap: 18px;
}

.nav-links a {
    min-height: auto;
    padding: 10px 2px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(247,242,234,0.74);
    box-shadow: inset 0 -2px 0 transparent;
}

.nav-links a:hover {
    color: var(--text);
    background: transparent;
    box-shadow: inset 0 -2px 0 rgba(255,184,77,0.9);
}

.lang-switcher .lang-trigger {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
}

.button-primary {
    border-radius: 16px;
}

.button-secondary {
    border-radius: 16px;
}

.hero {
    padding: 0 0 32px;
}

.hero > .container {
    padding-inline: 0;
}

.hero-wrap {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background:
        linear-gradient(90deg, rgba(10,9,14,0.98) 0%, rgba(13,11,18,0.94) 52%, rgba(60,19,74,0.82) 100%),
        url(../images/hero.webp) center/cover no-repeat;
}

.hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.12;
    pointer-events: none;
}

.hero-grid {
    max-width: 1540px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 54px;
    padding: 76px clamp(28px, 4vw, 64px) 68px;
}

.hero-copy {
    padding-right: 12px;
}

.hero-copy h1 {
    max-width: 7.8ch;
    font-size: clamp(3.7rem, 7vw, 6.6rem);
    line-height: 0.9;
}

.kicker {
    border-radius: 12px;
    padding: 9px 15px;
    background: rgba(255,255,255,0.03);
}

.hero-side {
    align-self: stretch;
    gap: 22px;
}

.hero-stat {
    padding: 8px 0 0 24px;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-stat h2 {
    font-size: 1.95rem;
    margin-bottom: 14px;
}

.hero-stat p {
    max-width: 26ch;
}

.hero-image-card {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-image-card img {
    border-radius: 34px 0 0 34px;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
}

.section > .container,
.footer > .container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(28px, 4vw, 64px);
}

.section-head,
.summary-grid,
.alts-grid,
.reasons-grid,
.closing-grid,
.footer-bar {
    max-width: 1500px;
}

.summary-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.table-card {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.table-wrap {
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(16,14,21,0.76);
    backdrop-filter: blur(16px);
}

.card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(20,17,28,0.7);
    backdrop-filter: blur(14px);
}

.editor-choice {
    background: linear-gradient(160deg, rgba(255,125,66,0.16), rgba(99,45,124,0.2) 45%, rgba(19,16,28,0.82));
}

.alts-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    align-items: stretch;
}

.alt-card {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(14,12,19,0.72));
    box-shadow: none;
}

.alt-card .rank {
    border-radius: 10px;
}

.tool-section {
    grid-template-columns: minmax(0, 860px) minmax(320px, 560px);
    gap: 56px;
    padding: 58px clamp(28px, 4vw, 64px);
}

.tool-section::before {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: none;
    background: linear-gradient(90deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.tool-card {
    padding: 0 0 0 42px;
}

.tool-card h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.tool-card p,
.tool-card li {
    font-size: 1.05rem;
}

.tool-visual {
    max-width: none;
    align-self: center;
}

.visual-card {
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(18,15,26,0.6);
    box-shadow: none;
}

.visual-card img,
.placeholder-visual {
    min-height: 520px;
    border-radius: 0;
}

.reason-card,
.closing-card,
.footer-bar {
    border-radius: 24px;
    background: rgba(18,15,25,0.72);
    box-shadow: none;
}

@media (max-width: 1199px) {
    .summary-grid,
    .tool-section,
    .reasons-grid,
    .closing-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .alts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero > .container {
        padding-inline: 18px;
    }

    .hero-wrap {
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 32px;
        box-shadow: 0 22px 60px rgba(0,0,0,0.28);
    }

    .hero-image-card img {
        border-radius: 26px;
        min-height: 420px;
    }

    .hero-stat {
        padding: 0;
        border-left: none;
    }
}

@media (max-width: 991px) {
    .nav-links a {
        padding: 10px 0;
    }

    .hero-grid {
        gap: 30px;
        padding: 34px 22px 30px;
    }

    .section > .container,
    .footer > .container,
    .tool-section {
        padding-inline: 20px;
    }

    .tool-section {
        padding-block: 34px;
    }

    .tool-card {
        padding: 0;
    }

    .tool-card::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .section > .container,
    .footer > .container,
    .tool-section,
    .hero > .container {
        padding-inline: 12px;
    }

    .hero-wrap {
        border-radius: 24px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .alts-grid {
        grid-template-columns: 1fr;
    }

    .visual-card img,
    .placeholder-visual,
    .hero-image-card img {
        min-height: 320px;
    }
}
