:root {
    --bg: #050505;
    --panel: rgba(255, 255, 255, 0.06);
    --line: rgba(255, 255, 255, 0.11);
    --text: #f5f2eb;
    --muted: #bcb6aa;
    --accent: #ff7a00;
    --accent-soft: #ffb15f;
    --shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
    --max: 1320px;
    --header-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255, 122, 0, 0.16), transparent 22%),
        linear-gradient(180deg, #090909 0%, #020202 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

.page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}

.container {
    width: min(var(--max), calc(100% - 4rem));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
    padding: 0.35rem 0;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.brand-mark img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand-copy {
    display: grid;
    gap: 0.18rem;
}

.brand-copy strong,
.section-heading h2,
.hero-copy h1,
.stat-card strong,
.model-card h3,
.card h3,
.benefit-card h3,
.cta-panel h2,
.contact-card h3 {
    font-family: "Arial Black", "Segoe UI", sans-serif;
}

.brand-copy strong {
    font-size: 1.02rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy span,
.nav-links a,
.section-heading p,
.card p,
.benefit-card p,
.footer,
.contact-card p {
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.82rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9340 100%);
    color: #16120e;
    box-shadow: 0 14px 36px rgba(255, 122, 0, 0.26);
}

.site-header .button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9340 100%);
    color: #16120e;
    box-shadow: 0 14px 36px rgba(255, 122, 0, 0.26);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
}

button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--header-height) + 0.75rem) 0 0.9rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-background-picture
.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background-picture {
    z-index: -3;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.12), transparent 28%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.12) 0%, rgba(3, 3, 3, 0.06) 36%, rgba(3, 3, 3, 0.02) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-content: start;
    min-height: calc(100svh - var(--header-height) - 1.65rem);
}

.hero-copy {
    display: grid;
    justify-items: start;
    gap: 0.9rem;
    width: min(100%, 980px);
    padding: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 0, 0.55);
    background: rgba(18, 10, 4, 0.72);
    color: #ffd39f;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-copy h1 {
    font-size: clamp(1.55rem, 2.35vw, 2.35rem);
    line-height: 1;
    margin: 0.2rem 0 0.15rem;
    max-width: 16ch;
}

.hero-copy p {
    max-width: 60ch;
    line-height: 1.5;
    margin: 0;
    font-size: 0.94rem;
}

.hero-actions,
.hero-notes,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.66rem;
}

.hero-notes span,
.chip {
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: var(--muted);
}

.stat-card,
.model-card,
.benefit-card,
.card,
.cta-panel,
.hero-model-card,
.contact-card {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel);
    backdrop-filter: blur(14px);
}

.hero-models {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.2rem;
    width: min(100%, 900px);
    max-width: 100%;
}

.hero-model-card {
    display: grid;
    gap: 0.4rem;
    padding: 0.85rem 0.92rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
}

.hero-model-card strong {
    color: var(--accent-soft);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-model-card span {
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.18;
}

.hero-model-card small {
    color: var(--muted);
    line-height: 1.4;
    font-size: 0.84rem;
}

.section {
    padding: 2rem 0 4rem;
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-width: 760px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0;
}

.stats-grid,
.benefits-grid,
.payments-grid,
.benefits-layout {
    display: grid;
    gap: 1rem;
}

.disclaimer {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    color: #a99f8f;
}

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

.stat-card,
.model-card,
.benefit-card,
.card,
.cta-panel,
.contact-card {
    padding: 1.3rem;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.stat-card p,
.stat-card span {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.models-grid,
.calculator-layout {
    display: grid;
    gap: 1.2rem;
}

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

.models-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: 1.6rem;
    padding: 1.35rem 1.45rem;
    background: radial-gradient(circle at right top, rgba(255, 122, 0, 0.14), transparent 24%), linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.models-cta-copy {
    display: grid;
    gap: 0.45rem;
    max-width: 60ch;
}

.models-cta h3 {
    margin: 0;
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: 1.28rem;
}

.models-cta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.model-card {
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.1), transparent 45%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.model-card:hover::before {
    opacity: 1;
}

.model-card h3 {
    margin: 1rem 0 0.75rem;
    font-size: 1.55rem;
}

.model-card ul,
.card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.72rem;
}

.model-card li,
.card li {
    padding-left: 1.2rem;
    position: relative;
}

.model-card li::before,
.card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.calculator-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.benefits-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    align-items: start;
}

.benefits-machine {
    position: sticky;
    top: calc(var(--header-height) + 1.2rem);
    margin: 0;
    padding: 0;
    background: transparent;
}

.benefits-machine img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 760px;
    margin: 0 auto;
}

