:root {
    --bg-dark: #05060a;
    --bg-card: rgba(18, 20, 34, 0.82);
    --bg-soft: rgba(12, 14, 24, 0.72);
    --text-light: #f8f9fc;
    --text-muted: #a4adbe;
    --accent: #ff2d55;
    --accent-strong: #ff8a00;
    --highlight: #ffc400;
    --border-soft: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 15% 15%, rgba(255, 61, 87, 0.16), transparent 42%),
                radial-gradient(circle at 85% 90%, rgba(255, 196, 0, 0.12), transparent 45%),
                var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}
.site-top-strip {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    background: linear-gradient(120deg, rgba(255, 61, 87, 0.9) 0%, rgba(255, 196, 0, 0.85) 100%);
    color: #05060a;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    z-index: 1350;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}
.site-top-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.section {
    padding: clamp(60px, 8vw, 90px) 0;
}

.section__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    text-align: center;
    justify-items: center;
    margin-bottom: 18px;
}

.section__title span {
    color: var(--highlight);
}

.section__subtitle {
    max-width: 650px;
    margin: 0 auto 48px auto;
    text-align: center;
    justify-items: center;
    color: rgba(248, 249, 252, 0.82);
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.6vw, 1.1rem);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 110px;
    background: linear-gradient(120deg, rgba(5, 6, 10, 0.92) 10%, rgba(5, 6, 10, 0.64) 55%, rgba(5, 6, 10, 0.35) 100%),
                url("https://images.unsplash.com/photo-1532634896-26909d0d4b84?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 61, 87, 0.3) 0%, rgba(5, 6, 10, 0.82) 55%);
    mix-blend-mode: screen;
}
.site-header {
    position: fixed;
    top: 36px;
    width: 100%;
    background: rgba(6, 8, 16, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1300;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}
.site-header__inner {
    width: min(960px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 74px;
}
.site-header__menu {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 14, 24, 0.65);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.site-header__menu span {
    display: block;
    height: 2px;
    width: 18px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header__menu.is-active {
    border-color: rgba(255, 196, 0, 0.6);
    transform: rotate(-3deg);
}
.site-header__menu.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header__menu.is-active span:nth-child(2) {
    opacity: 0;
}
.site-header__menu.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.site-header__logo {
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.86rem;
    color: #fff;
}
.site-header__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.18);
    border: 1px solid rgba(37, 211, 102, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-header__whatsapp svg {
    width: 22px;
    height: 22px;
}
.site-header__whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}
.site-header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(320px, 82%);
    padding: 110px 28px 42px;
    background: rgba(6, 8, 16, 0.96);
    backdrop-filter: blur(18px);
    transform: translateX(-110%);
    transition: transform 0.32s ease;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 1280;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    overflow-y: auto;
}
.site-header__close {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 14, 24, 0.72);
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.site-header__close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
}
.site-header__close span:first-child {
    transform: rotate(45deg);
}
.site-header__close span:last-child {
    transform: rotate(-45deg);
}
.site-header__close:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 196, 0, 0.55);
    background: rgba(12, 14, 24, 0.88);
}
.site-header__drawer a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.site-header__drawer a:hover {
    color: var(--highlight);
    border-color: rgba(255, 196, 0, 0.45);
}
.site-header__drawer.is-open {
    transform: translateX(0);
}
.site-header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1275;
}
.site-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    justify-items: center;
    width: min(720px, 90%);
    padding-top: 78px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 45, 85, 0.16);
    border: 1px solid rgba(255, 45, 85, 0.4);
    color: #ff4a6f;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(255, 45, 85, 0.18);
}
.hero__title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero__title span {
    color: var(--highlight);
}

.hero__description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    color: rgba(244, 246, 255, 0.86);
    margin-bottom: 36px;
}

.hero__price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 30px;
}

.hero__price-tag {
    font-size: clamp(2.4rem, 4.8vw, 3rem);
    font-weight: 800;
    color: var(--highlight);
    padding: 14px 38px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(120, 72, 0, 0.85), rgba(255, 196, 0, 0.45));
    border: 1px solid rgba(255, 196, 0, 0.6);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.28);
}

