@font-face {
    font-family: "KReyhan";
    src: url("../../fonts/KReyhan.eot");
    src: url("../../fonts/KReyhan.eot?#iefix") format("embedded-opentype"),
         url("../../fonts/KReyhan.woff") format("woff"),
         url("../../fonts/KReyhan.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #07090d;
    --bg-2: #0b0f15;
    --card: rgba(19, 26, 36, .82);
    --card-solid: #121923;
    --card-2: #17202c;
    --gold: #f7c948;
    --gold-2: #ffdf7a;
    --gold-3: #b8860b;
    --orange: #ff8a1f;
    --text: #f6f4ed;
    --muted: #a9b1bc;
    --soft: rgba(255, 255, 255, .07);
    --border: rgba(255, 255, 255, .095);
    --border-gold: rgba(247, 201, 72, .38);
    --danger: #ff6b7a;
    --success: #4fdc9a;
    --shadow: 0 24px 75px rgba(0, 0, 0, .45);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "KReyhan", "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(247, 201, 72, .20), transparent 33rem),
        radial-gradient(circle at 88% 12%, rgba(255, 138, 31, .12), transparent 30rem),
        linear-gradient(180deg, var(--bg) 0%, #0b1017 42%, var(--bg) 100%);
    overflow-x: hidden;
    font-size: 14px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 72%);
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.05rem; }
main { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }

.site-header {
    width: min(var(--max), calc(100% - 28px));
    margin: 14px auto 0;
    min-height: 68px;
    padding: 10px;
    border: 1px solid var(--border);
    background: rgba(10, 14, 20, .78);
    backdrop-filter: blur(22px);
    border-radius: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    position: sticky;
    top: 10px;
    z-index: 50;
    box-shadow: 0 14px 44px rgba(0,0,0,.30);
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.logo span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #090b0f;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(247, 201, 72, .25);
}
.logo strong { font-size: 17px; letter-spacing: -.2px; white-space: nowrap; }

.site-nav {
    justify-self: center;
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.055);
}
.site-nav a {
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 999px;
    transition: .2s ease;
}
.site-nav a:hover { color: var(--text); background: rgba(247,201,72,.12); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.portal-user-pill {
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-width: 190px;
    padding: 8px 12px;
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    background: rgba(247,201,72,.08);
}
.portal-user-pill strong { font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.portal-user-pill span { color: var(--muted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.btn-primary,
.btn-secondary,
.header-cta,
.header-ghost,
.btn-dark,
.btn-line {
    border: 0;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 12.5px;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn-primary,
.header-cta {
    color: #0a0d12;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 12px 28px rgba(247, 201, 72, .22);
}
.btn-secondary,
.header-ghost,
.btn-line {
    color: var(--text);
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
}
.btn-dark { color: var(--gold); background: rgba(0,0,0,.42); border: 1px solid var(--border-gold); }
.btn-primary:hover,
.btn-secondary:hover,
.header-cta:hover,
.header-ghost:hover,
.btn-dark:hover,
.btn-line:hover { transform: translateY(-1px); }
.full { width: 100%; }

.hero {
    min-height: calc(100vh - 106px);
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 28px;
    align-items: center;
    padding: 44px 0 36px;
}
.kicker,
.micro-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(247,201,72,.10);
    border: 1px solid rgba(247,201,72,.22);
    font-size: 12px;
    font-weight: 900;
}
.micro-kicker { padding: 6px 9px; font-size: 11px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1,
.page-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 6vw, 72px);
    line-height: .92;
    letter-spacing: -2.4px;
}
.hero h1 span,
.page-hero h1 span,
.gradient-text {
    background: linear-gradient(135deg, #fff7d6, var(--gold), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p,
.page-hero p,
.large-text {
    color: var(--muted);
    font-size: clamp(14px, 1.7vw, 16px);
    line-height: 1.75;
    max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    max-width: 600px;
}
.stats div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
}
.stats strong { display: block; font-size: 22px; color: var(--gold); margin-bottom: 4px; }
.stats span { color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.hero-img-wrap {
    border-radius: 42px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: rgba(255,255,255,.04);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}
.hero-orbit {
    position: absolute;
    inset: 8% 3% auto auto;
    width: 220px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(12,17,24,.86);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.hero-orbit strong { color: var(--gold); display: block; font-size: 22px; }
.hero-orbit span { color: var(--muted); font-size: 12px; }
.hero-floating {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 235px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(12,17,24,.88);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.hero-floating h3 { margin: 8px 0 5px; font-size: 18px; }
.hero-floating p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.section,
.page-hero,
.feature-grid,
.split-section,
.category-grid,
.pricing-wrap,
.checkout-shell,
.auth-shell,
.contact-layout,
.legal-card,
.process-strip,
.showcase-section {
    margin: 26px 0;
}
.page-hero {
    padding: 58px 0 22px;
    text-align: center;
    display: grid;
    justify-items: center;
}
.page-hero h1 { max-width: 860px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.feature-card,
.category-card,
.pricing-card,
.info-card,
.faq-card,
.contact-card,
.auth-card,
.checkout-summary,
.checkout-form,
.legal-card,
.process-card,
.mini-plan-card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.feature-card,
.category-card,
.info-card,
.faq-card,
.contact-card,
.process-card,
.mini-plan-card { padding: 22px; }
.feature-card span,
.process-card span {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(247,201,72,.14);
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 14px;
}
.feature-card h3,
.category-card h3,
.info-card h2,
.faq-card h2,
.process-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p,
.category-card p,
.info-card p,
.faq-card p,
.process-card p,
.contact-card p,
.mini-plan-card p { color: var(--muted); line-height: 1.65; font-size: 13px; margin-bottom: 0; }

.showcase-section {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(247,201,72,.12), rgba(255,255,255,.035));
    border: 1px solid var(--border);
}
.showcase-section img { border-radius: 28px; border: 1px solid var(--border); }
.showcase-content { padding: 18px; }
.showcase-content h2 { font-size: clamp(26px, 4vw, 46px); line-height: 1; letter-spacing: -1.4px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.check-list li { color: #dfe3e8; font-size: 13px; display: flex; gap: 9px; align-items: center; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; background: rgba(247,201,72,.16); color: var(--gold); display: grid; place-items: center; font-size: 12px; }

.split-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-card { min-height: 230px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.category-card img { width: 100%; height: 130px; object-fit: cover; border-radius: 20px; border: 1px solid var(--border); margin-bottom: 16px; }
.category-card .icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; background: rgba(247,201,72,.14); color: var(--gold); margin-bottom: 12px; font-size: 22px; }
.category-card .meta { margin-top: auto; color: var(--gold-2); font-size: 12px; font-weight: 800; }

.process-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.process-card { position: relative; min-height: 190px; }
.process-card::after { content: ""; position: absolute; inset: auto 18px 18px auto; width: 54px; height: 54px; border-radius: 50%; background: radial-gradient(circle, rgba(247,201,72,.30), transparent 68%); }

.pricing-wrap { display: grid; justify-items: center; }
.pricing-grid {
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    justify-content: center;
}
.pricing-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top right, rgba(247,201,72,.13), transparent 34%),
        rgba(19, 26, 36, .88);
}
.pricing-card.popular { border-color: var(--border-gold); transform: translateY(-8px); }
.pricing-card::after {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,201,72,.22), transparent 68%);
}
.badge {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0b0e13;
    background: var(--gold);
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 16px;
}
.pricing-card h2 { font-size: 24px; margin-bottom: 9px; }
.pricing-card p { color: var(--muted); line-height: 1.65; font-size: 13px; }
.price {
    margin: 18px 0;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1.4px;
    color: var(--gold);
}
.price span { font-size: 12px; color: var(--muted); letter-spacing: 0; }
.discount-label { color: var(--gold-2) !important; font-weight: 900; }
.plan-features { list-style: none; padding: 0; margin: 8px 0 24px; display: grid; gap: 10px; }
.plan-features li { font-size: 13px; color: #e8e1c8; display: flex; gap: 9px; }
.plan-features li::before { content: "✦"; color: var(--gold); }
.pricing-card .btn-primary { margin-top: auto; }
.pricing-note {
    width: min(920px, 100%);
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
}

.checkout-shell { display: grid; grid-template-columns: .95fr 1.05fr; gap: 18px; align-items: start; padding-top: 42px; }
.checkout-summary,
.checkout-form { padding: 28px; }
.checkout-summary { background: radial-gradient(circle at top right, rgba(247,201,72,.18), transparent 42%), var(--card); }
.account-box,
.coupon-box,
.payment-preview {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    margin: 18px 0;
}
.account-box span,
.small-note { color: var(--muted); font-size: 12px; }
.checkout-form label,
.auth-card label { display: block; margin: 13px 0 7px; color: #e8e1c8; font-size: 12.5px; font-weight: 800; }
input, textarea, select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(5, 8, 12, .78);
    color: var(--text);
    padding: 0 14px;
    outline: none;
}
textarea { min-height: 130px; padding-top: 12px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--border-gold); box-shadow: 0 0 0 4px rgba(247,201,72,.08); }
.coupon-box { grid-template-columns: repeat(3, 1fr); }
.coupon-box div { display: grid; gap: 4px; }
.coupon-box span { color: var(--muted); font-size: 11px; }
.coupon-box strong { color: var(--gold); }
.alert { margin: 15px 0; padding: 13px; border-radius: 16px; font-size: 13px; line-height: 1.5; }
.alert.success { color: #c9ffe3; background: rgba(79, 220, 154, .13); border: 1px solid rgba(79, 220, 154, .28); }
.alert.danger { color: #ffd7dc; background: rgba(255, 107, 122, .12); border: 1px solid rgba(255, 107, 122, .30); }

.auth-shell {
    min-height: calc(100vh - 170px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 42px 0;
}
.auth-visual {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(247,201,72,.10), rgba(255,255,255,.035));
    border: 1px solid var(--border);
    min-height: 560px;
    display: grid;
    align-content: center;
}
.auth-visual img { border-radius: 34px; border: 1px solid var(--border); margin-bottom: 20px; }
.auth-card { padding: 28px; max-width: 520px; width: 100%; justify-self: center; }
.auth-card h1 { font-size: clamp(30px, 5vw, 48px); line-height: 1; letter-spacing: -1.2px; margin: 15px 0 10px; }
.auth-card p { color: var(--muted); line-height: 1.65; }
.auth-switch { margin-top: 16px; color: var(--muted); font-size: 13px; text-align: center; }
.auth-switch a { color: var(--gold); font-weight: 900; }
.social-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 18px 0; }
.social-btn { min-height: 44px; border-radius: 15px; border: 1px solid var(--border); background: rgba(255,255,255,.06); color: var(--text); display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 800; }
.divider { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; margin: 18px 0; }
.divider::before,.divider::after { content:""; flex:1; height:1px; background: var(--border); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; align-items: start; }
.contact-card { padding: 26px; }
.contact-stack { display: grid; gap: 14px; }

.faq-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.legal-card { padding: 28px; max-width: 880px; margin-left: auto; margin-right: auto; }
.legal-card p { color: var(--muted); line-height: 1.75; }

.site-footer {
    width: min(var(--max), calc(100% - 28px));
    margin: 36px auto 18px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: rgba(10, 14, 20, .82);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}
.site-footer div:first-child { display: grid; gap: 4px; }
.site-footer strong { color: var(--gold); }
.site-footer span,
.footer-links a { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

.mobile-nav-toggle { display: none; }
.mobile-nav-button { display: none; }

@media (max-width: 1060px) {
    .site-header { grid-template-columns: auto auto 1fr; }
    .site-nav { order: 3; grid-column: 1 / -1; width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: 18px; }
    .header-actions { justify-self: end; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: auto; }
    .showcase-section,
    .checkout-shell,
    .auth-shell,
    .contact-layout { grid-template-columns: 1fr; }
    .feature-grid,
    .process-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .auth-visual { min-height: auto; }
}

@media (max-width: 760px) {
    body { font-size: 13px; }
    main { width: min(100% - 20px, var(--max)); }
    .site-header { width: min(100% - 20px, var(--max)); margin-top: 10px; border-radius: 20px; grid-template-columns: auto 1fr auto; gap: 8px; }
    .logo span { width: 38px; height: 38px; border-radius: 14px; }
    .logo strong { font-size: 15px; }
    .header-actions { gap: 6px; }
    .header-cta, .header-ghost { min-height: 38px; padding: 0 10px; font-size: 11.5px; }
    .portal-user-pill { max-width: 120px; padding: 7px 9px; }
    .site-nav { padding: 4px; gap: 2px; }
    .site-nav a { font-size: 11.5px; padding: 8px 10px; }
    .hero { padding-top: 30px; gap: 18px; }
    .hero h1, .page-hero h1 { font-size: clamp(31px, 12vw, 48px); letter-spacing: -1.4px; }
    .page-hero { padding-top: 40px; }
    .stats,
    .feature-grid,
    .split-section,
    .category-grid,
    .process-strip,
    .pricing-grid,
    .faq-section,
    .coupon-box,
    .social-row { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .pricing-card { min-height: auto; padding: 24px; }
    .price { font-size: 38px; }
    .hero-orbit,
    .hero-floating { position: static; width: 100%; margin-top: 12px; }
    .hero-img-wrap { transform: none; }
    .auth-card,
    .checkout-summary,
    .checkout-form,
    .contact-card,
    .legal-card { padding: 22px; border-radius: 24px; }
    .auth-visual { display: none; }
    .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
    .header-cta { display: none; }
    .header-ghost { padding: 0 12px; }
    .site-nav a { padding: 8px 9px; }
}

/* =========================================================
   PREMIUM INTERACTION LAYER
   Adds subtle depth and feedback without changing page logic.
   ========================================================= */
.feature-card,
.category-card,
.pricing-card,
.info-card,
.faq-card,
.contact-card,
.auth-card,
.checkout-summary,
.checkout-form,
.legal-card,
.process-card,
.mini-plan-card,
.showcase-section {
    position: relative;
    isolation: isolate;
    transition:
        transform .28s cubic-bezier(.2,.8,.2,1),
        border-color .28s ease,
        box-shadow .28s ease,
        background-color .28s ease;
}

.feature-card::before,
.category-card::before,
.pricing-card::before,
.info-card::before,
.faq-card::before,
.contact-card::before,
.auth-card::before,
.checkout-summary::before,
.checkout-form::before,
.legal-card::before,
.process-card::before,
.mini-plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(circle at 20% 0%, rgba(247,201,72,.14), transparent 46%);
    transition: opacity .28s ease;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover,
    .category-card:hover,
    .pricing-card:hover,
    .info-card:hover,
    .faq-card:hover,
    .contact-card:hover,
    .auth-card:hover,
    .checkout-summary:hover,
    .checkout-form:hover,
    .legal-card:hover,
    .process-card:hover,
    .mini-plan-card:hover {
        transform: translateY(-7px);
        border-color: rgba(247,201,72,.44);
        box-shadow:
            0 30px 80px rgba(0,0,0,.52),
            0 0 0 1px rgba(247,201,72,.08),
            0 18px 48px rgba(247,201,72,.08);
    }

    .feature-card:hover::before,
    .category-card:hover::before,
    .pricing-card:hover::before,
    .info-card:hover::before,
    .faq-card:hover::before,
    .contact-card:hover::before,
    .auth-card:hover::before,
    .checkout-summary:hover::before,
    .checkout-form:hover::before,
    .legal-card:hover::before,
    .process-card:hover::before,
    .mini-plan-card:hover::before {
        opacity: 1;
    }

    .showcase-section:hover {
        transform: translateY(-5px);
        border-color: rgba(247,201,72,.42);
        box-shadow: 0 32px 90px rgba(0,0,0,.48), 0 18px 50px rgba(247,201,72,.07);
    }

    .category-card:hover .category-image img,
    .showcase-section:hover .showcase-image-wrap img {
        transform: scale(1.055);
        filter: saturate(1.08) contrast(1.03);
    }

    .category-card:hover .category-image-label {
        transform: translateY(-2px);
        background: rgba(8,11,16,.90);
        border-color: rgba(247,201,72,.55);
    }

    .btn-primary:hover,
    .header-cta:hover {
        box-shadow: 0 18px 38px rgba(247,201,72,.30);
    }
}

.category-image,
.showcase-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #090d12;
}

.category-image {
    height: 150px;
    margin-bottom: 16px;
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

.category-image::after,
.showcase-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 42%, rgba(4,7,10,.78) 100%);
}

.category-image-label,
.showcase-image-badge {
    position: absolute;
    z-index: 2;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(247,201,72,.32);
    background: rgba(8,11,16,.76);
    color: var(--gold-2);
    font-size: 10.5px;
    font-weight: 900;
    backdrop-filter: blur(12px);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.showcase-image-wrap {
    min-height: 420px;
    border-radius: 28px;
}

.showcase-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

.showcase-image-badge {
    left: 18px;
    bottom: 18px;
    font-size: 11px;
}

@media (max-width: 760px) {
    .category-image { height: 185px; }
    .showcase-image-wrap,
    .showcase-image-wrap img { min-height: 300px; }
}

.showcase-image-wrap img {
    border: 0;
    border-radius: 0;
}

/* =========================================================
   GYMAI COMMERCIAL CONTENT + APP DOWNLOAD SECTION
   Shared by all public pages except Pricing.
   ========================================================= */
.app-download-section {
    position: relative;
    isolation: isolate;
    margin: 34px 0;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 84% 18%, rgba(247,201,72,.24), transparent 30%),
        radial-gradient(circle at 12% 96%, rgba(255,138,31,.11), transparent 30%),
        linear-gradient(135deg, rgba(20,27,37,.96), rgba(8,12,18,.94));
    box-shadow: var(--shadow);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}

.app-download-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .45;
    background-image:
        linear-gradient(rgba(247,201,72,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247,201,72,.04) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.app-download-copy { padding: 12px; }
.app-download-copy h2 {
    margin: 15px 0 13px;
    max-width: 720px;
    font-size: clamp(28px, 4.4vw, 52px);
    line-height: .98;
    letter-spacing: -1.5px;
}
.app-download-copy h2 span {
    background: linear-gradient(135deg, #fff6c7, var(--gold), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.app-points {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.app-points div {
    min-height: 116px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.app-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-2);
    font-size: 13px;
}
.app-points span {
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.55;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.store-badge {
    min-width: 190px;
    min-height: 58px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    color: var(--text);
    background: rgba(3,6,10,.82);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.store-badge small {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 8.5px;
    line-height: 1;
    letter-spacing: .8px;
}
.store-badge strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
}
.store-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    color: #080b10;
    background: linear-gradient(135deg, var(--gold-2), var(--orange));
    font-size: 14px;
    font-weight: 900;
}
.google-play-icon { padding-left: 2px; }

.app-download-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}
.app-download-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,.48));
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.app-visual-glow {
    position: absolute;
    z-index: 0;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,201,72,.30), rgba(247,201,72,.06) 52%, transparent 72%);
    filter: blur(2px);
}
.app-rating-card {
    position: absolute;
    z-index: 3;
    right: 4%;
    bottom: 8%;
    min-width: 190px;
    padding: 13px 15px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    background: rgba(8,12,18,.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(0,0,0,.40);
}
.app-rating-card span { color: var(--muted); font-size: 10.5px; }
.app-rating-card strong { color: var(--gold-2); font-size: 13px; }

.legal-content { display: grid; gap: 4px; }
.legal-content h2 { margin: 20px 0 5px; font-size: 19px; }
.legal-content p { margin-bottom: 3px; color: var(--muted); line-height: 1.75; font-size: 13px; }

@media (hover: hover) and (pointer: fine) {
    .app-download-section:hover {
        transform: translateY(-5px);
        border-color: rgba(247,201,72,.62);
        box-shadow: 0 34px 95px rgba(0,0,0,.54), 0 20px 50px rgba(247,201,72,.08);
    }
    .app-download-section:hover .app-download-visual img { transform: translateY(-8px) scale(1.015); }
    .app-points div:hover {
        transform: translateY(-4px);
        border-color: rgba(247,201,72,.38);
        background: rgba(247,201,72,.07);
    }
    .store-badge:hover {
        transform: translateY(-3px);
        border-color: rgba(247,201,72,.58);
        background: rgba(13,18,25,.96);
        box-shadow: 0 18px 38px rgba(0,0,0,.34), 0 0 0 1px rgba(247,201,72,.06);
    }
}

@media (max-width: 980px) {
    .app-download-section { grid-template-columns: 1fr; }
    .app-download-visual { min-height: 350px; }
    .app-download-visual img { max-height: 340px; }
}

@media (max-width: 760px) {
    .app-download-section { margin: 24px 0; padding: 20px; border-radius: 26px; }
    .app-download-copy { padding: 2px; }
    .app-download-copy h2 { font-size: clamp(28px, 10vw, 42px); letter-spacing: -1px; }
    .app-points { grid-template-columns: 1fr; }
    .app-points div { min-height: auto; }
    .store-buttons { display: grid; grid-template-columns: 1fr; }
    .store-badge { width: 100%; min-width: 0; }
    .app-download-visual { min-height: 290px; }
    .app-download-visual img { max-height: 285px; }
    .app-rating-card { right: 0; bottom: 2%; min-width: 170px; }
}

/* =========================================================
   V6 FULL-WIDTH RESPONSIVE HEADER + CLEANER FEATURE PAGE
   ========================================================= */
.site-header {
    width: 100%;
    min-height: 88px;
    margin: 0;
    padding: 0 18px;
    border-width: 0 0 1px;
    border-color: rgba(255,255,255,.09);
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(circle at 10% 0%, rgba(247,201,72,.12), transparent 24rem),
        rgba(8, 12, 18, .92);
    box-shadow: 0 15px 46px rgba(0,0,0,.34);
    top: 0;
    display: block;
}

.header-inner {
    width: min(var(--max), 100%);
    min-height: 87px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    position: relative;
}

.header-inner .site-nav {
    order: initial;
    grid-column: auto;
    width: auto;
    overflow: visible;
    justify-self: center;
}

.header-inner .header-actions {
    justify-self: end;
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform .22s ease, opacity .22s ease;
}

.mobile-menu-button:hover {
    border-color: var(--border-gold);
    background: rgba(247,201,72,.09);
}

.mobile-menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-button.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-img-wrap {
    position: relative;
    width: 100%;
    min-height: 585px;
}

.hero-img-wrap .hero-person-photo {
    width: 100%;
    height: 585px;
    object-fit: cover;
    object-position: 60% center;
    filter: saturate(.88) contrast(1.04);
}

.hero-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 45%, rgba(5,8,12,.72) 100%),
        linear-gradient(90deg, rgba(5,8,12,.18), transparent 45%);
}

