/* Entradek — Midnight Bourse · Luxury Editorial */

:root {
    /* Ink — deep trading-floor void */
    --ink: #030508;
    --ink-soft: #0c1018;
    --ink-muted: #161d2a;

    /* Surfaces — warm parchment, not sterile white */
    --surface: #e8e2d6;
    --surface-muted: #ddd6c8;
    --surface-elevated: #f3efe8;
    --surface-dark: #060a10;

    /* Market emerald — dominant accent */
    --accent: #17805f;
    --accent-hover: #0f6047;
    --accent-deep: #064a35;
    --accent-light: #3ecf9a;
    --accent-glow: rgba(23, 128, 95, 0.28);
    --accent-soft: #e4f5ee;
    --accent-muted: rgba(23, 128, 95, 0.08);

    /* Antique gold — sharp premium accent */
    --gold: #c8943a;
    --gold-hover: #a67628;
    --gold-light: #e8c078;
    --gold-soft: #f7f0e2;
    --gold-glow: rgba(200, 148, 58, 0.32);

    /* Trading accents — from official logo */
    --trade-green: #00e676;
    --trade-red: #ff3b3b;
    --trade-green-soft: rgba(0, 230, 118, 0.14);
    --trade-red-soft: rgba(255, 59, 59, 0.12);

    --header-gradient: linear-gradient(168deg, #030508 0%, #0a1219 42%, #0c1612 100%);
    --teal-bar-gradient: linear-gradient(90deg, var(--gold-hover) 0%, var(--gold) 35%, var(--accent-light) 65%, var(--gold-hover) 100%);
    --teal-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);

    --text: #1a2230;
    --text-muted: #5c6470;
    --text-on-dark: rgba(255,255,255,0.94);
    --text-on-dark-muted: rgba(255,255,255,0.52);
    --border: rgba(3, 5, 8, 0.07);
    --border-strong: rgba(3, 5, 8, 0.12);
    --border-dark: rgba(255, 255, 255, 0.07);
    --radius: 0.875rem;
    --radius-lg: 1.125rem;
    --radius-xl: 1.625rem;
    --shadow-sm: 0 2px 12px rgba(3, 5, 8, 0.05);
    --shadow: 0 12px 40px rgba(3, 5, 8, 0.08);
    --shadow-lg: 0 28px 72px rgba(3, 5, 8, 0.12);
    --shadow-luxury: 0 24px 64px rgba(3, 5, 8, 0.22);
    --font-display: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
    --font-brand: 'Instrument Serif', 'Georgia', serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-dramatic: cubic-bezier(0.22, 0.61, 0.36, 1);
    --reveal-base: 0.55s;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}
html, body { max-width: 100%; }

body.entradek-body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--surface);
    background-image:
        radial-gradient(ellipse 90% 55% at 100% -5%, rgba(200,148,58,0.07) 0%, transparent 52%),
        radial-gradient(ellipse 70% 45% at -5% 105%, rgba(23,128,95,0.06) 0%, transparent 48%);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: clip;
    min-width: 0;
}

body.entradek-body.is-menu-open {
    overflow: hidden;
}

main {
    min-width: 0;
    overflow-x: clip;
}

img, video, svg {
    max-width: 100%;
    height: auto;
}

body.entradek-body.is-loading [data-reveal-item] {
    opacity: 0;
    transform: translateY(28px);
}

body.entradek-body.is-loaded [data-reveal-item] {
    animation: reveal-rise var(--reveal-base) var(--ease-dramatic) forwards;
    animation-delay: calc(var(--reveal-i, 0) * 0.09s + 0.12s);
}

.font-display { font-family: var(--font-display); }
.font-brand { font-family: var(--font-brand); }
.text-accent { color: var(--accent); }
.text-ink { color: var(--ink); }
.text-muted { color: var(--text-muted); }

.text-gradient {
    background: linear-gradient(118deg, var(--gold-light) 0%, var(--gold) 38%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Page zones ── */
.section-band { padding: 3.5rem 0; }
.section-band--white {
    background: var(--surface-elevated);
    border-block: 1px solid var(--border);
}
.section-band--cream { background: transparent; }
.section-band--tint {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 85%);
    border-block: 1px solid rgba(13,148,136,0.06);
}

/* Dark section — matches hero-dark aesthetic */
.section-band--dark {
    position: relative;
    overflow: hidden;
    background: var(--header-gradient);
    border-block: none;
    color: var(--text-on-dark);
}
.section-band--dark::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: var(--teal-bar-gradient);
    z-index: 2;
}
.section-band--dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 15% 35%, rgba(13, 148, 136, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 45% 35% at 88% 15%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.section-band__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.section-band__bg .hero-orb-1 { opacity: 0.7; }
.section-band__bg .hero-orb-2 { opacity: 0.5; }
.section-band--dark .section-label { color: var(--accent-light); }
.section-band--dark .section-label::before { background: var(--accent-light); }
.section-band--dark .section-title { color: white; }
.section-band--dark .card:not(.course-card) {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.section-band--dark .card:not(.course-card):hover {
    transform: translateY(-3px);
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Dark course cards — deeper ink, balanced proportions */
.section-band--dark .course-card {
    background: linear-gradient(168deg, rgba(22, 30, 48, 0.96) 0%, rgba(10, 15, 28, 0.98) 55%, rgba(8, 12, 22, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}
.section-band--dark .course-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.22);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(13, 148, 136, 0.12);
}
.section-band--dark .course-card .course-thumb::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(to top, rgba(10, 15, 28, 0.92) 0%, rgba(10, 15, 28, 0.35) 55%, transparent 100%);
    pointer-events: none;
}
.section-band--dark .course-card__body {
    padding: 1.125rem 1.25rem 0.625rem;
}
.section-band--dark .course-card__body h2,
.section-band--dark .course-card__body h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.0625rem;
    line-height: 1.5;
}
.section-band--dark .course-card__desc {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.8125rem;
    line-height: 1.7;
}
.section-band--dark .course-card__footer {
    padding: 0.875rem 1.25rem 1.125rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.15);
}
.section-band--dark .course-card__footer .btn-primary {
    background: rgba(13, 148, 136, 0.22);
    color: var(--accent-light);
    border: 1px solid rgba(45, 212, 191, 0.28);
    box-shadow: none;
}
.section-band--dark .course-card__footer .btn-primary:hover {
    background: var(--teal-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 24px var(--accent-glow);
}

.section-band--dark .card .text-ink { color: white; }
.section-band--dark .text-muted { color: var(--text-on-dark-muted); }
.section-band--dark .text-accent { color: var(--accent-light); }
.section-band--dark .badge-teal {
    background: rgba(13, 148, 136, 0.25);
    color: var(--accent-light);
    border-color: rgba(45, 212, 191, 0.2);
}
.section-band--dark .empty-state {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: white;
}
.section-band--dark .empty-state .text-muted { color: var(--text-on-dark-muted); }

/* Dark page hero — matches header */
.page-hero {
    position: relative;
    padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(2rem, 6vw, 3.5rem);
    color: white;
    background: var(--header-gradient);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-luxury);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: var(--teal-bar-gradient);
}
.page-hero .section-label { color: var(--accent-light); }
.page-hero .section-label::before { background: var(--accent-light); }
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin: 0.75rem 0 0;
    line-height: 1.2;
}
.page-hero__desc {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: var(--text-on-dark-muted);
    max-width: 32rem;
    line-height: 1.65;
}
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__desc { margin-inline: auto; }
.page-hero--center .section-label { justify-content: center; }