.hero__price-label {
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(102deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    box-shadow: 0 22px 48px rgba(255, 61, 87, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(255, 115, 0, 0.42);
    filter: brightness(1.05);
}
.cta-banner {
    max-width: 720px;
    margin: clamp(32px, 6vw, 48px) auto 0;
    padding: clamp(28px, 6vw, 40px);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 61, 87, 0.2), rgba(255, 196, 0, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    justify-items: center;
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.35);
}
.cta-banner h3 {
    font-size: clamp(1.4rem, 3.4vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.cta-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(248, 249, 252, 0.86);
    margin-bottom: 22px;
}
.cta-banner .btn {
    width: min(100%, 320px);
    font-size: 0.95rem;
    letter-spacing: 0.16em;
}

.hero__note {
    
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(244, 246, 255, 0.78);
}

.hero__confidence {
    margin-top: 22px;
    display: grid;
    gap: 16px;
    justify-items: center;
}

.hero__guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero__guarantees span {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 17, 30, 0.65);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero__guarantees strong {
    color: #fff;
    font-weight: 700;
}

.hero__disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(244, 246, 255, 0.55);
    margin-top: 18px;
    letter-spacing: 0.08em;
}

.hero__stats {
    margin-top: 48px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero__stat-card {
    background: rgba(15, 17, 30, 0.68);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    justify-items: center;
}

.hero__stat-number {
    font-size: 1.9rem;
    font-weight: 700;
}

.hero__stat-label {
    
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.62);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.18);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.research {
    background: linear-gradient(160deg, rgba(12, 14, 24, 0.82) 0%, rgba(26, 20, 36, 0.9) 65%, rgba(255, 138, 0, 0.14) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(50px, 7vw, 70px);
    margin-top: 40px;
    box-shadow: 0 30px 70px rgba(5, 6, 10, 0.45);
}

.research__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.research__image {
    justify-self: center;
    width: min(100%, 420px);
    border-radius: 28px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(120, 72, 0, 0.35), rgba(255, 196, 0, 0.12));
    border: 1px solid rgba(255, 196, 0, 0.25);
    box-shadow: 0 28px 60px rgba(5, 6, 10, 0.55);
}

.research__image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.research__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255, 196, 0, 0.16);
    border: 1px solid rgba(255, 196, 0, 0.36);
    color: var(--highlight);
    margin-bottom: 20px;
}

.research__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.research__title span {
    color: var(--highlight);
}

.research__items {
    display: grid;
    gap: 18px;
}

.research__card {
    background: rgba(10, 12, 20, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px;
    display: grid;
    gap: 12px;
    text-align: center;
    justify-items: center;
}

.research__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border-radius: 14px;
    background: rgba(255, 196, 0, 0.16);
    border: 1px solid rgba(255, 196, 0, 0.32);
    font-size: 1.2rem;
    color: var(--highlight);
}

.research__card p {
    color: rgba(244, 246, 255, 0.78);
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
}

.product {
    display: grid;
    gap: 46px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}