.hero-photo-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    padding: 9px 13px;
    border: 1px solid rgba(247,201,72,.42);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(7,10,15,.78);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 900;
}

.compact-page-hero {
    padding-bottom: 8px;
}

.compact-page-hero h1 {
    max-width: 760px;
}

.compact-page-hero p {
    max-width: 620px;
}

.features-showcase {
    margin-top: 18px;
}

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

.feature-grid-compact .feature-card {
    min-height: 210px;
}

.compact-check-list {
    gap: 8px;
}

.feature-cta-band {
    margin: 24px 0;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at right center, rgba(247,201,72,.18), transparent 30%),
        rgba(19,26,36,.78);
    box-shadow: var(--shadow);
}

.feature-cta-band h2 {
    max-width: 700px;
    margin: 10px 0 0;
    font-size: clamp(23px, 3.4vw, 38px);
    line-height: 1.05;
    letter-spacing: -1px;
}

@media (max-width: 900px) {
    .site-header {
        min-height: 80px;
        padding: 0 12px;
        border-radius: 0 0 22px 22px;
    }

    .header-inner {
        min-height: 79px;
        grid-template-columns: 1fr auto auto;
        gap: 9px;
    }

    .mobile-menu-button {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
    }

    .header-inner .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .header-inner .site-nav {
        position: absolute;
        top: calc(100% + 9px);
        left: 0;
        right: 0;
        z-index: 60;
        display: none;
        width: 100%;
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        overflow: visible;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(9,13,19,.98);
        box-shadow: 0 24px 65px rgba(0,0,0,.55);
        backdrop-filter: blur(22px);
    }

    .header-inner .site-nav.is-open {
        display: flex;
        animation: mobileMenuReveal .2s ease-out;
    }

    .header-inner .site-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 13px;
        font-size: 12.5px;
    }

    .header-inner .site-nav a:hover {
        background: rgba(247,201,72,.11);
    }

    .portal-user-pill {
        max-width: 145px;
    }

    .feature-grid-compact {
        grid-template-columns: 1fr;
    }

    .feature-grid-compact .feature-card {
        min-height: auto;
    }

    .feature-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@keyframes mobileMenuReveal {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 76px;
        padding: 0 10px;
    }

    .header-inner {
        min-height: 75px;
        gap: 7px;
    }

    .logo span {
        width: 40px;
        height: 40px;
    }

    .logo strong {
        font-size: 15px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .header-actions .header-cta {
        display: none;
    }

    .header-actions .header-ghost {
        min-height: 38px;
        padding: 0 12px;
    }

    .portal-user-pill {
        max-width: 110px;
        padding: 7px 9px;
    }

    .portal-user-pill span {
        display: none;
    }

    .hero-img-wrap,
    .hero-img-wrap .hero-person-photo {
        min-height: 420px;
        height: 420px;
    }

    .hero-img-wrap .hero-person-photo {
        object-position: 63% center;
    }

    .hero-photo-tag {
        left: 14px;
        bottom: 14px;
        font-size: 10px;
    }

    .feature-cta-band {
        padding: 20px;
        border-radius: 23px;
    }

    .feature-cta-band .btn-primary {
        width: 100%;
    }
}