.cta-panel {
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--header-gradient);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-luxury);
    overflow: hidden;
    color: white;
}
.cta-panel::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: var(--teal-bar-gradient);
}
.cta-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 20%, rgba(201,162,39,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-panel__title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    margin: 0;
}
.cta-panel__desc {
    position: relative;
    margin: 0.75rem auto 0;
    max-width: 28rem;
    font-size: 1rem;
    color: var(--text-on-dark-muted);
}
.cta-panel__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.promo-card {
    border: 1px solid rgba(201,162,39,0.18);
    box-shadow: var(--shadow-luxury);
}
.promo-card::before {
    background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(13,148,136,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(201,162,39,0.1) 0%, transparent 50%) !important;
}
.promo-card .badge-gold {
    background: var(--gold);
    color: var(--ink);
    border-color: transparent;
    font-weight: 800;
}

.divider-accent {
    height: 3px;
    width: 48px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    margin-top: 0.75rem;
}

/* Homepage — features + reviews duo */
.home-duo {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}
@media (min-width: 1024px) {
    .home-duo {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
        gap: 1.25rem;
    }
}
.home-duo__panel {
    padding: 1.25rem 1.375rem 1.375rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.home-duo__trust.home-duo__panel {
    padding: 1.125rem 1.125rem 1.25rem;
}
.home-duo__panel-head {
    margin-bottom: 0.875rem;
}
.home-duo__panel .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}
.home-duo__panel-desc {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.home-duo__trust {
    min-height: 0;
}
.home-duo__trust .trust-reviews {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.home-duo__trust .trust-reviews--embed > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.home-duo__trust .trust-reviews__header--embed {
    margin-bottom: 0.75rem;
}
.home-duo__trust .trust-reviews__grid {
    flex: 1;
    max-width: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
}
@media (max-width: 639px) {
    .home-duo__trust .trust-reviews__grid {
        grid-template-columns: 1fr;
    }
}

/* Trust cards — balanced sizing inside duo panel */
.home-duo__trust .trust-card {
    min-width: 0;
    width: 100%;
}
.home-duo__trust .trust-card__link {
    min-height: 11.25rem;
    width: 100%;
}
.home-duo__trust .trust-card__head {
    padding: 0.75rem 0.875rem 0.625rem;
    justify-content: center;
}
.home-duo__trust .trust-card__body {
    padding: 0.75rem 0.875rem 0.625rem;
    gap: 0.4375rem;
}
.home-duo__trust .trust-card__rating-row {
    flex-direction: column;
    gap: 0.3125rem;
}
.home-duo__trust .trust-card__score {
    font-size: 1.375rem;
    line-height: 1;
}
.home-duo__trust .trust-star svg {
    width: 0.9375rem;
    height: 0.9375rem;
}
.home-duo__trust .trust-stars {
    gap: 0.125rem;
}
.home-duo__trust .trust-card__count {
    font-size: 0.75rem;
    line-height: 1.45;
    max-width: 12rem;
}
.home-duo__trust .trust-card__footer {
    padding: 0.625rem 0.875rem 0.75rem;
}
.home-duo__trust .trust-card__cta {
    padding: 0.5625rem 0.75rem;
    font-size: 0.75rem;
}
.home-duo__trust .trust-card__name {
    font-size: 0.8125rem;
}
.home-duo__trust .trust-card__icon {
    width: 1.625rem;
    height: 1.625rem;
}
.home-duo__trust .trust-card__icon svg {
    width: 0.875rem;
    height: 0.875rem;
}
.home-duo__trust .trust-card__logo--google {
    width: 1.125rem;
    height: 1.125rem;
}
.home-duo__trust .trust-card__brand {
    gap: 0.5rem;
}

/* Feature mini cards */
.features-block + .features-block {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
}
.features-block__label {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-hover);
}
.features-mini-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 639px) {
    .features-mini-grid {
        grid-template-columns: 1fr;
    }
}
.features-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
    padding: 0.75rem 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 100%;
}
.features-mini-card__title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}
.features-mini-card__desc {
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--text-muted);
}
.feature-icon--xs {
    width: 2rem;
    height: 2rem;
    border-radius: 0.625rem;
    flex-shrink: 0;
}

.trust-reviews__header--embed {
    text-align: right;
}
.trust-reviews__header--embed .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

.feature-icon--live {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}
.feature-icon--community {
    background: rgba(13, 148, 136, 0.12);
    color: var(--accent-hover);
}

.home-promo {
    max-width: 100%;
}

.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 500;
    padding: 0.75rem 1rem 0;
    transition: padding 0.3s var(--ease);
}
.site-header-wrap.is-scrolled { padding-top: 0.5rem; }

.site-header-top {
    background: linear-gradient(92deg, var(--ink-soft) 0%, var(--accent-deep) 38%, var(--ink-soft) 100%);
    border-radius: 0.875rem 0.875rem 0 0;
    overflow: hidden;
    position: relative;
}
.site-header-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(200,148,58,0.12), transparent);
    pointer-events: none;
}
.site-header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.9);
}
.site-header-top__start {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}
.site-header-top__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}
.site-header-top__badge {
    display: inline-flex;
    padding: 0.15rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    background: var(--gold);
    border-radius: 9999px;
}
.site-header-top__link {
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
}
.site-header-top__link:hover { color: var(--gold-soft); }

.site-header {
    background: linear-gradient(180deg, rgba(10,15,28,0.98) 0%, rgba(13,19,33,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 1.25rem 1.25rem;
    box-shadow: 0 20px 50px rgba(10,15,28,0.25), 0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(20px);
    transition: border-radius 0.3s var(--ease), box-shadow 0.3s var(--ease);
    overflow: visible;
}
.site-header-wrap.is-scrolled .site-header-top { display: none; }
.site-header-wrap.is-scrolled .site-header {
    border-radius: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(10,15,28,0.35);
}

.site-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    min-height: 4.75rem;
}

/* Logo — official Entradek image */
.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}
.site-logo__img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}
.site-logo--header .site-logo__img {
    max-height: 3.125rem;
    max-width: min(13.5rem, 48vw);
}
.site-logo--hero .site-logo__img {
    max-height: 4rem;
    max-width: min(16rem, 78vw);
}
.site-logo--footer .site-logo__img { max-height: 3.5rem; max-width: 14rem; }
.site-logo--auth .site-logo__img { max-height: 4.25rem; max-width: 15rem; }
.site-logo--sidebar .site-logo__img { max-height: 2.375rem; max-width: 10.5rem; }
.auth-panel-visual .site-logo--auth { margin-bottom: 2rem; }