.product-media {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 16px;
    width: min(100%, 480px);
    border-radius: 28px;
    background: linear-gradient(150deg, rgba(12, 13, 22, 0.88), rgba(65, 29, 73, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 70px rgba(5, 6, 10, 0.5);
}

.product-media img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    aspect-ratio: 3 / 2.2;
}

.product__steps {
    display: grid;
    gap: 16px;
}

.product__step {
    display: grid;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(15, 17, 30, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product__step-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 61, 87, 0.32);
}

.product__step strong {
    font-size: 1.05rem;
}

.product__step p {
    color: rgba(244, 246, 255, 0.78);
    font-family: 'Inter', sans-serif;
}

.guarantee {
    background: linear-gradient(140deg, rgba(12, 14, 24, 0.95) 0%, rgba(32, 20, 56, 0.88) 55%, rgba(255, 196, 0, 0.18) 100%);
    border-radius: 26px;
    border: 1px solid rgba(255, 196, 0, 0.24);
    padding: clamp(50px, 7vw, 70px);
    text-align: center;
    justify-items: center;
    box-shadow: 0 28px 68px rgba(5, 6, 10, 0.52);
}

.guarantee h3 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.guarantee p {
    font-family: 'Inter', sans-serif;
    color: rgba(248, 249, 252, 0.86);
    font-size: 1.02rem;
}

.guarantee__list {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 0.92rem;
    color: rgba(255, 196, 0, 0.86);
}

.guarantee__list span {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(12, 14, 24, 0.45);
    border: 1px solid rgba(255, 196, 0, 0.28);
    letter-spacing: 0.08em;
}

.testimonials__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
    background: rgba(12, 14, 24, 0.9);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.testimonial::before {
    content: "201C";
    position: absolute;
    top: 18px;
    right: 28px;
    font-size: 4rem;
    color: rgba(255, 138, 0, 0.3);
}

.testimonial__meta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial__avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38);
}

.benefits__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card .icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.benefit-card p {
    margin-top: 12px;
    color: rgba(244, 246, 255, 0.78);
    font-family: 'Inter', sans-serif;
}

