/**
 * youfree landing — v2 "Aurora Glass"
 * Self-contained. Light, lively, glassy, large-platform energy.
 * Aurora mesh background · frosted glass surfaces · floating pill nav ·
 * bento feature grid · Clash Display + Satoshi · clear dark footer.
 */

/* Design tokens (:root) live in variables.css — loaded before this file. */

/* ═══════════ Base ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans); font-size: 1.0625rem; line-height: 1.6; color: var(--text);
    background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative;
    min-height: 100vh; display: flex; flex-direction: column;
}
body.rtl { font-family: var(--font-ar); }
/* Main grows so short pages (e.g. contact) still push the footer to the bottom */
#main-content { flex: 1 0 auto; }
.footer { flex-shrink: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 8px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.04; letter-spacing: -0.02em; font-weight: 600; }
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 { font-family: var(--font-ar); letter-spacing: normal; line-height: 1.3; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--ease-soft), transform var(--ease-soft); }
.reveal.visible, .reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════ Aurora background (the "life" + "light") ═══════════ */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: linear-gradient(180deg, #F4F8FF 0%, #EAF1FF 100%); }
.aurora span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.aurora span:nth-child(1) { width: 46vw; height: 46vw; left: -8vw; top: -10vw; background: radial-gradient(circle, #6AA8FF, transparent 70%); animation: drift1 22s ease-in-out infinite; }
.aurora span:nth-child(2) { width: 40vw; height: 40vw; right: -6vw; top: 2vw; background: radial-gradient(circle, #45D0C9, transparent 70%); animation: drift2 26s ease-in-out infinite; }
.aurora span:nth-child(3) { width: 38vw; height: 38vw; left: 22vw; bottom: -14vw; background: radial-gradient(circle, #5FE0E6, transparent 70%); animation: drift3 30s ease-in-out infinite; opacity: 0.4; }
.aurora::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(11,26,51,0.04) 1px, transparent 1px); background-size: 22px 22px; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw, 5vw) scale(1.1); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5vw, 7vw) scale(1.08); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw, -6vw) scale(1.12); } }

/* ═══════════ Floating glass pill nav ═══════════ */
.nav { position: fixed; inset-inline: 0; top: clamp(0.75rem, 2vw, 1.25rem); z-index: 100; display: flex; justify-content: center; padding-inline: var(--pad); pointer-events: none; }
.nav__pill {
    pointer-events: auto; width: 100%; max-width: 1080px;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: var(--glass-strong); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border); border-radius: var(--pill);
    box-shadow: var(--glass-shadow-sm); padding: 0.55rem 0.7rem 0.55rem 1.1rem;
    transition: box-shadow var(--ease), background var(--ease);
}
.nav.nav--scrolled .nav__pill { box-shadow: var(--glass-shadow); background: rgba(255,255,255,0.8); }
.nav__brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.nav__brand img { height: 3rem; width: auto; }
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__link { font-size: 0.95rem; font-weight: 500; color: var(--text); padding: 0.5rem 0.9rem; border-radius: var(--pill); transition: color var(--ease), background var(--ease); }
.nav__link:hover { color: var(--blue-deep); background: rgba(30,144,255,0.10); }
.nav__right { display: flex; align-items: center; gap: 0.5rem; }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-switcher__btn { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border); border-radius: var(--pill); padding: 0.5rem 0.8rem; font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.lang-switcher__btn:hover { background: #fff; }
.lang-switcher__dropdown { position: absolute; inset-inline-end: 0; top: calc(100% + 0.6rem); min-width: 11rem; background: var(--glass-strong); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 1rem; box-shadow: var(--glass-shadow); padding: 0.4rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--ease); }
.lang-switcher.open .lang-switcher__dropdown { opacity: 1; visibility: visible; transform: none; }
.lang-switcher__item { display: block; padding: 0.55rem 0.8rem; border-radius: 0.7rem; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.lang-switcher__item:hover { background: rgba(30,144,255,0.10); }
.lang-switcher__item.active { color: var(--blue-deep); font-weight: 700; background: rgba(30,144,255,0.12); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; padding: 0.72rem 1.3rem; border-radius: var(--pill); border: 1px solid transparent; cursor: pointer; transition: transform var(--ease), box-shadow var(--ease), background var(--ease); white-space: nowrap; }
body.rtl .btn { font-family: var(--font-ar); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 14px 34px -12px rgba(30,144,255,0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(30,144,255,0.8); }
.btn--glass { background: var(--glass); backdrop-filter: var(--glass-blur); border-color: var(--glass-border); color: var(--ink); box-shadow: var(--glass-shadow-sm); }
.btn--glass:hover { transform: translateY(-2px); background: var(--glass-strong); }
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }
/* Keep the submit icon inline with its label (the reset sets svg{display:block}) */
.btn-text, .btn-sending { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* Mobile nav */
.nav__toggle { display: none; width: 2.6rem; height: 2.6rem; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: rgba(255,255,255,0.5); border: 1px solid var(--glass-border); border-radius: var(--pill); cursor: pointer; }
.nav__toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease); }
.mobile { position: fixed; inset-inline: var(--pad); top: 4.75rem; z-index: 95; background: var(--glass-strong); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 1.5rem; box-shadow: var(--glass-shadow); padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; opacity: 0; visibility: hidden; transform: translateY(-12px) scale(0.98); transition: var(--ease); }
.mobile.open { opacity: 1; visibility: visible; transform: none; }
.mobile .nav__link { padding: 0.85rem 1rem; font-size: 1.05rem; }
.mobile__langs { margin-top: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.mobile__lang-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--hint); margin-bottom: 0.6rem; }
.mobile__lang-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mobile__lang-item { padding: 0.45rem 0.9rem; border: 1px solid var(--glass-border); border-radius: var(--pill); font-size: 0.9rem; font-weight: 600; background: rgba(255,255,255,0.5); }
.mobile__lang-item.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ═══════════ Hero (two columns: copy + illustration) ═══════════ */
.hero { padding-top: clamp(7rem, 13vh, 9.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); }
.hero__text { text-align: start; }
.hero__chip { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--pill); padding: 0.45rem 1rem; font-size: 0.92rem; font-weight: 600; color: var(--ink); box-shadow: var(--glass-shadow-sm); margin-bottom: 1.6rem; }
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(30,144,255,0.18); flex: 0 0 auto; }
.hero__title { font-size: clamp(2.6rem, 5.2vw, 4.4rem); letter-spacing: -0.035em; margin-bottom: 1.3rem; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue); background-size: 200% auto; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 34rem; margin: 0 0 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.4rem; font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.hero__trust b { color: var(--ink); }
.hero__trust .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }
/* RTL: flip the "know more" arrow so it points the reading direction */
body.rtl .arrow { transform: scaleX(-1); }