.card h3,
.cta-panel h2,
.contact-card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.7rem;
}

.calculator-form,
.results-grid,
.contact-form {
    display: grid;
    gap: 1rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label {
    position: relative;
    display: grid;
    gap: 0.45rem;
    font-size: 0.95rem;
    color: var(--muted);
}

input,
select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #f5f2eb 50%), linear-gradient(135deg, #f5f2eb 50%, transparent 50%);
    background-position: calc(100% - 24px) calc(50% - 2px), calc(100% - 18px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 3rem;
}

select option {
    background: #1b1b1b;
    color: #f5f2eb;
}

input:focus,
select:focus {
    outline: 2px solid rgba(255, 122, 0, 0.55);
    outline-offset: 1px;
}

input.is-invalid,
select.is-invalid {
    border-color: rgba(255, 107, 107, 0.9);
}

.iti {
    width: 100%;
    display: block;
    --iti-border-color: rgba(255, 255, 255, 0.1);
    --iti-dialcode-color: #f5f2eb;
    --iti-dropdown-bg: #161616;
    --iti-icon-color: #f5f2eb;
    --iti-hover-color: rgba(255, 122, 0, 0.16);
    --iti-country-selector-bg: rgba(255, 255, 255, 0.03);
    --iti-path-flags-1x: url('../img/flags.webp');
    --iti-path-flags-2x: url('../img/flags@2x.webp');
}

.iti input.iti__tel-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 5.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.iti input.iti__tel-input:focus {
    outline: 2px solid rgba(255, 122, 0, 0.55);
    outline-offset: 1px;
}

.iti__country-container {
    padding: 1px;
}

.iti__selected-country {
    border-radius: 15px 0 0 15px;
}

.iti__country-list,
.iti__selected-country {
    color: #f5f2eb;
}

.field-error {
    min-height: 1.1rem;
    font-size: 0.82rem;
    color: #ff8f8f;
}

.form-status {
    margin: 0;
    min-height: 1.4rem;
    font-size: 0.92rem;
}

.form-status.is-success {
    color: #8ef0aa;
}

.form-status.is-error {
    color: #ff9b9b;
}

.form-status.is-loading {
    color: #ffd39f;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
    gap: 1.25rem;
    align-items: start;
}

.contact-panel__intro {
    display: grid;
    gap: 0.95rem;
}

.contact-machine-preview {
    margin: 0.5rem 0 0;
    display: flex;
    justify-content: center;
}

.contact-machine-preview img {
    width: min(100%, 260px);
    height: auto;
    object-fit: contain;
}
.contact-card {
    box-shadow: var(--shadow);
}

.contact-card p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

.contact-consent {
    display: grid;
    gap: 0.45rem;
}

.contact-consent__label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.contact-consent__label input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.contact-consent__label input.is-invalid {
    outline: 1px solid rgba(255, 107, 107, 0.9);
    outline-offset: 2px;
}

.contact-consent__label a {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 0.16rem;
}

.contact-form__footer {
    display: grid;
    gap: 0.8rem;
}

.result-box {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-box span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.result-box strong {
    font: 1.4rem "Arial Black", "Segoe UI", sans-serif;
}

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

.cta-panel {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(255, 122, 0, 0.18), transparent 28%), linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.footer {
    padding: 1.35rem 0 2.6rem;
}

.footer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(180px, 1fr));
    gap: 2rem;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

.footer-brand,
.footer-links,
.footer-center,
.footer-app {
    display: grid;
    gap: 0.85rem;
}

.footer-brand-mark {
    display: inline-flex;
    align-items: flex-start;
}

.footer-brand-mark img {
    width: 132px;
    height: 132px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer-brand-copy {
    display: grid;
    gap: 0.9rem;
    max-width: 31rem;
}

.footer-links strong,
.footer-center strong,
.footer-app strong {
    font-family: "Arial Black", "Segoe UI", sans-serif;
    color: var(--text);
    font-size: 1.02rem;
    letter-spacing: 0;
}

.footer-brand-copy p,
.footer-center p,
.footer-app p,
.footer-contact-list span,
.footer-bottom span,
.footer-bottom a,
.footer-links a {
    color: var(--muted);
    line-height: 1.65;
}

.footer-contact-list {
    display: grid;
    gap: 0.45rem;
}

.footer-contact-list strong {
    color: var(--text);
    margin-right: 0.2rem;
}

.footer-contact-list a,
.footer-app a,
.footer-links a,
.footer-bottom a {
    transition: color 0.18s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.footer-app a:hover,
.footer-app a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--accent-soft);
}

.footer-socials {
    display: inline-flex;
    align-items: center;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text);
    font-weight: 500;
    padding-bottom: 0.08rem;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-social svg {
    width: 1rem;
    height: 1rem;
    opacity: 0.92;
}

.footer-social--instagram {
    color: var(--muted);
}

.footer-social--instagram:hover,
.footer-social--instagram:focus-visible {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-app a {
    color: var(--text);
    font-weight: 700;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem 1.25rem;
}

.reveal,
.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.52s ease, transform 0.52s ease;
}

@media (max-width: 960px) {
    .hero-grid,
    .calculator-layout,
    .models-grid,
    .payments-grid,
    .stats-grid,
    .benefits-grid,
    .benefits-layout,
    .hero-models,
    .footer-panel,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .benefits-machine {
    position: sticky;
    top: calc(var(--header-height) + 1.2rem);
    margin: 0;
    padding: 0;
    background: transparent;
}

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 1.2rem) 0 2.1rem;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 780px) {
    .nav {
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.75rem;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a,
    .nav-links .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--max), calc(100% - 1.5rem));
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 2rem) 0 2rem;
    }

    .hero-copy {
        gap: 0.75rem;
    }

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

    .hero-copy h1 {
        font-size: clamp(1.85rem, 9.3vw, 2.9rem);
        line-height: 1.02;
        max-width: 10ch;
    }

    .hero-copy p {
        max-width: 34ch;
        font-size: 0.9rem;
    }

    .hero-actions,
    .contact-form__footer {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button,
    .contact-form__footer .button {
        width: 100%;
    }

    .hero-notes {
        gap: 0.55rem;
    }

    .hero-notes span {
        font-size: 0.78rem;
    }

    .hero-models {
        gap: 0.7rem;
    }

    .models-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .models-cta .button {
        width: 100%;
    }

    .hero-model-card {
        padding: 0.8rem 0.85rem;
    }

    .hero-model-card span {
        font-size: 0.96rem;
    }

    .hero-model-card small {
        font-size: 0.8rem;
    }

    .section {
        padding: 1.3rem 0 3rem;
    }

    .brand-copy span {
        max-width: 16ch;
    }
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.72rem 1.05rem 0.72rem 0.78rem;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f2eb;
    font-weight: 700;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-1px);
}

