/* ===== الهيدر ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    background: var(--ink-navy);
    padding: 12px 0;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.4);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo span {
    color: var(--ticket-amber);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color .2s ease;
}

.site-nav a:hover { color: var(--ticket-amber); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}
/* ===== زرار تسجيل الدخول في الهيدر ===== */
.header-login-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 9px 20px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-login-link:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

@media (max-width: 860px) {
    .header-login-link {
        border: none;
        padding: 0;
        font-size: 1rem;
    }
}

@media (max-width: 860px) {
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--ink-navy);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right .35s ease;
    }
    .site-nav.is-open { right: 0; }
    .nav-toggle { display: block; }
}


/* ===== الهيرو ===== */
.hero {
    background: var(--ink-navy);
    padding: 170px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,90,168,0.35), transparent 70%);
    top: -200px;
    left: -150px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--ticket-amber);
}

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    gap: 28px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero { padding: 140px 0 70px; }
    .hero-ticket { transform: none; max-width: 380px; margin: 0 auto; }
}


/* ===== بطاقة التذكرة المتحركة في الهيرو ===== */
.hero-ticket {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: rotate(-2deg);
    animation: ticketFloat 3.2s ease-in-out infinite;
}

@keyframes ticketFloat {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-1deg) translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ticket { animation: none; }
}

.hero-ticket__top {
    background: linear-gradient(135deg, var(--trust-blue), var(--ink-navy-soft));
    color: var(--white);
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-ticket__top small {
    display: block;
    opacity: 0.7;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.hero-ticket__num {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    font-weight: 600;
}

.hero-ticket__seam {
    border-top: 2px dashed var(--border-soft);
    margin: 0 26px;
    position: relative;
}

.hero-ticket__seam::before,
.hero-ticket__seam::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--ink-navy);
    border-radius: 50%;
    top: -12px;
}

.hero-ticket__seam::before { left: -38px; }
.hero-ticket__seam::after { right: -38px; }

.hero-ticket__body {
    padding: 24px 26px 28px;
}

.hero-ticket__status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ink-navy);
    margin-bottom: 14px;
}

.hero-ticket__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--slate);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-soft);
}

.hero-ticket__row:last-child { border-bottom: none; }

/* فيد سريع عند تغيير حالة التذكرة */
.ticket-fade {
    transition: opacity .2s ease, transform .2s ease;
    display: inline-block;
}

.ticket-fade.is-updating {
    opacity: 0;
    transform: translateY(4px);
}


/* ===== بادجات عائمة حوالين تذكرة الهيرو ===== */
.hero-visual {
    position: relative;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-navy);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5;
    white-space: nowrap;
}

.floating-badge i {
    color: var(--ticket-amber);
    font-size: 1rem;
}

/* أعلى يسار الكارت */
.floating-badge--1 {
    top: -20px;
    left: -28px;
    animation-delay: 0s;
}

/* بادجة بلون مختلف تماماً عشان تبان - كحلي بخلفية صريحة */
.floating-badge--2 {
    bottom: -18px;
    left: -36px;
    background: var(--ink-navy);
    color: var(--white);
    border: none;
    box-shadow: 0 20px 40px -18px rgba(10, 23, 48, 0.55);
    animation-delay: 1.2s;
}

.floating-badge--2 i {
    color: var(--ticket-amber);
}

/* أعلى يمين الكارت - بعيدة عن محتوى التذكرة خالص */
.floating-badge--3 {
    top: -20px;
    right: -28px;
    animation-delay: 0.6s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
    .floating-badge { display: none; }
}


/* ===== شريط الثقة تحت الهيرو ===== */
.trust-strip {
    margin-top: 64px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    align-items: center;
}

.trust-strip span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-strip i {
    color: var(--ticket-amber);
}


/* ===== قسم المشكلة/الحل ===== */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
}

.problem-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232,163,61,0.12);
    color: var(--ticket-amber-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}


/* ===== قسم بلون أزرق فاتح (تنويع بين الأقسام) ===== */
.section--blue-tint {
    background: linear-gradient(180deg, rgba(37,105,196,0.05), rgba(37,105,196,0.02));
    border-top: 1px solid rgba(37,105,196,0.08);
    border-bottom: 1px solid rgba(37,105,196,0.08);
}


/* ===== قسم "إزاي بيشتغل" ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 16%;
    left: 16%;
    height: 2px;
    background: var(--border-soft);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ink-navy);
    color: var(--ticket-amber);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

@media (max-width: 860px) {
    .steps { grid-template-columns: 1fr; gap: 40px; }
    .steps::before { display: none; }
}


/* ===== قسم المقارنة (قبل / بعد) - كحلي غامق ===== */
.compare-section {
    background: var(--ink-navy);
    position: relative;
    overflow: hidden;
}