/* =========================================================
   V7 INTERACTIVE COMMERCIAL EXPERIENCE
   Home plan preview, app screens, muscle explorer, video demo,
   progress counters, mobile actions, stronger RTL readiness.
   ========================================================= */
.site-nav a.active {
    color: #0a0d12;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 8px 22px rgba(247, 201, 72, .20);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(32px, 5.4vw, 64px);
    line-height: .96;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 20px;
    color: #d9d4c3;
    font-size: 11.5px;
    font-weight: 800;
}

.interactive-surface {
    --mx: 50%;
    --my: 0%;
    position: relative;
    isolation: isolate;
}

.interactive-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(247,201,72,.12), transparent 55%);
    transition: opacity .25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .interactive-surface:hover::after { opacity: 1; }
}

.counter-band {
    margin: 18px 0 30px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(13, 18, 25, .78);
    box-shadow: 0 18px 55px rgba(0,0,0,.25);
    overflow: hidden;
}

.counter-band article {
    min-height: 108px;
    padding: 16px;
    display: grid;
    align-content: center;
    gap: 5px;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.055);
}

.counter-band strong {
    color: var(--gold);
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1;
}

.counter-band span {
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.5;
}

.plan-preview-section {
    scroll-margin-top: 110px;
    margin: 34px 0;
    padding: 28px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 22px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 8% 10%, rgba(247,201,72,.14), transparent 28rem),
        linear-gradient(135deg, rgba(16,22,31,.96), rgba(10,14,20,.93));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.plan-preview-copy h2,