.whatsapp-float__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #1ea952);
    color: #062d11;
    flex: 0 0 auto;
}

.whatsapp-float__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.whatsapp-float__text {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 0.85rem;
        bottom: 0.85rem;
        gap: 0.65rem;
        padding-right: 0.95rem;
    }

    .whatsapp-float__icon {
        width: 2.3rem;
        height: 2.3rem;
    }

    .whatsapp-float__text {
        font-size: 0.9rem;
    }
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-action__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #f5f2eb;
}

.contact-action--instagram .contact-action__icon {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
    color: #ffffff;
}

.contact-action--phone .contact-action__icon {
    background: rgba(255, 122, 0, 0.18);
    color: #ffb15f;
}

.nav-links--static {
    display: flex;
    align-items: center;
}

.footer-center a {
    color: var(--muted);
    line-height: 1.6;
    transition: color 0.18s ease;
}

.footer-center a:hover,
.footer-center a:focus-visible {
    color: var(--accent-soft);
}

.faq-page {
    padding-top: calc(var(--header-height) + 1.5rem);
    min-height: 100vh;
}

.faq-layout,
.privacy-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.2rem);
    gap: 1.2rem;
    padding: 1.35rem;
}

.faq-sidebar__head {
    display: grid;
    gap: 0.7rem;
}

.faq-sidebar__head p {
    margin: 0 0 0.45rem;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.94rem;
}

.faq-sidebar__links {
    display: grid;
    gap: 0.75rem;
}

.faq-sidebar__machine {
    margin-top: 1rem;
}

.faq-sidebar__machine img {
    width: min(100%, 220px);
}
.faq-nav-item {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.faq-nav-item:hover,
.faq-nav-item:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 177, 95, 0.34);
    background: rgba(255, 255, 255, 0.05);
}

.faq-nav-item.is-active {
    border-color: rgba(255, 122, 0, 0.38);
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.16), rgba(255, 255, 255, 0.03));
}