.compare-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,105,196,0.28), transparent 70%);
    top: -180px;
    right: -150px;
}

.compare-section .container { position: relative; z-index: 2; }

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    border-radius: var(--radius-md);
    padding: 30px 28px;
}

.compare-card--before {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.compare-card--after {
    background: rgba(232,163,61,0.08);
    border: 1.5px solid rgba(232,163,61,0.35);
}

.compare-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-card--before .compare-card__title { color: rgba(255,255,255,0.6); }
.compare-card--after .compare-card__title { color: var(--ticket-amber); }

.compare-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
}

.compare-card--before li { color: rgba(255,255,255,0.55); }
.compare-card--after li { color: rgba(255,255,255,0.9); }

.compare-card--before li i { color: rgba(255,255,255,0.35); margin-top: 3px; }
.compare-card--after li i { color: var(--ticket-amber); margin-top: 3px; }

@media (max-width: 760px) {
    .compare-grid { grid-template-columns: 1fr; }
}


/* ===== قسم آراء العملاء (فاتح) ===== */
.testimonial-light {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease;
}

.testimonial-light:hover { transform: translateY(-6px); }

.testimonial-light__stars {
    color: var(--ticket-amber);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.testimonial-light p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-light__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-light__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink-navy);
    color: var(--ticket-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-light__author div strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-navy);
}

.testimonial-light__author div span {
    font-size: 0.8rem;
    color: var(--slate-light);
}


/* ===== الأسئلة الشائعة (أكورديون) ===== */
/* ===== الأسئلة الشائعة (أكورديون) ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(37,105,196,0.25);
}

.faq-item.is-open {
    box-shadow: var(--shadow-soft);
    border-color: var(--ticket-amber);
}

.faq-item__q {
    width: 100%;
    background: none;
    border: none;
    text-align: right;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink-navy);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37,105,196,0.1);
    color: var(--trust-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.faq-item.is-open .faq-icon {
    background: var(--ticket-amber);
    color: var(--ink-navy);
    transform: rotate(45deg);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item__a p {
    padding: 0 22px 22px 74px;
    font-size: 0.94rem;
}

.faq-item.is-open .faq-item__a {
    max-height: 240px;
}

/* ===== قسم الأسئلة الشائعة + كارت جانبي متحرك ===== */
.faq-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.faq-side {
    background: linear-gradient(165deg, var(--ink-navy), var(--ink-navy-soft));
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.faq-side::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,163,61,0.14), transparent 70%);
    top: -100px;
    left: -80px;
}

.faq-side > * {
    position: relative;
    z-index: 2;
}

.faq-side__radar {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 24px;
}

.faq-side__radar-ring {
    position: absolute;
    border: 2px solid rgba(232,163,61,0.4);
    border-radius: 50%;
    animation: radarPulse 2.6s ease-out infinite;
}

.faq-side__radar-ring:nth-child(2) { animation-delay: 0.87s; }
.faq-side__radar-ring:nth-child(3) { animation-delay: 1.74s; }

@keyframes radarPulse {
    0% { width: 38px; height: 38px; opacity: 0.9; }
    100% { width: 96px; height: 96px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-side__radar-ring { animation: none; opacity: 0; }
}

.faq-side__icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ticket-amber);
    color: var(--ink-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.faq-side h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-side p {
    color: rgba(255,255,255,0.7);
    font-size: 0.86rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.faq-side__features {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.faq-side__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.06);
    padding: 10px 14px;
    border-radius: 10px;
}

.faq-side__features li i {
    color: var(--ticket-amber);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .faq-split { grid-template-columns: 1fr; }
    .faq-side { order: -1; }
}


/* ===== ستاجر (تتابع) للأنيميشن عند الظهور ===== */
.grid--3 .reveal:nth-child(1) { transition-delay: 0s; }
.grid--3 .reveal:nth-child(2) { transition-delay: .1s; }
.grid--3 .reveal:nth-child(3) { transition-delay: .2s; }
.grid--3 .reveal:nth-child(4) { transition-delay: .3s; }
.grid--3 .reveal:nth-child(5) { transition-delay: .4s; }
.grid--3 .reveal:nth-child(6) { transition-delay: .5s; }

.problem-list .reveal:nth-child(1) { transition-delay: 0s; }
.problem-list .reveal:nth-child(2) { transition-delay: .12s; }
.problem-list .reveal:nth-child(3) { transition-delay: .24s; }

.faq-item.reveal:nth-child(1) { transition-delay: 0s; }
.faq-item.reveal:nth-child(2) { transition-delay: .1s; }
.faq-item.reveal:nth-child(3) { transition-delay: .2s; }
.faq-item.reveal:nth-child(4) { transition-delay: .3s; }


/* ===== الفوتر ===== */
.site-footer {
    background: var(--ink-navy);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-weight: 600;
}

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 10px; }