/* Hero illustration + merged glass elements */
.hero__art { position: relative; display: grid; place-items: center; }
.hero__art-glow { position: absolute; inset: 6% 6% 10%; z-index: 0; border-radius: 50%; background: radial-gradient(circle at 50% 45%, rgba(139,123,255,0.40), rgba(30,144,255,0.30) 45%, transparent 72%); filter: blur(30px); }
.hero__img { position: relative; z-index: 1; width: min(100%, 520px); height: auto; filter: drop-shadow(0 30px 60px rgba(20,60,130,0.22)); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--glass-strong); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--pill); box-shadow: var(--glass-shadow-sm); padding: 0.5rem 0.9rem; font-weight: 700; }
.float--live { top: 8%; inset-inline-start: -2%; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink); }
.float--live .pulse { width: 9px; height: 9px; border-radius: 50%; background: #FF7A66; animation: pulse 1.6s infinite; flex: 0 0 auto; }
.float--stat { bottom: 9%; inset-inline-end: -3%; flex-direction: column; gap: 0; align-items: flex-start; padding: 0.6rem 1rem; }
.float--stat b { font-family: var(--font-display); font-size: 1.15rem; color: var(--blue-deep); line-height: 1; }
.float--stat span { font-size: 0.72rem; font-weight: 600; color: var(--muted); }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(255,122,102,0.5);} 100%{ box-shadow:0 0 0 9px rgba(255,122,102,0);} }