.app-preview-copy h2,
.muscle-detail-panel h2,
.video-preview-copy h2,
.section-heading h2,
.final-cta h2 {
    margin: 13px 0 10px;
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.03;
    letter-spacing: -1.1px;
}

.plan-preview-form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.plan-preview-form label {
    display: grid;
    gap: 7px;
    color: #e9e3d2;
    font-size: 11.5px;
    font-weight: 900;
}

.plan-preview-form .btn-primary { grid-column: 1 / -1; margin-top: 2px; }

.plan-result-card {
    padding: 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 0%, rgba(255,138,31,.18), transparent 22rem),
        rgba(6,9,13,.78);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.plan-result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.plan-result-status {
    padding: 6px 10px;
    border-radius: 999px;
    color: #caffdf;
    background: rgba(79,220,154,.12);
    border: 1px solid rgba(79,220,154,.28);
    font-size: 10.5px;
    font-weight: 900;
}

.plan-result-card > h3 {
    margin: 18px 0 6px;
    color: var(--gold-2);
    font-size: clamp(24px, 3.5vw, 38px);
}

.plan-result-card > p,
.plan-result-note { color: var(--muted); line-height: 1.55; }

.plan-result-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 18px 0;
}

.plan-result-metrics div {
    padding: 13px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(255,255,255,.04);
}