.site-footer a:hover { color: var(--ticket-amber); }

.site-footer__bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}


/* ===== صفحة من نحن ===== */
.about-hero {
    background: var(--ink-navy);
    padding: 160px 0 90px;
    text-align: center;
}

.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 18px auto 0; }

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 860px) {
    .value-grid { grid-template-columns: 1fr; }
}


/* ===== صفحة الأسعار ===== */
/* ===== صفحة الأسعار - خلفية موحدة ===== */
.pricing-page {
    background: radial-gradient(ellipse at top, #16346B 0%, var(--ink-navy) 55%, #081226 100%);
    padding: 150px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-page::before,
.pricing-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    z-index: 0;
    animation: bgDrift 14s ease-in-out infinite;
}

.pricing-page::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,105,196,0.28), transparent 70%);
    top: -140px;
    right: -100px;
}

.pricing-page::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(232,163,61,0.14), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
    animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
    .pricing-page::before,
    .pricing-page::after { animation: none; }
}

.pricing-page .container {
    position: relative;
    z-index: 2;
}

.pricing-page h1 { color: var(--white); }
.pricing-page > .container > p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 18px auto 0; }

/* ===== توجل شهري / سنوي ===== */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 5px;
    margin: 36px auto 0;
}

.billing-toggle__option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

.billing-toggle__option.is-active {
    background: var(--ticket-amber);
    color: var(--ink-navy);
}

.billing-toggle__badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 0.72rem;
    font-family: var(--font-mono);
    padding: 3px 8px;
    border-radius: 100px;
}

.billing-toggle__option.is-active .billing-toggle__badge {
    background: rgba(10,23,48,0.15);
    color: var(--ink-navy);
}

/* ===== كروت الخطط ===== */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1120px;
    margin: 48px auto 0;
}

.pricing-grid > div {
    flex: 1 1 340px;
    max-width: 380px;
}

@media (max-width: 480px) {
    .pricing-grid > div { max-width: 100%; }
}

@media (max-width: 760px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.plan-ticket {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    text-align: right;
    position: relative;
}

.plan-ticket--featured {
    border: 2px solid var(--ticket-amber);
}

.plan-ticket__head {
    background: var(--ink-navy);
    color: var(--white);
    padding: 30px 30px 26px;
    position: relative;
}

.plan-ticket__badge {
    position: absolute;
    top: -1px;
    left: 30px;
    background: var(--ticket-amber);
    color: var(--ink-navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
}

.plan-ticket__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.plan-ticket__price {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--ticket-amber);
}

.plan-ticket__price span {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.6);
}

.plan-ticket__price--yearly { display: none; }

.plan-ticket__billed-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    display: none;
}

.pricing-grid.is-yearly .plan-ticket__price--monthly { display: none; }
.pricing-grid.is-yearly .plan-ticket__price--yearly { display: block; }
.pricing-grid.is-yearly .plan-ticket__billed-note { display: block; }

.plan-ticket__seam {
    border-top: 2px dashed var(--border-soft);
    margin: 0 26px;
    position: relative;
}

.plan-ticket__seam::before,
.plan-ticket__seam::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--mist);
    border-radius: 50%;
    top: -12px;
}

.plan-ticket__seam::before { left: -38px; }
.plan-ticket__seam::after { right: -38px; }

.plan-ticket__body { padding: 28px 30px 32px; }

.plan-ticket__features {
    list-style: none;
    margin-bottom: 26px;
}

.plan-ticket__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.95rem;
    color: var(--slate);
    border-bottom: 1px solid var(--border-soft);
}

.plan-ticket__features li:last-child { border-bottom: none; }

.plan-ticket__features li i { color: var(--trust-blue); }



/* ===== ملاحظة الـ 14 يوم فوق كل خطة ===== */
.plan-trial-note {
    text-align: center;
    color: var(--ticket-amber);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* ===== صفحة ابدأ تجربتك - كارت واحد مركزي ===== */
.trial-page {
    background: radial-gradient(ellipse at top, #16346B 0%, var(--ink-navy) 55%, #081226 100%);
    min-height: 100vh;
    padding: 130px 32px 70px;
    position: relative;
    overflow: hidden;
}

.trial-page::before,
.trial-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    z-index: 0;
    animation: bgDrift 14s ease-in-out infinite;
}

.trial-page::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,105,196,0.28), transparent 70%);
    top: -120px;
    right: -100px;
}