/* ═══════════ Sections + bento features ═══════════ */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.head { max-width: 44rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-eyebrow); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 1rem; }
.head h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.head p { font-size: 1.1rem; color: var(--muted); }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 1.1rem; }
.card { background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--glass-shadow-sm); transition: transform var(--ease), box-shadow var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--glass-shadow); }
.card--wide { grid-column: span 2; }
.card--tall { grid-row: span 2; }
.card__ic { width: 3.1rem; height: 3.1rem; border-radius: 1rem; display: grid; place-items: center; background: var(--grad-brand); color: #fff; box-shadow: 0 12px 26px -10px rgba(30,144,255,0.7); margin-bottom: 1.2rem; }
.card__ic svg { width: 1.4rem; height: 1.4rem; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.98rem; color: var(--muted); }
.card__art { margin-top: auto; padding-top: 1.4rem; }
.card__art .bars { display: flex; align-items: flex-end; gap: 0.4rem; height: 4rem; }
.card__art .bars i { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad-brand); opacity: 0.85; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 1.8rem 1rem; box-shadow: var(--glass-shadow-sm); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--blue-deep); line-height: 1; letter-spacing: -0.03em; }
.stat span { font-size: 0.95rem; font-weight: 600; color: var(--muted); margin-top: 0.4rem; display: block; }