.plan-result-metrics strong { font-size: 13px; }
.plan-result-metrics span { color: var(--muted); font-size: 10.5px; }

.plan-routine {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.plan-routine span {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 15px;
    background: rgba(247,201,72,.07);
    border: 1px solid rgba(247,201,72,.14);
    color: #eee7d4;
    font-size: 11px;
}

.plan-routine b {
    color: var(--gold);
    min-width: 42px;
}

.plan-result-note {
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
    font-size: 10.5px;
}

.app-preview-section {
    margin: 34px 0;
    min-height: 620px;
    padding: 34px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 82% 45%, rgba(247,201,72,.16), transparent 25rem),
        linear-gradient(135deg, rgba(18,25,35,.92), rgba(8,12,17,.94));
    box-shadow: var(--shadow);
}

.screen-selector {
    margin-top: 22px;
    display: grid;
    gap: 8px;
}

.screen-selector button {
    min-height: 48px;
    padding: 0 15px;
    text-align: start;
    color: var(--muted);
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    border-radius: 15px;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    transition: .22s ease;
}

.screen-selector button.is-active {
    color: #0a0d12;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.carousel-arrows { display: flex; gap: 8px; margin-top: 14px; }
.carousel-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    background: rgba(255,255,255,.05);
    cursor: pointer;
    font-size: 17px;
}

.phone-stage { position: relative; min-height: 540px; display: grid; place-items: center; }
.phone-stage::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,201,72,.22), transparent 67%);
    filter: blur(4px);
}

.phone-shell {
    position: relative;
    width: min(310px, 100%);
    min-height: 570px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 45px;
    background: #05070a;
    box-shadow: 0 34px 95px rgba(0,0,0,.65), inset 0 0 0 4px rgba(255,255,255,.035);
}

.phone-speaker {
    position: absolute;
    z-index: 4;
    top: 13px;
    left: 50%;
    width: 92px;
    height: 23px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
    background: #05070a;
}

.app-screen-card {
    display: none;
    min-height: 544px;
    padding: 34px 13px 15px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(247,201,72,.13), transparent 18rem),
        #0d131b;
    overflow: hidden;
}

.app-screen-card.is-active { display: block; animation: screenReveal .3s ease; }
@keyframes screenReveal { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }

.mock-app-header,
.mock-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mock-app-header div,
.mock-progress-head { display: grid; gap: 2px; }
.mock-app-header small,
.mock-progress-head small,
.mock-plan-hero small,
.mock-exercise-copy > small { color: var(--muted); font-size: 9px; }
.mock-app-header strong,
.mock-progress-head strong { font-size: 13px; }
.mock-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #111; background: var(--gold); font-size: 10px; font-weight: 900; }

.mock-plan-hero {
    margin: 15px 0;
    padding: 17px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(247,201,72,.20), rgba(255,138,31,.09));
    border: 1px solid rgba(247,201,72,.25);
}
.mock-plan-hero h3 { margin: 5px 0; font-size: 20px; }
.mock-plan-hero p { margin: 0 0 12px; color: var(--muted); font-size: 9.5px; }
.mock-progress { height: 6px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.mock-progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--orange)); }

.mock-day-list { display: grid; gap: 8px; }
.mock-day-list > div {
    padding: 11px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.035);
}
.mock-day-list > div.active { border-color: rgba(247,201,72,.32); background: rgba(247,201,72,.08); }
.mock-day-list b { width: 32px; height: 32px; display: grid; place-items: center; color: var(--gold); border-radius: 11px; background: rgba(0,0,0,.28); font-size: 10px; }
.mock-day-list span { display: grid; gap: 2px; }
.mock-day-list strong { font-size: 10.5px; }
.mock-day-list small { color: var(--muted); font-size: 8.5px; }
.mock-day-list i { color: var(--gold); font-style: normal; }