.brand-tagline {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}
.brand-tagline--ar {
    margin-top: 0.375rem;
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}
.brand-tagline__dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.brand-tagline__dot--green { background: var(--trade-green); box-shadow: 0 0 8px rgba(0,230,118,0.5); }
.brand-tagline__dot--red { background: var(--trade-red); box-shadow: 0 0 8px rgba(255,59,59,0.45); }

.site-footer__brand-logo .site-logo { display: block; }
.site-footer__tagline { margin-top: 0.75rem; }

.hero-home__chip-dot {
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-home__chip-dot--green { background: var(--trade-green); }
.hero-home__chip-dot--red { background: var(--trade-red); }

/* Nav */
.site-nav {
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9999px;
}
.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.25s var(--ease);
}
.site-nav__icon { width: 1rem; height: 1rem; opacity: 0.7; }
.site-nav__link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}
.site-nav__link.is-active {
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #0f766e 100%);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.site-nav__link.is-active .site-nav__icon { opacity: 1; }

/* Header actions */
.site-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* User account menu */
.user-menu { position: relative; }
.user-menu__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.user-menu__toggle:hover,
.user-menu.is-open .user-menu__toggle {
    color: white;
    background: rgba(255,255,255,0.1);
    border-color: rgba(45,212,191,0.35);
}
.user-menu__icon { width: 1.25rem; height: 1.25rem; }
.user-menu__badge {
    position: absolute;
    top: -0.1875rem;
    left: -0.1875rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.5625rem;
    font-weight: 800;
    line-height: 1rem;
    text-align: center;
}
.user-menu__panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    inset-inline-start: 0;
    inset-inline-end: auto;
    z-index: 600;
    min-width: 12.5rem;
    padding: 0.375rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: #0f1a16;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.site-mobile-menu__auth {
    display: grid;
    gap: 0.625rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
}
.site-header-actions__login.hidden.sm\:inline-flex {
    display: none;
}
@media (min-width: 640px) {
    .site-header-actions__login.hidden.sm\:inline-flex {
        display: inline-flex;
    }
    .site-header-actions__cta.hidden.sm\:inline-flex {
        display: inline-flex;
    }
}
.user-menu__panel.hidden { display: none; }
.user-menu__form { margin: 0; }
.user-menu__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: none;
    border-radius: 0.625rem;
    background: transparent;
    color: rgba(255,255,255,0.82);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: right;
}
.user-menu__item svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; opacity: 0.85; }
.user-menu__item:hover { background: rgba(255,255,255,0.06); color: white; }
.user-menu__item--accent { color: var(--gold-light); }
.user-menu__item--accent:hover { background: rgba(201,162,39,0.12); color: var(--gold-light); }
.user-menu__item--danger { color: #fca5a5; }
.user-menu__item--danger:hover { background: rgba(248,113,113,0.1); color: #fecaca; }
.user-menu__count {
    margin-right: auto;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.3125rem;
    border-radius: 9999px;
    background: rgba(201,162,39,0.18);
    color: var(--gold-light);
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.125rem;
    text-align: center;
}

.site-header-actions__login {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: 0.625rem;
    transition: color 0.2s, background 0.2s;
}
.site-header-actions__login:hover { color: white; background: rgba(255,255,255,0.06); }
.site-header-actions__login--block { display: block; text-align: center; width: 100%; }

.site-header-actions__dash {
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.625rem;
    transition: all 0.2s;
}
.site-header-actions__dash:hover { color: white; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }

.site-header-actions__logout {
    padding: 0.55rem 1rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.2s;
}
.site-header-actions__logout:hover { color: #fca5a5; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); }

.site-header-actions__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold) 0%, #e5c76b 100%);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(201,162,39,0.35);
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.site-header-actions__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(201,162,39,0.45);
}
.site-header-actions__cta--block { justify-content: center; width: 100%; }

.site-header-actions__whatsapp {
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #25d366;
    text-decoration: none;
    border: 1px solid rgba(37,211,102,0.35);
    border-radius: 9999px;
    background: rgba(37,211,102,0.1);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.site-header-actions__whatsapp svg { width: 1rem; height: 1rem; fill: currentColor; }
.site-header-actions__whatsapp:hover { color: white; background: #25d366; border-color: #25d366; }

.site-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.82);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.site-header-cart:hover { color: white; background: rgba(255,255,255,0.1); border-color: rgba(45,212,191,0.35); }
.site-header-cart svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.site-header-cart__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.3125rem;
    border-radius: 9999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1;
}
.site-header-cart--block { width: 100%; justify-content: center; margin-top: 0.5rem; }
.site-mobile-menu__cart { padding: 0 0.25rem; }

@media (max-width: 640px) {
    .site-header-cart__label { display: none; }
}

.cart-page__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.cart-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0.375rem 0 0;
}
.cart-page__desc { margin: 0.375rem 0 0; color: #64748b; font-size: 0.9375rem; }
.cart-page__grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .cart-page__grid { grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 1fr); align-items: start; }
}
.cart-page__items { display: grid; gap: 0.875rem; }

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.125rem;
}
.cart-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: var(--accent-soft);
    color: var(--accent);
}
.cart-item__icon svg { width: 1.375rem; height: 1.375rem; }
.cart-item__type {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent-hover);
    margin-bottom: 0.1875rem;
}
.cart-item__name {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}
.cart-item__meta { margin: 0.25rem 0 0; font-size: 0.75rem; color: #94a3b8; }
.cart-item__side { text-align: left; }
.cart-item__price {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
}
.cart-item__price span { font-size: 0.75rem; font-weight: 600; color: #94a3b8; }
.cart-item__remove {
    margin-top: 0.375rem;
    padding: 0;
    border: none;
    background: none;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}
.cart-item__remove:hover { color: #dc2626; text-decoration: underline; }

.cart-summary { padding: 1.25rem; position: sticky; top: 5.5rem; }
.cart-summary__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ink);
}
.cart-summary__rows { margin: 1rem 0 1.25rem; }
.cart-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4375rem 0;
    font-size: 0.875rem;
    color: #64748b;
}
.cart-summary__row dd { margin: 0; font-weight: 700; color: var(--ink); }
.cart-summary__row--total {
    margin-top: 0.375rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
}
.cart-summary__row--total dd { color: var(--accent-hover); font-size: 1.125rem; }
.cart-summary__continue {
    display: block;
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-hover);
    text-decoration: none;
}
.cart-summary__continue:hover { color: var(--accent); }