/* Download band */
.cta-wrap { padding: 0 var(--pad) clamp(3rem, 6vw, 5rem); }
.cta { max-width: var(--container); margin-inline: auto; position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(3rem, 7vw, 5rem) var(--pad); text-align: center; background: linear-gradient(130deg, #1E90FF 0%, #2C99FF 60%, #34D6E0 110%); box-shadow: 0 40px 90px -30px rgba(30,90,200,0.6); }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 80% 0%, rgba(255,255,255,0.25), transparent 60%); }
.cta__inner { position: relative; color: #fff; max-width: 44rem; margin-inline: auto; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.9rem; }
.cta p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2.2rem; }
.cta__stores { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.store img { height: 3.2rem; width: auto; border-radius: 0.9rem; }
.store--apk { display: inline-flex; align-items: center; gap: 0.7rem; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.4); border-radius: 1rem; padding: 0.7rem 1.3rem; color: #fff; backdrop-filter: blur(6px); transition: var(--ease); }
.store--apk:hover { background: rgba(255,255,255,0.26); transform: translateY(-2px); }
.store--apk small { display: block; font-size: 0.7rem; opacity: 0.85; }
.store--apk b { display: block; font-size: 1rem; }

/* ═══════════ Footer (CLEAR — dark, high-contrast, comfortable size) ═══════════ */
.footer { background: #0A1A33; color: #C4D2E6; padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.footer__brand-logo img { height: 4rem; width: auto; }
.footer__tag { font-size: 1rem; line-height: 1.6; color: #9FB2CC; max-width: 24rem; }
.footer__title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 1.1rem; letter-spacing: 0.01em; }
.footer__links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer__link { font-size: 1rem; font-weight: 500; color: #C4D2E6; transition: color var(--ease); }
.footer__link:hover { color: #fff; }
.footer__bottom { margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; align-items: center; justify-content: space-between; }
.footer__bottom p { font-size: 0.95rem; color: #8DA2BE; }

/* ═══════════ Inner pages (page / contact / support) ═══════════ */
.page-hero { padding-top: clamp(8rem, 14vh, 11rem); padding-bottom: clamp(2rem, 4vw, 3rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.03em; }
.page-hero p { font-size: 1.15rem; color: var(--muted); max-width: 40rem; margin: 1rem auto 0; }
.page-hero__meta { font-size: 0.95rem; color: var(--muted); margin-top: 0.85rem; }

.prose { max-width: 52rem; margin-inline: auto; padding: clamp(2rem, 4vw, 3.5rem) var(--pad) clamp(3rem,6vw,5rem); }
.prose__card { background: var(--glass-strong); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--glass-shadow); padding: clamp(1.75rem, 4vw, 3rem); }
.content { font-size: 1.0625rem; line-height: 1.8; color: var(--text); }
.content h1, .content h2, .content h3 { margin: 2rem 0 0.85rem; color: var(--ink); }
.content h2 { font-size: 1.6rem; } .content h3 { font-size: 1.3rem; }
.content p { margin-bottom: 1.15rem; }
.content ul, .content ol { margin: 0 0 1.15rem; padding-inline-start: 1.4rem; }
.content ul { list-style: disc; } .content ol { list-style: decimal; }
.content li { margin-bottom: 0.5rem; } .content li::marker { color: var(--blue); }
.content a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.content blockquote { border-inline-start: 3px solid var(--blue); background: rgba(30,144,255,0.07); padding: 1rem 1.25rem; border-radius: 0 1rem 1rem 0; margin: 1.5rem 0; }
.page-cta { margin-top: 2.5rem; text-align: center; }

/* Contact */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.5rem; max-width: var(--container); margin-inline: auto; padding: clamp(2rem,4vw,3rem) var(--pad) clamp(3rem,6vw,5rem); align-items: start; }
.info, .form { background: var(--glass-strong); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--glass-shadow); padding: clamp(1.5rem, 3vw, 2.25rem); }
.info h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.info__desc { color: var(--muted); margin-bottom: 1.75rem; }
.info__item { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.1rem; }
.info__ic { width: 2.6rem; height: 2.6rem; border-radius: 0.9rem; background: var(--grad-brand); display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 10px 24px -10px rgba(30,144,255,0.7); }
.info__label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); margin-bottom: 0.35rem; }
.info__value { display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink); word-break: break-all; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.group { margin-bottom: 1.1rem; }
.label { display: block; font-size: 0.92rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; }
.input, .textarea { width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink); background: rgba(255,255,255,0.65); border: 1px solid var(--glass-border); border-radius: 0.9rem; padding: 0.8rem 1rem; transition: var(--ease); }
.input::placeholder, .textarea::placeholder { color: var(--hint); }
.input:focus, .textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(30,144,255,0.15); outline: none; }
.textarea { resize: vertical; min-height: 8rem; }
.input.is-invalid, .textarea.is-invalid { border-color: #FF7A66; }
.error { color: #E0573F; font-size: 0.8rem; margin-top: 0.4rem; }
.alert { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.9rem 1.1rem; border-radius: 0.9rem; font-size: 0.95rem; font-weight: 500; margin-bottom: 1.25rem; }
.alert--success { background: #E7FBF4; color: #0B7A5C; border: 1px solid #BBF0DF; }
.alert--error { background: #FFEFEC; color: #C0432C; border: 1px solid #FFD4CB; }

/* Support / FAQ */
.support { max-width: 48rem; margin-inline: auto; padding: clamp(2rem,4vw,3rem) var(--pad) clamp(3rem,6vw,5rem); }
.faq-title { font-size: 1.8rem; text-align: center; margin-bottom: 2rem; }
.faq { display: flex; flex-direction: column; gap: 0.85rem; }
.faq__item { background: var(--glass-strong); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius); box-shadow: var(--glass-shadow-sm); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: start; background: none; border: none; cursor: pointer; padding: 1.25rem 1.5rem; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
body.rtl .faq__q { font-family: var(--font-ar); }
.faq__chev { flex: 0 0 auto; width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center; background: rgba(30,144,255,0.12); color: var(--blue-deep); transition: transform var(--ease); }
.faq__item.open .faq__chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; padding: 0 1.5rem; color: var(--muted); line-height: 1.75; transition: max-height var(--ease-soft), padding var(--ease-soft); }
.faq__item.open .faq__a { max-height: 30rem; padding-bottom: 1.4rem; }
.support-cta { margin-top: 2.5rem; text-align: center; background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--glass-shadow-sm); padding: 2.5rem 1.5rem; }
.support-cta p { font-size: 1.1rem; color: var(--text); margin-bottom: 1.5rem; }
.support-cta .actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 940px) {
    .nav__links { display: none; }
    .nav__right .lang-switcher, .nav__right .btn { display: none; }
    .nav__toggle { display: flex; }
    .hero { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; padding-top: clamp(6.5rem, 16vh, 9rem); }
    .hero__text { text-align: center; }
    .hero__chip { margin-inline: auto; }
    .hero__lead { margin-inline: auto; }
    .hero__actions, .hero__trust { justify-content: center; }
    .hero__art { max-width: 380px; margin-inline: auto; width: 100%; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .card--wide, .card--tall { grid-column: auto; grid-row: auto; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .contact { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
    .bento, .form__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════ Reduced motion ═══════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .aurora span { animation: none; }
    .grad-text { animation: none; }
}