.trust-strip {
    margin-top: 36px;
    background: rgba(10, 12, 20, 0.6);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 24px;
    text-align: center;
    justify-items: center;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.trust-strip strong {
    
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.faq {
    background: rgba(10, 12, 20, 0.72);
    border: 1px solid var(--border-soft);
    border-radius: 26px;
    padding: clamp(48px, 7vw, 64px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.faq__grid {
    display: grid;
    gap: 22px;
}

.faq__item {
    background: rgba(15, 17, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px 26px;
}

.faq__item h3 {
    font-size: 1.12rem;
    margin-bottom: 12px;
}

.faq__item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    color: rgba(244, 246, 255, 0.8);
}

.faq__cta {
    margin-top: 26px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(15, 17, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    justify-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(244, 246, 255, 0.8);
}

.faq__cta a {
    color: var(--highlight);
    font-weight: 600;
}

footer {
    padding: 50px 0 70px;
    text-align: center;
    justify-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer-contact {
    margin: 14px 0 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
    font-size: 0.88rem;
}

.footer-contact a {
    color: var(--highlight);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-links {
    margin-top: 12px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--highlight);
}

@media (max-width: 960px) {
    .site-header__inner {
        width: min(92%, 520px);
        height: 68px;
        gap: 14px;
    }

    .site-top-strip {
        padding: 9px 14px;
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .site-header__menu,
    .site-header__whatsapp {
        width: 42px;
        height: 42px;
    }

    .site-header__menu span {
        width: 16px;
    }

    .site-header__drawer {
        width: min(300px, 86%);
        padding: 96px 24px 36px;
        gap: 20px;
    }

    .site-header__close {
        width: 38px;
        height: 38px;
    }

    .site-header__close span {
        width: 14px;
    }

    .site-header__logo {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .hero {
        padding: 120px 0 90px;
    }

    .hero__content {
        width: min(92%, 520px);
    }

    .hero__stats {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .product__steps {
        gap: 14px;
    }
}



    .site-header__inner {
        width: min(92%, 520px);
        height: 68px;
        gap: 14px;
    }


    .section {
        padding: clamp(48px, 10vw, 70px) 0;
    }

    .research__grid {
        text-align: center;
    justify-items: center;
    }

    .hero__stats {
        gap: 18px;
    }
}

@media (max-width: 720px) {
    .site-header__inner {
        width: min(92%, 400px);
        height: 64px;
    }

    .site-top-strip {
        padding: 9px 14px;
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .hero {
        padding: 150px 0 90px;
    }

    .hero__content {
        width: min(92%, 520px);
    }

    .hero__stats {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .product__steps {
        gap: 14px;
    }
}


\n    .site-header__inner {\n        width: min(92%, 400px);\n        height: 64px;\n    }\n\n
    .site-top-strip {
        padding: 9px 14px;
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .site-header__inner {
    width: min(960px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 74px;
}

    .site-header__menu,
    .site-header__whatsapp {
        width: 42px;
        height: 42px;
    }

    .site-header__menu span {
        width: 16px;
    }

    .site-header__drawer {
        width: min(300px, 86%);
        padding: 96px 24px 36px;
        gap: 20px;
    }

    .site-header__close {
        width: 38px;
        height: 38px;
    }

    .site-header__close span {
        width: 14px;
    }

    .site-header__logo {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .hero {
        padding: 120px 0 90px;
    }

    .hero__content {
        width: min(92%, 520px);
    }

    .hero__stats {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .product__steps {
        gap: 14px;
    }
}

@media (max-width: 520px) {
    .site-top-strip {
        padding: 8px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .site-header__inner {
    width: min(960px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 74px;
}

    .site-header__drawer {
        width: min(280px, 88%);
        padding: 90px 22px 34px;
    }

    .site-header__close {
        width: 34px;
        height: 34px;
    }

    .site-header__close span {
        width: 12px;
    }

    .site-header__logo {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .hero {
        padding: 100px 0 80px;
    }
}

.legal-body {
    background: radial-gradient(circle at 20% 20%, rgba(255, 61, 87, 0.08), transparent 44%), var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-page {
    margin: 140px auto 70px;
    width: min(860px, 92%);
    background: rgba(12, 14, 24, 0.82);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: clamp(36px, 6vw, 52px);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.5);
    
}

.legal-badge {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 18px;
}

.legal-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(248, 249, 252, 0.76);
    max-width: 640px;
    margin: 0 auto;
}

.legal-section + .legal-section {
    margin-top: clamp(28px, 5vw, 40px);
}

.legal-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 14px;
    color: var(--highlight);
}

.legal-section p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    color: rgba(244, 246, 255, 0.78);
    margin-bottom: 12px;
}

.legal-list {
    padding-left: 20px;
    display: grid;
    gap: 10px;
    list-style: disc;
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    color: rgba(244, 246, 255, 0.82);
}

.legal-list a {
    color: var(--highlight);
    font-weight: 600;
}

.legal-footer {
    margin-top: clamp(36px, 6vw, 50px);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(130deg, var(--accent), var(--accent-strong));
    color: #fff;
    border: none;
    box-shadow: 0 16px 34px rgba(255, 45, 85, 0.32);
    transition: transform 0.2s ease;
}

.legal-cta.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(244, 246, 255, 0.8);
    box-shadow: none;
}

.legal-cta:hover {
    transform: translateY(-3px);
}

@media (max-width: 620px) {
    .legal-body {
        padding: 0;
    }

    .legal-page {
        width: min(92%, 500px);
        margin: 120px auto 60px;
        padding: 32px 20px;
    }

    .legal-footer {
        flex-direction: column;
    }

    .legal-cta {
        width: 100%;
    }
}


.story {
    background: radial-gradient(circle at 20% 20%, rgba(255, 61, 87, 0.08), transparent 48%), rgba(8, 9, 15, 0.92);
}

.story__grid {
    display: grid;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.story__content {
    display: grid;
    gap: 16px;
}

.story__content--with-portrait {
    gap: 20px;
}

.story__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

.story__portrait {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 38px rgba(5, 6, 10, 0.5);
}

.story__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 61, 87, 0.18);
    border: 1px solid rgba(255, 61, 87, 0.35);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: #ff6b8d;
}

.story__title {
    font-size: clamp(2.2rem, 4.2vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
}

.story__title span {
    color: var(--highlight);
}

.story__content p {
    font-family: "Inter", sans-serif;
    color: rgba(248, 249, 252, 0.86);
    line-height: 1.6;
}

.story__cta {
    margin-top: 8px;
}

@media (max-width: 620px) {
    .story__heading {
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .story__portrait {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        justify-self: end;
    }
}























