.faq-nav-item__title {
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
}

.faq-nav-item__question {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.faq-content,
.privacy-content {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
}

.faq-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr);
    gap: 1.2rem;
    align-items: start;
}

.faq-hero__copy {
    display: grid;
    gap: 0.9rem;
}

.faq-sections {
    display: grid;
    gap: 1rem;
}

.faq-section,
.faq-points,
.faq-cta-band {
    padding: 1.2rem 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-section h2,
.faq-points h2 {
    margin: 0 0 0.7rem;
    font-family: "Arial Black", "Segoe UI", sans-serif;
    font-size: 1.15rem;
    line-height: 1.2;
}

.faq-points ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.faq-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.65;
}

.faq-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--accent);
}

.faq-cta-band {
    display: grid;
    gap: 1rem;
    align-items: center;
    grid-template-columns: minmax(0, 1.2fr) auto;
}

.faq-cta-band strong {
    display: block;
    font-family: "Arial Black", "Segoe UI", sans-serif;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.faq-content__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

@media (max-width: 960px) {
    .faq-layout,
    .faq-hero,
    .faq-cta-band,
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .faq-content,
    .faq-sidebar,
    .privacy-content {
        padding: 1.15rem;
    }

    .faq-nav-item,
    .faq-section,
    .faq-points,
    .faq-cta-band {
        border-radius: 16px;
    }
}

@media (max-width: 780px) {
    .faq-shell .nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.85rem;
        align-items: stretch;
    }

    .faq-shell .brand-mark {
        min-width: 0;
    }

    .faq-shell .brand-copy strong {
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    .faq-shell .brand-copy span {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .faq-shell .nav-links--static {
        width: 100%;
        display: flex;
        padding-bottom: 0;
    }

    .faq-shell .nav-links--static .button {
        width: 100%;
    }
}

@media (max-width: 960px) {
    .faq-content {
        order: 1;
    }

    .faq-sidebar {
        order: 2;
    }
}

@media (max-width: 640px) {
    .faq-page {
        padding-top: calc(var(--header-height) + 2.7rem);
    }

    .faq-content {
        gap: 1.15rem;
    }

    .faq-content h1 {
        font-size: clamp(1.85rem, 10vw, 2.6rem);
        max-width: none;
    }

    .faq-sidebar__head p {
        font-size: 0.88rem;
    }

    .faq-nav-item {
        padding: 0.9rem;
    }

    .faq-nav-item__title {
        font-size: 0.98rem;
    }

    .faq-nav-item__question {
        font-size: 0.88rem;
    }

    .faq-content__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .faq-content__actions .button {
        width: 100%;
    }
}

.privacy-document {
    margin: 0;
    background: #ffffff;
    color: #111111;
    font-family: Georgia, "Times New Roman", serif;
}

.privacy-document::before {
    display: none;
}

.privacy-document__page {
    width: min(920px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.25rem 0 3.5rem;
}

.privacy-document__brand {
    margin-bottom: 1.75rem;
}

.privacy-document__brand img {
    width: 120px;
    height: auto;
}

.privacy-document__content {
    display: grid;
    gap: 1.4rem;
}

.privacy-document__header {
    display: grid;
    gap: 0.9rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d9d9d9;
}

.privacy-document__eyebrow {
    margin: 0;
    font: 700 0.8rem/1.2 "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666666;
}

.privacy-document__header h1,
.privacy-document__section h2 {
    margin: 0;
    color: #111111;
    font-family: "Segoe UI", Arial, sans-serif;
}

.privacy-document__header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
}

.privacy-document__header p,
.privacy-document__section p,
.privacy-document__note {
    margin: 0;
    color: #1f1f1f;
    font-size: 1.03rem;
    line-height: 1.78;
}

.privacy-document__section {
    display: grid;
    gap: 0.65rem;
}

.privacy-document__section h2 {
    font-size: 1.16rem;
    line-height: 1.3;
}

.privacy-document__note {
    margin-top: 0.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid #d9d9d9;
    color: #444444;
}

@media (max-width: 640px) {
    .privacy-document__page {
        width: min(920px, calc(100% - 1.5rem));
        padding: 1.5rem 0 2.4rem;
    }

    .privacy-document__brand {
        margin-bottom: 1.35rem;
    }

    .privacy-document__brand img {
        width: 100px;
    }

    .privacy-document__header p,
    .privacy-document__section p,
    .privacy-document__note {
        font-size: 0.98rem;
        line-height: 1.72;
    }
}