.cart-empty {
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.cart-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: var(--accent-soft);
    color: var(--accent);
}
.cart-empty__icon svg { width: 2rem; height: 2rem; }
.cart-empty__title {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
}
.cart-empty__desc { margin: 0.375rem 0 0; color: #64748b; font-size: 0.875rem; }
.cart-empty__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    color: #25d366 !important;
    text-decoration: none;
}
.whatsapp-link svg { width: 1rem; height: 1rem; fill: currentColor; }
.whatsapp-link:hover { color: #5dff92 !important; }
.site-header-top .whatsapp-link { color: rgba(255,255,255,0.95) !important; font-size: 0.8125rem; }
.site-header-top .whatsapp-link:hover { color: #bbf7d0 !important; }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn svg { width: 1.125rem; height: 1.125rem; fill: currentColor; }
.whatsapp-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); color: white; }

.whatsapp-float {
    position: fixed;
    inset-inline-start: 1.25rem;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    z-index: 190;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float svg { width: 1.625rem; height: 1.625rem; fill: currentColor; }
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 8px 32px rgba(37,211,102,0.55); color: white; }
.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.site-mobile-menu__whatsapp { margin: 0.75rem 0; }
.site-mobile-menu__whatsapp .whatsapp-btn { width: 100%; }

/* Burger */
.site-header-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.625rem;
    cursor: pointer;
}
.site-header-burger span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}
.site-header-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header-burger.is-open span:nth-child(2) { opacity: 0; }
.site-header-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.site-mobile-menu {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 1.25rem 1.25rem;
}
.site-mobile-menu__nav { display: flex; flex-direction: column; gap: 0.35rem; }
.site-mobile-menu__link {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: background 0.2s, color 0.2s;
}
.site-mobile-menu__link:hover { color: white; background: rgba(255,255,255,0.06); }
.site-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Legacy nav-link (dashboard etc.) */
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 0.625rem;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}
.nav-link:hover { color: var(--ink); background: rgba(13, 148, 136, 0.06); }
.nav-link.active { color: var(--accent); background: var(--accent-soft); font-weight: 600; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
    background: var(--teal-gradient);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 8px 28px var(--accent-glow); transform: translateY(-1px); }
.btn-gold {
    background: var(--gold-gradient);
    color: var(--ink);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 8px 28px var(--gold-glow); transform: translateY(-1px); }
.btn-outline {
    background: var(--surface-elevated);
    color: var(--text);
    border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hover); background: var(--accent-soft); }
.btn-outline-light {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { background: white; color: var(--ink); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(13, 148, 136, 0.15);
}

.hero-dark {
    position: relative;
    overflow: hidden;
    background: var(--header-gradient);
    border-radius: var(--radius-xl);
    color: var(--text-on-dark);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-luxury);
}
.hero-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 15% 35%, rgba(13, 148, 136, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 45% 35% at 88% 15%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-dark::after {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: var(--teal-bar-gradient);
    z-index: 3;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    animation: float 10s ease-in-out infinite;
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(125deg, rgba(200,148,58,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px, 36px 36px, 36px 36px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 20%, transparent 100%);
}
.hero-orb-1 { width: 340px; height: 340px; background: rgba(23,128,95,0.28); top: -12%; left: -8%; }
.hero-orb-2 { width: 220px; height: 220px; background: rgba(200,148,58,0.14); bottom: 8%; right: 6%; animation-delay: -3s; }

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(20px, -20px, 0); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.7s var(--ease) forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}
.badge-teal { background: var(--accent-soft); color: var(--accent-hover); border: 1px solid rgba(13,148,136,0.12); }
.badge-gold { background: var(--gold-soft); color: #7a6218; border: 1px solid rgba(201,162,39,0.18); }
.badge-dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.12); }

.stat-card {
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}
.stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent-light); }
.stat-label { font-size: 0.8125rem; color: var(--text-on-dark-muted); margin-top: 0.35rem; }

/* Homepage hero */
.hero-home__inner {
    position: relative;
    z-index: 1;
    padding: 1.25rem 1.25rem 1.5rem;
}
@media (min-width: 640px) {
    .hero-home__inner { padding: 1.5rem 2rem 2rem; }
}
@media (min-width: 1024px) {
    .hero-home__inner { padding: 2rem 2.5rem 2.5rem; }
}

.hero-home__intro {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, rgba(12,22,18,0.72) 0%, rgba(8,14,12,0.58) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
@media (min-width: 640px) {
    .hero-home__intro {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.875rem 1.125rem;
    }
}

.hero-home__brand {
    display: flex;
    align-items: center;
    min-width: 0;
}
.hero-home__mark,
.hero-home__brand-text,
.hero-home__brand-name,
.hero-home__brand-sub { display: none; }

.hero-home__chips {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.625rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.22);
}
.hero-home__chip {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.06em;
}

.hero-home__grid {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .hero-home__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
        gap: 2.5rem;
        align-items: center;
    }
}

.hero-home__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: white;
}
.hero-home__title-line { display: block; }
.hero-home__title-accent {
    display: block;
    margin-top: 0.375rem;
}

.hero-home__lead {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
}

.hero-home__highlights {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
@media (min-width: 768px) {
    .hero-home__highlights {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.625rem;
    }
}
.hero-home__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
}
.hero-home__highlight strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    margin-bottom: 0.125rem;
}
.hero-home__highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: rgba(13,148,136,0.18);
    color: var(--accent-light);
}
.hero-home__highlight-icon svg { width: 1rem; height: 1rem; }
.hero-home__highlight-icon--live { background: rgba(248,113,113,0.14); color: #fca5a5; }
.hero-home__highlight-icon--community { background: rgba(201,162,39,0.14); color: var(--gold-light); }

.hero-home__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
@media (min-width: 480px) {
    .hero-home__actions { flex-direction: row; flex-wrap: wrap; }
}
.hero-home__note {
    margin: 0.875rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.42);
}
.hero-home__note strong { color: var(--gold-light); font-weight: 700; }