.mock-video-card { position: relative; height: 190px; overflow: hidden; border-radius: 22px; }
.mock-video-card img { width: 100%; height: 100%; object-fit: cover; }
.mock-video-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent, rgba(0,0,0,.52)); }
.mock-video-card span { position:absolute; z-index:2; left:50%; top:50%; width:48px; height:48px; transform:translate(-50%,-50%); display:grid; place-items:center; border-radius:50%; color:#111; background:var(--gold); }
.mock-exercise-copy { padding: 15px 2px; }
.mock-exercise-copy h3 { margin: 5px 0 7px; font-size: 21px; }
.mock-exercise-copy p { color: var(--muted); font-size: 9.5px; line-height: 1.55; }
.mock-muscles { display:flex; flex-wrap:wrap; gap:5px; margin:10px 0; }
.mock-muscles span { padding:5px 7px; border-radius:999px; color:var(--gold-2); background:rgba(247,201,72,.08); border:1px solid rgba(247,201,72,.16); font-size:8px; }
.mock-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }
.mock-metrics div { padding:9px 5px; display:grid; text-align:center; gap:2px; border-radius:12px; background:rgba(255,255,255,.04); }
.mock-metrics b { font-size:12px; }
.mock-metrics small { color:var(--muted); font-size:7.5px; }
.mock-exercise-copy button { width:100%; min-height:38px; margin-top:11px; border:0; border-radius:13px; color:#111; background:linear-gradient(135deg,var(--gold),var(--orange)); font-weight:900; font-size:10px; }

.mock-progress-head { padding: 5px 3px; }
.mock-ring { width:150px; height:150px; margin:24px auto 16px; display:grid; place-items:center; border-radius:50%; background:conic-gradient(var(--gold) 0 68%, rgba(255,255,255,.07) 68% 100%); position:relative; }
.mock-ring::after { content:""; position:absolute; inset:12px; border-radius:50%; background:#0d131b; }
.mock-ring span { position:relative; z-index:1; color:var(--gold); font-size:24px; font-weight:900; }
.mock-week { display:grid; grid-template-columns:repeat(7,1fr); gap:5px; margin:15px 0; }
.mock-week span { height:28px; display:grid; place-items:center; border-radius:9px; color:var(--muted); background:rgba(255,255,255,.04); font-size:8px; }
.mock-week span.done { color:#111; background:var(--gold); }
.mock-stat-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:7px; }
.mock-stat-grid div { padding:11px; display:grid; gap:2px; border-radius:14px; border:1px solid var(--border); background:rgba(255,255,255,.035); }
.mock-stat-grid b { font-size:14px; }
.mock-stat-grid small { color:var(--muted); font-size:8px; }
.mock-next-goal { margin-top:10px; padding:12px; display:grid; gap:3px; border-radius:14px; background:rgba(247,201,72,.08); border:1px solid rgba(247,201,72,.18); }
.mock-next-goal span { color:var(--gold); font-size:8px; }
.mock-next-goal strong { font-size:10px; }

.muscle-explorer {
    margin: 34px 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(15,21,30,.84);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.muscle-photo-panel { position: relative; min-height: 510px; overflow: hidden; border-radius: 28px; }
.muscle-photo-panel::after { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg, transparent 30%, rgba(5,8,12,.88) 100%); }
.muscle-photo-panel img { width:100%; height:510px; object-fit:cover; transition:opacity .2s ease, transform .45s ease; }
.muscle-photo-panel img.is-changing { opacity:.25; transform:scale(1.02); }
.muscle-hotspots { position:absolute; z-index:2; left:18px; right:18px; bottom:18px; display:flex; flex-wrap:wrap; gap:7px; }
.muscle-hotspots button {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: #eee8d8;
    background: rgba(5,8,12,.72);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font: inherit;
    font-size: 10.5px;
    font-weight: 900;
    transition: .2s ease;
}
.muscle-hotspots button.is-active { color:#111; border-color:transparent; background:linear-gradient(135deg,var(--gold),var(--orange)); }
.muscle-detail-panel { padding: 12px 8px; align-self:center; }
.muscle-exercise-list { margin:18px 0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; padding:0; list-style:none; }
.muscle-exercise-list li { padding:11px 12px; border-radius:14px; color:#e8e3d2; background:rgba(255,255,255,.04); border:1px solid var(--border); font-size:11px; }
.muscle-meta { margin-bottom:18px; color:var(--gold); font-size:11.5px; font-weight:900; }

.video-preview-section {
    margin:34px 0;
    padding:24px;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:24px;
    align-items:center;
    border:1px solid var(--border);
    border-radius:var(--radius-xl);
    background:linear-gradient(135deg,rgba(12,17,24,.92),rgba(19,26,36,.82));
    box-shadow:var(--shadow);
    overflow:hidden;
}
.video-preview-media { position:relative; min-height:410px; overflow:hidden; border-radius:28px; background:#05080c; }
.video-preview-media video { width:100%; height:410px; object-fit:cover; display:block; }
.video-preview-media::after { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.44)); transition:opacity .2s ease; }
.video-preview-section.is-playing .video-preview-media::after { opacity:0; }
.video-play-button { position:absolute; z-index:2; left:18px; bottom:18px; min-height:42px; padding:0 16px; border:1px solid rgba(247,201,72,.38); border-radius:999px; color:#111; background:linear-gradient(135deg,var(--gold),var(--orange)); cursor:pointer; font:inherit; font-size:11px; font-weight:900; }
.video-preview-copy { padding:10px; }
.exercise-spec-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; margin-top:18px; }
.exercise-spec-grid div { padding:13px; display:grid; gap:4px; border-radius:16px; background:rgba(255,255,255,.04); border:1px solid var(--border); }
.exercise-spec-grid span { color:var(--muted); font-size:9.5px; }
.exercise-spec-grid strong { font-size:11.5px; }

.process-section,
.journey-section,
.faq-preview-section { margin: 42px 0; }
.section-heading { max-width:760px; margin:0 auto 22px; text-align:center; }
.section-heading p { color:var(--muted); line-height:1.6; }
.process-strip-connected { position:relative; }
.process-strip-connected::before { content:""; position:absolute; top:37px; left:12%; right:12%; height:2px; background:linear-gradient(90deg,transparent,var(--gold),var(--orange),transparent); opacity:.45; }
.process-strip-connected .process-card { z-index:1; }
.process-strip-connected .process-card > span { box-shadow:0 0 0 8px #0d1219; }

.journey-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.journey-card { padding:22px; border:1px solid var(--border); border-radius:24px; background:var(--card); overflow:hidden; }
.journey-label { display:inline-flex; padding:6px 9px; border-radius:999px; color:var(--gold-2); background:rgba(247,201,72,.09); border:1px solid rgba(247,201,72,.16); font-size:9.5px; font-weight:900; }
.journey-card h3 { margin:14px 0 8px; font-size:19px; }
.journey-card p { min-height:66px; color:var(--muted); font-size:11.5px; line-height:1.6; }
.journey-track { height:7px; margin:16px 0 9px; overflow:hidden; border-radius:999px; background:rgba(255,255,255,.06); }
.journey-track span { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--gold),var(--orange)); }
.journey-card small { color:#ddd5c0; font-size:9.5px; }

.faq-preview-section { display:grid; justify-items:center; }
.faq-preview-grid,
.faq-accordion { width:100%; display:grid; gap:10px; }
.faq-preview-grid { grid-template-columns:repeat(3,minmax(0,1fr)); margin-bottom:18px; }
.faq-preview-grid details,
.faq-accordion details { border:1px solid var(--border); border-radius:20px; background:rgba(19,26,36,.78); overflow:hidden; transition:.2s ease; }
.faq-preview-grid details { padding:18px; }
.faq-accordion { max-width:900px; margin:22px auto 36px; }
.faq-accordion details { padding:0 20px; }
.faq-preview-grid summary,
.faq-accordion summary { cursor:pointer; color:#f1ead6; font-weight:900; font-size:12px; list-style:none; }
.faq-preview-grid summary::-webkit-details-marker,
.faq-accordion summary::-webkit-details-marker { display:none; }
.faq-accordion summary { padding:18px 34px 18px 0; position:relative; }
.faq-accordion summary::after { content:"+"; position:absolute; right:0; top:50%; transform:translateY(-50%); color:var(--gold); font-size:22px; }
.faq-accordion details[open] summary::after { content:"−"; }
.faq-preview-grid p,
.faq-accordion p { margin:10px 0 0; color:var(--muted); font-size:11.5px; line-height:1.65; }
.faq-accordion p { margin:0; padding:0 0 18px; }
.faq-preview-grid details[open],
.faq-accordion details[open] { border-color:rgba(247,201,72,.30); background:rgba(247,201,72,.055); }

.feature-focus-grid { margin:26px 0; display:grid; gap:12px; }
.feature-focus-card { min-height:130px; padding:20px 22px; display:grid; grid-template-columns:auto 1fr auto; gap:18px; align-items:center; border:1px solid var(--border); border-radius:24px; background:var(--card); overflow:hidden; }
.feature-focus-number { width:46px; height:46px; display:grid; place-items:center; border-radius:15px; color:#111; background:linear-gradient(135deg,var(--gold),var(--orange)); font-size:12px; font-weight:900; }
.feature-focus-card h2 { margin:0 0 5px; font-size:21px; }
.feature-focus-card p { margin:0; color:var(--muted); font-size:11.5px; line-height:1.55; }
.feature-focus-card > strong { color:rgba(247,201,72,.22); font-size:36px; text-transform:uppercase; letter-spacing:2px; }
.feature-chip-row { display:flex; flex-wrap:wrap; gap:7px; margin:17px 0; }
.feature-chip-row span { padding:7px 10px; border-radius:999px; color:#e9e0c8; background:rgba(255,255,255,.04); border:1px solid var(--border); font-size:9.5px; font-weight:800; }

.exercise-commercial-band,
.final-cta {
    margin:32px 0;
    padding:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    border:1px solid var(--border-gold);
    border-radius:var(--radius-xl);
    background:
        radial-gradient(circle at 88% 20%, rgba(247,201,72,.18), transparent 25rem),
        rgba(17,24,33,.88);
    box-shadow:var(--shadow);
    overflow:hidden;
}
.exercise-commercial-band h2 { margin:10px 0 6px; font-size:clamp(23px,3.5vw,38px); line-height:1.05; }
.exercise-commercial-band p,
.final-cta p { margin:0; max-width:700px; color:var(--muted); line-height:1.6; }
.final-cta-actions { display:flex; gap:9px; flex-wrap:wrap; }

.download-phone-stack { min-height:470px; position:relative; display:grid; place-items:center; }
.download-phone { position:absolute; width:220px; min-height:430px; padding:10px; border-radius:34px; border:1px solid rgba(255,255,255,.18); background:#05070a; box-shadow:0 28px 75px rgba(0,0,0,.55); }
.download-phone-back { transform:translate(-78px,20px) rotate(-9deg); opacity:.74; }
.download-phone-front { transform:translate(55px,-4px) rotate(5deg); z-index:2; }
.download-screen { min-height:410px; padding:22px 11px 13px; border-radius:27px; background:linear-gradient(160deg,#131b25,#0a0f16); overflow:hidden; }
.download-screen > small,
.download-screen > span { color:var(--muted); font-size:9px; }
.download-screen > strong { display:block; margin:5px 0 15px; font-size:20px; }
.download-status { display:inline-flex; padding:5px 8px; border-radius:999px; color:#111!important; background:var(--gold); font-weight:900; }
.download-screen h3 { margin:10px 0; font-size:20px; }
.download-screen img { width:100%; height:185px; object-fit:cover; border-radius:17px; }
.download-exercise { padding:12px 2px; display:grid; gap:3px; }
.download-exercise strong { font-size:12px; }
.download-exercise small { color:var(--muted); font-size:8.5px; }
.download-screen button { width:100%; min-height:36px; border:0; border-radius:12px; color:#111; background:linear-gradient(135deg,var(--gold),var(--orange)); font-size:9px; font-weight:900; }
.download-bars { height:150px; display:flex; align-items:end; gap:8px; padding:10px; border-radius:17px; background:rgba(255,255,255,.03); }
.download-bars span { flex:1; border-radius:999px 999px 5px 5px; background:linear-gradient(180deg,var(--gold),var(--orange)); }
.download-bars span:nth-child(1){height:36%}.download-bars span:nth-child(2){height:64%}.download-bars span:nth-child(3){height:48%}.download-bars span:nth-child(4){height:82%}.download-bars span:nth-child(5){height:70%}
.download-mini-stats { margin-top:10px; display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.download-mini-stats b { padding:9px; border-radius:12px; background:rgba(255,255,255,.04); font-size:8.5px; }
.store-note { margin-top:10px; color:var(--muted); font-size:10px; }

.mobile-action-bar { display:none; }

html[dir="rtl"] body { letter-spacing:0; }
html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-trust-row,
html[dir="rtl"] .store-buttons,
html[dir="rtl"] .final-cta-actions { direction:rtl; }
html[dir="rtl"] .screen-selector button { text-align:right; }
html[dir="rtl"] .faq-accordion summary { padding:18px 0 18px 34px; }
html[dir="rtl"] .faq-accordion summary::after { right:auto; left:0; }
html[dir="rtl"] .hero-photo-tag,
html[dir="rtl"] .video-play-button { left:auto; right:18px; }
html[dir="rtl"] .muscle-hotspots { direction:rtl; }

@media (max-width: 1060px) {
    .counter-band { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .plan-preview-section,
    .app-preview-section,
    .muscle-explorer,
    .video-preview-section { grid-template-columns:1fr; }
    .app-preview-section { min-height:auto; }
    .screen-selector { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .screen-selector button { text-align:center; }
    .phone-stage { min-height:590px; }
    .muscle-photo-panel,
    .muscle-photo-panel img { min-height:470px; height:470px; }
    .journey-grid { grid-template-columns:1fr; }
    .journey-card p { min-height:auto; }
    .faq-preview-grid { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
    body { padding-bottom:78px; }
    .counter-band { grid-template-columns:1fr 1fr; padding:10px; }
    .counter-band article { min-height:92px; padding:12px; }
    .counter-band strong { font-size:25px; }
    .plan-preview-section,
    .app-preview-section,
    .muscle-explorer,
    .video-preview-section { margin:24px 0; padding:19px; border-radius:26px; }
    .plan-preview-form,
    .plan-result-metrics,
    .plan-routine,
    .exercise-spec-grid,
    .muscle-exercise-list { grid-template-columns:1fr; }
    .screen-selector { grid-template-columns:1fr; }
    .carousel-arrows { justify-content:center; }
    .phone-stage { min-height:565px; }
    .phone-shell { width:285px; }
    .muscle-photo-panel,
    .muscle-photo-panel img { min-height:390px; height:390px; }
    .video-preview-media,
    .video-preview-media video { min-height:300px; height:300px; }
    .process-strip-connected::before { display:none; }
    .journey-grid { gap:10px; }
    .feature-focus-card { grid-template-columns:auto 1fr; }
    .feature-focus-card > strong { display:none; }
    .exercise-commercial-band,
    .final-cta { padding:22px; flex-direction:column; align-items:flex-start; border-radius:25px; }
    .final-cta-actions,
    .final-cta-actions a,
    .exercise-commercial-band .btn-primary { width:100%; }
    .app-download-section { overflow:hidden; }
    .download-phone-stack { min-height:420px; transform:scale(.86); margin:-20px -35px; }
    .mobile-action-bar {
        position:fixed;
        z-index:80;
        left:10px;
        right:10px;
        bottom:10px;
        height:58px;
        padding:7px;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:7px;
        border:1px solid rgba(255,255,255,.10);
        border-radius:20px;
        background:rgba(8,12,18,.93);
        backdrop-filter:blur(20px);
        box-shadow:0 20px 50px rgba(0,0,0,.55);
    }
    .mobile-action-bar a { display:flex; align-items:center; justify-content:center; border-radius:14px; font-size:11px; font-weight:900; }
    .mobile-action-secondary { color:var(--text); background:rgba(255,255,255,.055); border:1px solid var(--border); }
    .mobile-action-primary { color:#111; background:linear-gradient(135deg,var(--gold),var(--orange)); }
    .site-footer { margin-bottom:90px; }
}

@media (max-width: 480px) {
    .hero h1,
    .page-hero h1 { font-size:clamp(29px,10.5vw,42px); }
    .hero-trust-row { display:grid; }
    .counter-band { grid-template-columns:1fr; }
    .counter-band article { min-height:auto; }
    .plan-preview-copy h2,
    .app-preview-copy h2,
    .muscle-detail-panel h2,
    .video-preview-copy h2,
    .section-heading h2,
    .final-cta h2 { font-size:clamp(24px,9vw,35px); }
    .phone-stage { min-height:535px; margin-left:-7px; margin-right:-7px; }
    .phone-shell { width:270px; min-height:545px; }
    .app-screen-card { min-height:519px; }
    .muscle-hotspots { left:10px; right:10px; bottom:10px; }
    .muscle-hotspots button { min-height:33px; padding:0 10px; font-size:9.5px; }
    .video-preview-media,
    .video-preview-media video { min-height:250px; height:250px; }
}

/* =========================================================
   V8 PLAN PREVIEW CONTROLS
   Custom dropdowns + accessible +/- number steppers
   ========================================================= */
.plan-preview-section {
    overflow: visible;
}

.plan-preview-copy {
    position: relative;
    z-index: 8;
}

.plan-result-card {
    position: relative;
    z-index: 1;
}

.plan-field {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.plan-field > label {
    color: #e9e3d2;
    font-size: 11.5px;
    font-weight: 900;
}

.custom-select {
    position: relative;
    min-width: 0;
}

.custom-select.is-enhanced > select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.custom-select-trigger {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(12,17,24,.98), rgba(5,8,12,.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 24px rgba(0,0,0,.16);
    cursor: pointer;
    text-align: start;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
}

.custom-select-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13.5px;
    font-weight: 750;
}

.custom-select-chevron {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid var(--gold-2);
    border-bottom: 2px solid var(--gold-2);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .22s ease;
}

.custom-select.is-open .custom-select-trigger {
    border-color: rgba(247,201,72,.78);
    background: linear-gradient(180deg, rgba(19,22,23,.98), rgba(8,10,12,.98));
    box-shadow: 0 0 0 4px rgba(247,201,72,.09), 0 18px 42px rgba(0,0,0,.30);
}

.custom-select.is-open .custom-select-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.custom-select-menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 270px;
    padding: 7px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
    border: 1px solid rgba(247,201,72,.35);
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(247,201,72,.10), transparent 12rem),
        rgba(7,10,14,.985);
    box-shadow: 0 24px 60px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px) scale(.985);
    transform-origin: top;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.custom-select.is-open .custom-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.custom-select-option {
    width: 100%;
    min-height: 43px;
    padding: 9px 38px 9px 12px;
    position: relative;
    border: 1px solid transparent;
    border-radius: 13px;
    color: #d8dbe0;
    background: transparent;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    text-align: start;
    transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
    color: #fff7df;
    background: rgba(247,201,72,.10);
    border-color: rgba(247,201,72,.22);
    outline: none;
    transform: translateX(2px);
}

.custom-select-option.is-selected {
    color: #0a0d12;
    background: linear-gradient(135deg, var(--gold-2), var(--orange));
    border-color: transparent;
    font-weight: 900;
}

.custom-select-option.is-selected::after {
    content: "✓";
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 950;
}

.number-stepper {
    min-height: 56px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12,17,24,.98), rgba(5,8,12,.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 24px rgba(0,0,0,.16);
    transition: border-color .22s ease, box-shadow .22s ease;
}

.number-stepper:focus-within {
    border-color: rgba(247,201,72,.78);
    box-shadow: 0 0 0 4px rgba(247,201,72,.09), 0 18px 42px rgba(0,0,0,.25);
}

.number-stepper input[type="number"] {
    min-width: 0;
    min-height: 54px;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 850;
    appearance: textfield;
    -moz-appearance: textfield;
}

.number-stepper input[type="number"]:focus {
    border: 0;
    box-shadow: none;
}

.number-stepper input[type="number"]::-webkit-inner-spin-button,
.number-stepper input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.stepper-button {
    min-width: 0;
    border: 0;
    color: var(--gold-2);
    background: rgba(247,201,72,.045);
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.stepper-button:first-child {
    border-right: 1px solid rgba(255,255,255,.075);
}

.stepper-button:last-child {
    border-left: 1px solid rgba(255,255,255,.075);
}

.stepper-button:hover:not(:disabled),
.stepper-button:focus-visible:not(:disabled) {
    color: #090c10;
    background: linear-gradient(135deg, var(--gold-2), var(--orange));
    outline: none;
}

.stepper-button:active:not(:disabled) {
    transform: scale(.92);
}

.stepper-button:disabled {
    color: rgba(255,255,255,.22);
    background: transparent;
    cursor: not-allowed;
}

html[dir="rtl"] .custom-select-option {
    padding: 9px 12px 9px 38px;
}

html[dir="rtl"] .custom-select-option.is-selected::after {
    right: auto;
    left: 13px;
}

html[dir="rtl"] .custom-select-option:hover,
html[dir="rtl"] .custom-select-option:focus-visible {
    transform: translateX(-2px);
}

@media (hover: hover) and (pointer: fine) {
    .custom-select-trigger:hover {
        transform: translateY(-1px);
        border-color: rgba(247,201,72,.42);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 15px 32px rgba(0,0,0,.23);
    }
}

@media (max-width: 760px) {
    .custom-select-trigger,
    .number-stepper {
        min-height: 52px;
        border-radius: 16px;
    }

    .custom-select-trigger {
        padding: 0 15px;
    }

    .number-stepper {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
    }

    .number-stepper input[type="number"] {
        min-height: 50px;
    }

    .custom-select-menu {
        max-height: 235px;
        border-radius: 16px;
    }
}