.trial-page::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(232,163,61,0.14), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
    animation-direction: reverse;
}

@keyframes bgDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -25px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .trial-page::before,
    .trial-page::after { animation: none; }
}

/* الكارت الرئيسي - direction:ltr عشان الفورم يتحط شمال بشكل طبيعي بدون تلاعب بالأحجام */
.trial-shell {
    direction: ltr;
    max-width: 1080px;
    min-height: 660px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    display: grid;
    grid-template-columns: 3fr 2fr;
    position: relative;
    z-index: 2;
}

.trial-split__form {
    direction: rtl;
    padding: 44px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trial-split__form-inner {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.trial-split__promo {
    direction: rtl;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0),
        linear-gradient(165deg, var(--trust-blue), var(--ink-navy-soft));
    background-size: 22px 22px, cover;
    padding: 44px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.trial-split__promo::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,163,61,.25), transparent 70%);
    top: -120px;
    left: -90px;
}

.trial-split__promo > * {
    position: relative;
    z-index: 2;
}

.trial-split__promo h2 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.trial-split__promo > p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    max-width: 100%;
}

.trial-points {
    list-style: none;
    margin: 26px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trial-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}

.trial-points li i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(232,163,61,0.15);
    color: var(--ticket-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    backdrop-filter: blur(6px);
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.86rem;
    margin-bottom: 14px;
    line-height: 1.65;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.testimonial-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ticket-amber);
    color: var(--ink-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.trial-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink-navy);
    margin-bottom: 30px;
}

.trial-logo span { color: var(--ticket-amber); }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 22px;
    line-height: 1.5;
}

.form-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.form-check a {
    color: var(--trust-blue);
    font-weight: 600;
}

@media (max-width: 960px) {
    .trial-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .trial-split__promo { padding: 40px 28px; }
    .trial-split__form { padding: 44px 28px; }
    .trial-page { padding: 120px 16px 60px; }
}



/* ===== صفحات الـ Auth (تسجيل دخول / استعادة كلمة مرور / تأكيد) ===== */
.auth-page {
    background: radial-gradient(ellipse at top, #16346B 0%, var(--ink-navy) 55%, #081226 100%);
    min-height: 100vh;
    padding: 150px 24px 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-page::before,
.auth-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    z-index: 0;
    animation: bgDrift 14s ease-in-out infinite;
}

.auth-page::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,105,196,0.28), transparent 70%);
    top: -120px;
    right: -100px;
}

.auth-page::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(232,163,61,0.14), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
    animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
    .auth-page::before,
    .auth-page::after { animation: none; }
}

.auth-page__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 34px;
    position: relative;
    z-index: 2;
}

.auth-page__logo span { color: var(--ticket-amber); }

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 44px 40px;
    position: relative;
    z-index: 2;
}

.auth-card__title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.auth-card__subtitle {
    text-align: center;
    color: var(--slate);
    font-size: 0.92rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.auth-links {
    text-align: center;
    font-size: 0.88rem;
    color: var(--slate-light);
    margin-top: 22px;
}

.auth-links a {
    color: var(--trust-blue);
    font-weight: 600;
}

.auth-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232,163,61,0.12);
    color: var(--ticket-amber-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.field-error {
    color: #dc3545;
    font-size: 0.82rem;
    margin-top: 6px;
}

.alert-banner {
    background: rgba(37,105,196,0.08);
    border: 1px solid rgba(37,105,196,0.22);
    color: var(--ink-navy);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.88rem;
    margin-bottom: 22px;
}

.alert-banner--error {
    background: rgba(220,53,69,0.08);
    border-color: rgba(220,53,69,0.25);
    color: #b42318;
}

.alert-banner--success {
    background: rgba(40,167,69,0.08);
    border-color: rgba(40,167,69,0.25);
    color: #1b7a37;
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-label-row a {
    font-size: 0.82rem;
    color: var(--trust-blue);
    font-weight: 600;
}



/* ===== الصفحات القانونية (الخصوصية والاستخدام) ===== */
.legal-hero {
    background: var(--ink-navy);
    padding: 150px 0 60px;
    text-align: center;
}

.legal-hero h1 { color: var(--white); }
.legal-hero p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 12px; }

.legal-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 24px 100px;
}

.legal-body h2 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 14px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
    margin-bottom: 14px;
    line-height: 1.9;
}

.legal-body ul {
    margin: 0 0 16px;
    padding-right: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-body li {
    color: var(--slate);
    line-height: 1.8;
}

.legal-note {
    background: var(--mist);
    border-right: 3px solid var(--trust-blue);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--slate);
    margin-top: 32px;
}