.hero-home__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (max-width: 1023px) {
    .hero-home__stats { margin-top: 0.25rem; }
}
.hero-home__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 5.5rem;
    padding: 1rem 1.125rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    backdrop-filter: blur(8px);
}
.hero-home__stat--wide { grid-column: 1 / -1; }
.hero-home__stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent-light);
}
.hero-home__stat-label {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-hover);
}
.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    border-radius: 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4.5vw, 2.625rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.course-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(145deg, var(--ink-soft), var(--ink-muted));
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .course-thumb img { transform: scale(1.05); }
.course-thumb-placeholder {
    display: flex; align-items: center; justify-content: center; height: 100%;
    background: linear-gradient(145deg, #0d9488, #0a0f1c);
}

/* Course card — consistent layout & proportions */
.course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.course-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.125rem 1.25rem 0.625rem;
    min-height: 0;
}
.course-card__body h2,
.course-card__body h3 {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.course-card__desc {
    flex: 1;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.7;
    min-height: calc(0.8125rem * 1.7 * 2);
}
.course-card__meta {
    margin: 0.125rem 0 0;
    font-size: 0.75rem;
    opacity: 0.8;
}
.course-card__footer {
    flex-shrink: 0;
    padding: 0.875rem 1.25rem 1.125rem;
    margin-top: auto;
}
.course-card__footer .btn {
    width: 100%;
    padding-block: 0.625rem;
    font-size: 0.8125rem;
}

.form-label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.form-input {
    width: 100%; padding: 0.875rem 1rem; font-family: var(--font-body); font-size: 0.9375rem;
    color: var(--ink); background: var(--surface); border: 1.5px solid var(--border);
    border-radius: 0.75rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); background: white; }

.auth-split { display: grid; min-height: calc(100dvh - 4rem); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .auth-split { grid-template-columns: 1fr 1fr; } }
.auth-panel-visual { display: none; position: relative; background: var(--ink); overflow: hidden; }
@media (min-width: 1024px) { .auth-panel-visual { display: flex; flex-direction: column; justify-content: center; padding: 3rem; } }

.dash-sidebar { background: var(--ink); border-left: 1px solid var(--border-dark); }
.dash-nav-link {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem;
    font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.55);
    border-radius: 0.75rem; text-decoration: none; transition: all 0.2s;
}
.dash-nav-link:hover { color: white; background: rgba(255,255,255,0.06); }
.dash-nav-link.active { color: white; background: linear-gradient(135deg, var(--accent), #0f766e); box-shadow: 0 4px 16px var(--accent-glow); }
.dash-nav-link svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.dash-section-label { padding: 0.625rem 0.75rem 0.25rem; margin-top: 0.75rem; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.dash-section-label:first-child { margin-top: 0; }

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13,148,136,0.35), rgba(45,212,191,0.2));
    border: 2px solid rgba(45,212,191,0.35);
}
.user-avatar--sm { width: 2.5rem; height: 2.5rem; }
.user-avatar--lg { width: 4rem; height: 4rem; }
.user-avatar--xl { width: 6rem; height: 6rem; border-width: 3px; }
.user-avatar__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.user-avatar__initials {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: #5eead4;
    line-height: 1;
}
.user-avatar--lg .user-avatar__initials { font-size: 1.375rem; }
.user-avatar--xl .user-avatar__initials { font-size: 2rem; }

.profile-avatar-editor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}
.profile-avatar-editor__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}
.profile-avatar-editor__upload {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px dashed rgba(13,148,136,0.45);
    background: rgba(13,148,136,0.06);
    color: var(--accent-hover);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.profile-avatar-editor__upload:hover {
    background: rgba(13,148,136,0.1);
    border-color: var(--accent);
}
.profile-avatar-editor__upload svg { width: 1.125rem; height: 1.125rem; }
.profile-avatar-editor__remove {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    cursor: pointer;
}
.profile-avatar-editor__remove input { width: 1rem; height: 1rem; }

.profile-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.profile-summary__info { min-width: 0; }
.profile-summary__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}
.profile-summary__meta {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}
.profile-summary__meta--phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--accent-hover);
    font-weight: 600;
}
.profile-summary__meta--phone svg { width: 0.9375rem; height: 0.9375rem; flex-shrink: 0; }

.identity-doc-preview {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(13,148,136,0.2);
    background: rgba(13,148,136,0.05);
}
.identity-doc-preview__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.625rem;
    background: white;
    border: 1px solid rgba(13,148,136,0.15);
    overflow: hidden;
    flex-shrink: 0;
    color: var(--accent);
}
.identity-doc-preview__icon svg { width: 1.5rem; height: 1.5rem; }
.identity-doc-preview__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.identity-doc-preview__title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
}
.identity-doc-preview__filename,
.identity-doc-preview__link {
    margin: 0.1875rem 0 0;
    font-size: 0.75rem;
}
.identity-doc-preview__link {
    display: inline-block;
    color: var(--accent-hover);
    font-weight: 600;
    text-decoration: none;
}
.identity-doc-preview__link:hover { color: var(--accent); }

.admin-sidebar { background: #070b14; border-left: 1px solid var(--border-dark); }
.admin-section-label { padding: 0.5rem 0.75rem; margin-top: 1rem; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.admin-nav-link {
    display: block; padding: 0.625rem 0.75rem; font-size: 0.8125rem; font-weight: 500;
    color: rgba(255,255,255,0.5); border-radius: 0.5rem; text-decoration: none;
}
.admin-nav-link:hover { color: white; background: rgba(255,255,255,0.05); }
.admin-nav-link.active { color: white; background: rgba(13,148,136,0.2); border-right: 2px solid var(--accent); }

.pricing-card {
    position: relative; display: flex; flex-direction: column; padding: 2rem;
    background: var(--surface-elevated); border: 1px solid var(--border);
    border-radius: var(--radius-xl); box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(13,148,136,0.15); }
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(13,148,136,0.2), var(--shadow);
    margin-top: 1rem;
}
@media (max-width: 1023px) {
    .pricing-card.featured { margin-top: 0; }
}
.pricing-card.featured::before {
    content: 'الأكثر طلباً'; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    padding: 0.35rem 1rem; font-size: 0.75rem; font-weight: 700; color: white;
    background: var(--teal-gradient); border-radius: 9999px;
}

.bento-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(12, 1fr); }
.bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 12; }
@media (min-width: 768px) {
    .bento-span-4 { grid-column: span 4; }
    .bento-span-6 { grid-column: span 6; }
    .bento-span-8 { grid-column: span 8; }
}

.feature-icon {
    display: flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem; border-radius: 0.875rem;
    background: var(--accent-soft); color: var(--accent-hover);
    border: 1px solid rgba(13,148,136,0.12);
}

.alert { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info { background: #f0fdfa; border: 1px solid #99f6e4; color: #115e59; }

.site-footer {
    position: relative;
    background: #0f1a16;
    color: rgba(255,255,255,0.55);
    margin-top: 0;
    border-top: 2px solid var(--gold);
}
.site-footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--gold-light); }

.site-footer__main {
    padding: 2.25rem 0 2rem;
}

.site-footer__grid {
    display: grid;
    gap: 1.75rem 1.5rem;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 640px) {
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: minmax(11rem, 1.35fr) repeat(4, minmax(0, 1fr));
        gap: 1.5rem 2rem;
    }
}

/* Brand column */
.site-footer__brand { max-width: 16rem; }
.site-footer__brand-logo {
    display: inline-block;
    text-decoration: none;
}
.site-footer__brand-name {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.92);
    line-height: 1.15;
    text-transform: uppercase;
}
.site-footer__brand-logo:hover .site-footer__brand-name { color: var(--gold-light); }
.site-footer__tagline {
    margin: 0.625rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.42);
}
.site-footer__brand-contact {
    margin-top: 0.75rem;
}
.site-footer .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #25d366 !important;
}
.site-footer .whatsapp-link:hover { color: #4ade80 !important; }
.site-footer .whatsapp-link svg { width: 1rem; height: 1rem; flex-shrink: 0; fill: currentColor; }

.site-footer__social {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.site-footer__social-link svg { width: 0.75rem; height: 0.75rem; }
.site-footer__social-link:hover {
    background: rgba(201,162,39,0.12);
    border-color: rgba(201,162,39,0.35);
    color: var(--gold-light);
}

.site-footer__license {
    margin-top: 0.625rem;
    padding: 0.4375rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    font-size: 0.5625rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.36);
    white-space: pre-line;
}
.site-footer__license[dir="ltr"] {
    text-align: left;
    font-size: 0.53125rem;
    letter-spacing: 0.01em;
}

/* Link columns */
.site-footer__heading {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    margin: 0 0 0.875rem;
    padding: 0 0 0.5rem;
    border: none;
    position: relative;
}
.site-footer__heading::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1.75rem;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}
.site-footer__links a {
    font-size: 0.8125rem;
    line-height: 1.5;
    display: inline-block;
}
.site-footer__links a:hover { color: var(--gold-light); }

/* Bottom bar */
.site-footer__bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.22);
}
.site-footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.875rem 0;
}
.site-footer__copy {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.4;
}
.site-footer__lang {
    display: inline-flex;
    align-items: center;
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 0.1875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.22);
    gap: 0.125rem;
}
.lang-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    padding: 0.3125rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.lang-switch__btn:hover { color: rgba(255,255,255,0.92); }
.lang-switch__btn.is-active {
    background: linear-gradient(135deg, rgba(200,148,58,0.28) 0%, rgba(23,128,95,0.22) 100%);
    color: var(--gold-light);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.lang-switch--top {
    border-color: rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.28);
}
.lang-switch--header {
    flex-shrink: 0;
}
.lang-switch--mobile {
    width: 100%;
    justify-content: center;
    padding: 0.25rem;
}
.lang-switch--mobile .lang-switch__btn {
    flex: 1;
    min-width: 0;
    padding-block: 0.5rem;
    font-size: 0.75rem;
}
.site-mobile-menu__lang {
    padding: 0 0 0.875rem;
    margin-bottom: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Trust Reviews (Trustpilot + Google) ── */
.trust-reviews { width: 100%; }
.trust-reviews--cards { padding: 0; }
.section-band--white .trust-reviews--cards { padding: 0; }
.trust-reviews--strip {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.75rem 0;
}
.trust-reviews--inline { margin-top: 2rem; }

.trust-reviews__header {
    text-align: center;
    margin-bottom: 1.25rem;
}
.trust-reviews__label-center {
    justify-content: center;
}
.trust-reviews__title-center {
    margin-top: 0.5rem;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
}
.trust-reviews__strip-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    margin: 0 0 1rem;
    letter-spacing: 0.06em;
}

.trust-reviews__grid {
    display: grid;
    gap: 0.875rem;
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin-inline: auto;
}
@media (min-width: 640px) {
    .trust-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}
.trust-reviews--inline .trust-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 28rem;
}
.trust-reviews--strip .trust-reviews__grid {
    max-width: 42rem;
    margin: 0 auto;
}

.trust-card {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.trust-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 10.5rem;
    padding: 0;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.trust-reviews--cards .trust-card__link {
    background: linear-gradient(180deg, var(--surface-elevated) 0%, #f5f3ed 100%);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.trust-reviews--cards .trust-card__link:hover {
    transform: translateY(-2px);
    border-color: rgba(13,148,136,0.22);
    box-shadow: var(--shadow);
}
.trust-reviews--strip .trust-card__link,
.trust-reviews--inline .trust-card__link {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    min-height: auto;
    padding: 0.875rem 1rem;
    gap: 0.375rem;
}
.trust-reviews--strip .trust-card__link:hover,
.trust-reviews--inline .trust-card__link:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    color: white;
}

.trust-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem 0.625rem;
    border-bottom: 1px solid var(--border);
}
.trust-reviews--strip .trust-card__head,
.trust-reviews--inline .trust-card__head {
    padding: 0;
    border-bottom: none;
}
.trust-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.875rem 1rem 0.625rem;
    text-align: center;
}
.trust-reviews--strip .trust-card__body,
.trust-reviews--inline .trust-card__body {
    padding: 0;
    align-items: flex-start;
    text-align: right;
}
.trust-card__footer {
    padding: 0.625rem 1rem 0.875rem;
    margin-top: auto;
}
.trust-reviews--strip .trust-card__footer,
.trust-reviews--inline .trust-card__footer {
    display: none;
}

.trust-card__widget {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.trust-card__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
}
.trust-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 0.4375rem;
    flex-shrink: 0;
}
.trust-card__icon svg { width: 0.875rem; height: 0.875rem; }
.trust-card__icon--trustpilot { background: #00b67a; color: white; }
.trust-card__logo--google { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.trust-card__name {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
}
.trust-reviews--cards .trust-card__name { color: var(--ink); }
.trust-reviews--strip .trust-card__name,
.trust-reviews--inline .trust-card__name { color: white; }

.trust-card__rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4375rem;
    flex-wrap: wrap;
}
.trust-reviews--strip .trust-card__rating-row,
.trust-reviews--inline .trust-card__rating-row {
    justify-content: flex-start;
}
.trust-card__score {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
}
.trust-reviews--cards .trust-card__score { color: var(--ink); }
.trust-reviews--strip .trust-card__score,
.trust-reviews--inline .trust-card__score { color: white; font-size: 1rem; }

.trust-stars { display: inline-flex; gap: 0.0625rem; }
.trust-star { display: inline-flex; color: #e2e8f0; }
.trust-star svg { width: 0.9375rem; height: 0.9375rem; fill: currentColor; }
.trust-reviews--inline .trust-star svg { width: 0.8125rem; height: 0.8125rem; }
.trust-star.is-full { color: #00b67a; }
.trust-stars--google .trust-star.is-full { color: #fbbc04; }
.trust-star.is-half {
    background: linear-gradient(90deg, #00b67a 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00b67a;
}
.trust-stars--google .trust-star.is-half {
    background: linear-gradient(90deg, #fbbc04 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fbbc04;
}
.trust-reviews--strip .trust-star,
.trust-reviews--inline .trust-star { color: rgba(255,255,255,0.15); }
.trust-reviews--strip .trust-star.is-half,
.trust-reviews--inline .trust-star.is-half {
    background: linear-gradient(90deg, #00b67a 50%, rgba(255,255,255,0.15) 50%);
}
.trust-reviews--strip .trust-stars--google .trust-star.is-half,
.trust-reviews--inline .trust-stars--google .trust-star.is-half {
    background: linear-gradient(90deg, #fbbc04 50%, rgba(255,255,255,0.15) 50%);
}

.trust-card__count {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.trust-reviews--strip .trust-card__count,
.trust-reviews--inline .trust-card__count {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.55);
}

.trust-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5625rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 9999px;
    background: var(--accent-soft);
    color: var(--accent-hover);
    border: 1px solid rgba(13,148,136,0.14);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.trust-card__link:hover .trust-card__cta {
    background: var(--teal-gradient);
    color: white;
    border-color: transparent;
}
.trust-card--trustpilot .trust-card__link:hover { border-color: rgba(0,182,122,0.28); }
.trust-card--google .trust-card__link:hover { border-color: rgba(66,133,244,0.28); }

/* Contact strip */
.contact-strip { padding: 0; }
.contact-strip__inner {
    display: flex; flex-direction: column; gap: 1.5rem;
    padding: 2rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border-right: 4px solid var(--accent);
}
@media (min-width: 768px) {
    .contact-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.contact-strip__label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    color: var(--accent); margin-bottom: 0.375rem;
}
.contact-strip__title {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
    color: var(--ink); margin: 0;
}
.contact-strip__desc { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--text-muted); max-width: 28rem; }
.contact-strip__channels {
    display: grid; gap: 0.625rem;
    grid-template-columns: 1fr;
    min-width: 0;
}
@media (min-width: 640px) { .contact-strip__channels { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-strip__channels { grid-template-columns: repeat(2, minmax(10rem, 1fr)); } }
.contact-strip__channels .whatsapp-btn { grid-column: 1 / -1; }
.contact-strip__channel {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-strip__channel:hover {
    border-color: rgba(13,148,136,0.25);
    background: var(--accent-soft);
    box-shadow: var(--shadow-sm);
}
.contact-strip__channel--ghost { border-style: dashed; }
.contact-strip__channel-icon {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 2.25rem; height: 2.25rem;
    background: var(--accent-soft); color: var(--accent);
    border-radius: 0.625rem;
}
.contact-strip__channel-icon svg { width: 1.125rem; height: 1.125rem; }
.contact-strip__channel-label { display: block; font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); }
.contact-strip__channel-value { display: block; font-size: 0.8125rem; font-weight: 700; color: var(--ink); }

.logo-mark {
    display: flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem;
    background: linear-gradient(135deg, var(--accent), #065f46);
    border-radius: 0.75rem; font-family: var(--font-display);
    font-weight: 800; font-size: 1.125rem; color: white;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.logo-text { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--ink); }
.logo-text-light { color: white; }

.empty-state { text-align: center; padding: 4rem 2rem; background: var(--surface-elevated); border: 1px dashed var(--border-strong); border-radius: var(--radius-xl); }
.container-xl { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-xl { padding: 0 1.5rem; } }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.divider-gold { height: 3px; width: 48px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-top: 0.75rem; }

/* ── Atmospheric layers ── */
.entradek-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.entradek-atmosphere--mesh {
    opacity: 1;
    background:
        radial-gradient(ellipse 55% 40% at 88% 8%, rgba(200,148,58,0.09) 0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 5% 92%, rgba(23,128,95,0.07) 0%, transparent 50%);
}
main,
.site-footer {
    position: relative;
    z-index: 1;
}

@keyframes reveal-rise {
    from {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes line-sweep {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

/* ── Editorial page hero ── */
.page-hero {
    padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 4rem);
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -8%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(200,148,58,0.08) 0%, transparent 68%);
    pointer-events: none;
}
.page-hero__inner {
    position: relative;
    display: grid;
    gap: 1.5rem;
    align-items: end;
}
@media (min-width: 768px) {
    .page-hero__inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.55fr);
        gap: 2rem;
    }
}
.page-hero__title {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
.page-hero__aside {
    padding: 1rem 1.125rem;
    border-inline-start: 2px solid var(--gold);
    background: rgba(255,255,255,0.04);
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
    line-height: 1.65;
    transform: translateY(0.5rem);
}
.page-hero .form-input {
    border-radius: 0.5rem;
}

/* ── Hero home — asymmetric editorial ── */
.hero-home {
    isolation: isolate;
    transform: rotate(-0.35deg) translateZ(0);
    margin-inline: -0.25rem;
}
@media (min-width: 1024px) {
    .hero-home__stats {
        transform: translateY(-1.25rem) translateX(-0.75rem);
    }
}
.hero-home__title {
    font-weight: 700;
    letter-spacing: -0.025em;
}
.hero-home__brand-name {
    font-family: var(--font-brand);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
}
.hero-home__stat-value {
    color: var(--gold-light);
    font-variant-numeric: tabular-nums;
}
.hero-home__stat {
    border-inline-start: 2px solid rgba(200,148,58,0.35);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ── Featured courses — 3 in one row, side by side ── */
.home-courses-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
}
.home-courses-row > .course-card {
    flex: 1 1 0;
    min-width: 0;
    width: calc((100% - 2.5rem) / 3);
    max-width: calc((100% - 2.5rem) / 3);
}
@media (max-width: 900px) {
    .home-courses-row {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .home-courses-row > .course-card {
        flex: 0 0 78%;
        width: 78%;
        max-width: 78%;
        scroll-snap-align: start;
    }
}

/* ── Cards — editorial frame ── */
.card {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.6);
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(200,148,58,0.06);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.card { position: relative; }
.card:hover::before { opacity: 1; }

.btn {
    border-radius: 0.5rem;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--teal-gradient);
    box-shadow: 0 6px 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.site-logo__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.site-nav__link.is-active {
    background: linear-gradient(135deg, rgba(200,148,58,0.22) 0%, rgba(23,128,95,0.35) 100%);
    box-shadow: inset 0 0 0 1px rgba(200,148,58,0.2);
}

.logo-mark {
    background: linear-gradient(145deg, var(--gold) 0%, var(--accent-deep) 100%);
    font-family: var(--font-brand);
    font-style: italic;
    font-weight: 400;
}

/* Rich HTML content (plans, CMS, footer, payment notes) */
.rich-content {
    line-height: 1.75;
    color: #334155;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    font-family: Cairo, sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin: 1.25em 0 0.5em;
}

.rich-content h1 { font-size: 1.875rem; }
.rich-content h2 { font-size: 1.5rem; }
.rich-content h3 { font-size: 1.25rem; }

.rich-content p { margin: 0.75em 0; }

.rich-content ul,
.rich-content ol {
    margin: 0.75em 0;
    padding-right: 1.5em;
    padding-left: 0;
}

.rich-content li { margin: 0.35em 0; }

.rich-content a {
    color: #17805f;
    text-decoration: underline;
}

.rich-content blockquote {
    margin: 1em 0;
    padding: 0.75em 1em;
    border-right: 4px solid #17805f;
    background: #f8fafc;
    color: #475569;
}

.rich-content pre,
.rich-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.rich-content pre {
    margin: 1em 0;
    padding: 1em;
    overflow-x: auto;
    border-radius: 0.75rem;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.rich-content :not(pre) > code {
    padding: 0.15em 0.4em;
    border-radius: 0.375rem;
    background: #f1f5f9;
    color: #be123c;
    font-size: 0.875em;
}

.rich-content table {
    display: block;
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rich-content th,
.rich-content td {
    border: 1px solid #e2e8f0;
    padding: 0.5em 0.75em;
    text-align: right;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.rich-content hr {
    margin: 1.5em 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

/* ── Stitch landing (home) ── */
.home-stitch-hero {
    padding: 0 0 0.5rem;
}
.home-stitch-hero .hero-home {
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.home-stitch-hero .hero-home__highlights { display: none; }
.home-stitch-hero .hero-home__intro {
    margin-bottom: 1.25rem;
}
.home-stitch-hero .hero-home__chips {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.home-stitch-hero .hero-home__chip:first-child {
    background: var(--trade-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}
.home-stitch-hero .hero-home__chip-dot { display: none; }
.home-stitch-hero .hero-home__actions .btn-outline-light {
    background: var(--trade-red);
    border-color: transparent;
    color: white;
}
.home-stitch-hero .hero-home__actions .btn-outline-light:hover {
    background: #dc2626;
    color: white;
}
.home-stitch-hero .hero-home__note::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--trade-green);
    margin-inline-end: 0.5rem;
    vertical-align: middle;
}
.home-stitch-hero .hero-home__stat {
    background: rgba(13, 38, 35, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

.home-stitch-why {
    background: #f2efe4;
    padding: 4rem 0;
}
.home-stitch-why__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}
.home-stitch-why__head .section-label {
    color: var(--text-muted);
    font-weight: 700;
}
.home-stitch-why__head .section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin: 0.5rem 0;
}
.home-stitch-why__subtitle {
    margin: 0;
    color: var(--text-muted);
}
.home-stitch-block__title {
    margin: 0 0 1.5rem;
    padding-inline-start: 1rem;
    border-inline-start: 4px solid var(--accent-deep);
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--ink);
}
.home-stitch-cards {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
}
@media (max-width: 900px) {
    .home-stitch-cards { grid-template-columns: 1fr; }
}
.home-stitch-card {
    background: #0b2b26;
    border-radius: 1.5rem;
    padding: 1.75rem;
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.25s var(--ease);
}
.home-stitch-card:hover {
    box-shadow: 0 20px 40px rgba(3,5,8,0.25);
}
.home-stitch-card__img {
    height: 10rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}
.home-stitch-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.home-stitch-card:hover .home-stitch-card__img img {
    transform: scale(1.08);
}
.home-stitch-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}
.home-stitch-card__desc {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.home-stitch-card--sm .home-stitch-card__title { font-size: 1.0625rem; }
.home-stitch-card--sm .home-stitch-card__desc { font-size: 0.8125rem; }

.home-stitch-advantages {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}
@media (max-width: 900px) {
    .home-stitch-advantages { grid-template-columns: 1fr; }
}
.home-stitch-licenses {
    background: #0b2b26;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    padding: 1.75rem;
    color: white;
    height: 100%;
}
.home-stitch-licenses__title {
    margin: 0 0 1rem;
    padding-inline-start: 1rem;
    border-inline-start: 4px solid var(--accent-light);
    font-size: 1.25rem;
    font-weight: 700;
}
.home-stitch-licenses__desc {
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.home-stitch-license-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
}
.home-stitch-license-item + .home-stitch-license-item {
    margin-top: 0.875rem;
}
.home-stitch-license-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(62, 207, 154, 0.15);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.home-stitch-license-item__icon svg { width: 1.25rem; height: 1.25rem; }
.home-stitch-license-item__title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
}
.home-stitch-license-item__desc {
    margin: 0.125rem 0 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}
.home-stitch-features-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
@media (max-width: 1100px) {
    .home-stitch-features-grid { grid-template-columns: 1fr; }
}

.home-stitch-reviews {
    background: #f2efe4;
    padding: 0 0 4rem;
}
.home-stitch-reviews .trust-reviews__header {
    text-align: center;
    margin-bottom: 2rem;
}

.home-stitch-courses .section-band__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.home-stitch-courses__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
    .home-stitch-courses__grid { grid-template-columns: 1fr; }
}
.home-stitch-course {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: border-color 0.25s var(--ease);
}
.home-stitch-course:hover {
    border-color: rgba(62, 207, 154, 0.45);
}
.home-stitch-course__thumb {
    position: relative;
    height: 12rem;
    background: linear-gradient(135deg, #0b2b26, #164d44);
}
.home-stitch-course__thumb .badge {
    position: absolute;
    top: 0.75rem;
    inset-inline-end: 0.75rem;
    z-index: 1;
}
.home-stitch-course__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-stitch-course__body {
    padding: 1.5rem;
}
.home-stitch-course__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}
.home-stitch-course__desc {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    line-height: 1.55;
}
.home-stitch-course__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.875rem;
    background: rgba(255,255,255,0.1);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.home-stitch-course__btn:hover {
    background: rgba(255,255,255,0.18);
    color: white;
}

.home-stitch-partners {
    padding: 4rem 0;
    background: var(--surface-dark);
}
.home-stitch-partners__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.home-stitch-partners__head .section-label { color: var(--accent-light); }
.home-stitch-partners__head .section-title { color: white; }
.home-stitch-partners__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
}
@media (max-width: 900px) {
    .home-stitch-partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.home-stitch-partner {
    display: flex;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1rem;
    transition: border-color 0.25s var(--ease);
}
.home-stitch-partner:hover { border-color: rgba(62, 207, 154, 0.3); }
.home-stitch-partner img {
    height: 3rem;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity 0.3s, filter 0.3s;
}
.home-stitch-partner:hover img {
    opacity: 1;
    filter: none;
}

.home-stitch-cta {
    padding: 0 0 4rem;
    background: var(--surface-dark);
}
.home-stitch-cta__panel {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #0a1f1c 0%, #050d0c 100%);
    position: relative;
    overflow: hidden;
}
.home-stitch-cta__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}
.home-stitch-cta__panel > * { position: relative; z-index: 1; }
.home-stitch-cta__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    color: white;
}
.home-stitch-cta__desc {
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    color: var(--text-on-dark-muted);
    font-size: 1.0625rem;
}
.home-stitch-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
}

