*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --navy: #0a0e1a;
    --deep: #0f1629;
    --card: #151b30;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --teal: #0d9488;
    --green: #22c55e;
    --lime: #a3e635;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --orange: #f97316;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --text-bright: #f8fafc;
    --glow: 0 0 40px rgba(59, 130, 246, .15);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
.syne,
.kufi {
    font-family: var(--font-heading)
}

/* ─── UTILITY ─── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase
}

.badge-blue {
    background: rgba(59, 130, 246, .15);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, .25)
}

.badge-green {
    background: rgba(34, 197, 94, .12);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, .2)
}

.badge-purple {
    background: rgba(139, 92, 246, .12);
    color: var(--purple);
    border: 1px solid rgba(139, 92, 246, .2)
}

.badge-orange {
    background: rgba(249, 115, 22, .12);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, .2)
}

/* ─── CTA BUTTON ─── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--green);
    color: #000;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, .3)
}

.cta-btn:hover::before {
    left: 100%
}

.cta-btn svg {
    width: 28px;
    height: 28px
}

.cta-btn-sm {
    padding: 14px 28px;
    font-size: .95rem;
    border-radius: 14px
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    animation: float 8s ease-in-out infinite;
}

.hero-bg .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--blue);
    top: -10%;
    right: -5%;
    animation-delay: 0s
}

.hero-bg .orb-2 {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    bottom: 5%;
    left: -5%;
    animation-delay: 3s
}

.hero-bg .orb-3 {
    width: 250px;
    height: 250px;
    background: var(--purple);
    top: 40%;
    left: 30%;
    animation-delay: 5s;
    opacity: .2
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--text-bright);
    margin-bottom: 20px
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    max-width: 480px
}

.hero-text .pain-point {
    font-size: 1rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-text .pain-point::before {
    content: '😩';
    font-size: 1.3rem
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--card);
    border: 2px solid rgba(255, 255, 255, .08);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--glow), 0 25px 60px rgba(0, 0, 0, .5);
    position: relative;
    overflow: hidden;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--navy);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 16px;
}

.phone-screen {
    background: linear-gradient(180deg, #1a2340 0%, #0f172a 100%);
    border-radius: 28px;
    height: calc(100% - 44px);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phone-header {
    text-align: center;
    padding: 8px 0
}

.phone-header .app-icon {
    font-size: 2rem;
    margin-bottom: 4px
}

.phone-header h3 {
    color: var(--text-bright);
    font-size: .9rem;
    font-family: var(--font-heading)
}

.phone-input {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-input .flag {
    font-size: 1.1rem
}

.phone-input .num {
    color: var(--text-dim);
    font-family: monospace
}

.saved-locations {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.saved-loc {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    cursor: pointer;
    transition: all .3s;
}

.saved-loc:hover,
.saved-loc.active {
    background: rgba(59, 130, 246, .15);
    border-color: var(--blue)
}

.saved-loc .emoji {
    font-size: 1.2rem
}

.saved-loc .label {
    color: var(--text);
    font-weight: 500
}

.saved-loc .addr {
    color: var(--text-dim);
    font-size: .7rem
}

.phone-send {
    background: var(--green);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.phone-send .wa {
    font-size: 1.1rem
}

/* floating badges around phone */
.float-badge {
    position: absolute;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    animation: floatBadge 5s ease-in-out infinite;
}

.fb1 {
    background: rgba(34, 197, 94, .15);
    color: var(--green);
    top: 15%;
    right: -30px;
    animation-delay: 0s
}

.fb2 {
    background: rgba(59, 130, 246, .15);
    color: var(--blue);
    bottom: 25%;
    left: -40px;
    animation-delay: 2s
}

.fb3 {
    background: rgba(139, 92, 246, .15);
    color: var(--purple);
    top: 55%;
    right: -45px;
    animation-delay: 4s
}

/* ─── PAIN SECTION ─── */
.pain {
    padding: 100px 0;
    position: relative
}

.pain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .3), transparent);
}

.section-label {
    text-align: center;
    margin-bottom: 16px
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-bright);
    margin-bottom: 16px
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.05rem
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.pain-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.pain-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, .2)
}

.pain-card .step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(236, 72, 153, .15);
    position: absolute;
    top: 12px;
    right: 16px;
}

.pain-card .emoji {
    font-size: 2rem;
    margin-bottom: 12px
}

.pain-card h3 {
    color: var(--pink);
    font-size: 1rem;
    margin-bottom: 6px
}

.pain-card p {
    color: var(--text-dim);
    font-size: .9rem;
    line-height: 1.5
}

/* pain-steps: AR 2-column layout variant */
.pain-steps {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pain-card .top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px
}

.pain-total {
    text-align: center;
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(236, 72, 153, .08), rgba(139, 92, 246, .08));
    border: 1px dashed rgba(236, 72, 153, .2);
    border-radius: 16px;
    padding: 24px;
}

.pain-total .big {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--pink);
    display: block
}

.pain-total .small {
    color: var(--text-dim);
    font-size: .95rem;
    margin-top: 4px
}

/* ─── MEME SECTION (AR only) ─── */
.meme-section {
    padding: 60px 0;
    text-align: center
}

.meme-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card);
    border: 2px solid rgba(249, 115, 22, .15);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.meme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
}

.meme-card .meme-emoji {
    font-size: 4rem;
    margin-bottom: 16px
}

.meme-card h3 {
    font-size: 1.2rem;
    color: var(--text-bright);
    margin-bottom: 8px
}

.meme-card .contacts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.meme-card .contact-tag {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(236, 72, 153, .1);
    color: var(--pink);
    border: 1px solid rgba(236, 72, 153, .15);
}

.meme-card .punchline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 16px;
}

/* ─── SOLUTION ─── */
.solution {
    padding: 100px 0;
    position: relative
}

.sol-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative
}

.sol-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), var(--cyan), var(--green));
    border-radius: 2px;
}

.sol-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

.sol-step .num-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-bright);
    position: relative;
    z-index: 1;
}

.sol-step:nth-child(1) .num-circle {
    background: linear-gradient(135deg, var(--blue), #1d4ed8)
}

.sol-step:nth-child(2) .num-circle {
    background: linear-gradient(135deg, var(--cyan), var(--teal))
}

.sol-step:nth-child(3) .num-circle {
    background: linear-gradient(135deg, var(--green), #16a34a)
}

.sol-step .step-content h3 {
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: 6px;
    font-family: var(--font-heading)
}

.sol-step .step-content p {
    color: var(--text-dim);
    font-size: 1rem
}

.sol-step .step-content .time-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(34, 197, 94, .1);
    color: var(--green);
}

.sol-result {
    text-align: center;
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(6, 182, 212, .08));
    border: 1px solid rgba(34, 197, 94, .15);
    border-radius: 20px;
    padding: 32px;
}

.sol-result .big {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--green);
    display: block
}

.sol-result .versus {
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: 6px
}

.sol-result .versus s {
    color: var(--pink);
    text-decoration: line-through
}

/* ─── FEATURES ─── */
.features {
    padding: 100px 0
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.feat-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity .3s;
}

.feat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .1)
}

.feat-card:hover::after {
    opacity: 1
}

.feat-card:nth-child(1)::after {
    background: linear-gradient(90deg, var(--blue), var(--cyan))
}

.feat-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--green), var(--lime))
}

.feat-card:nth-child(3)::after {
    background: linear-gradient(90deg, var(--purple), var(--pink))
}

.feat-card:nth-child(4)::after {
    background: linear-gradient(90deg, var(--cyan), var(--teal))
}

.feat-card .icon {
    font-size: 2.2rem;
    margin-bottom: 14px
}

.feat-card h3 {
    font-size: 1.1rem;
    color: var(--text-bright);
    margin-bottom: 8px
}

.feat-card p {
    color: var(--text-dim);
    font-size: .9rem;
    line-height: 1.6
}

/* ─── SOCIAL PROOF / COUNTER ─── */
.social-proof {
    padding: 80px 0
}

.proof-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 40px 32px;
}

.proof-item {
    text-align: center
}

.proof-item .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-bright);
    display: block
}

.proof-item .label {
    color: var(--text-dim);
    font-size: .85rem;
    margin-top: 4px
}

/* ─── FAQ ─── */
.faq {
    padding: 80px 0
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-bright);
    font-size: 1rem;
    transition: background .3s;
}

.faq-q:hover {
    background: rgba(255, 255, 255, .03)
}

.faq-q .arrow {
    transition: transform .3s;
    color: var(--blue);
    font-size: 1.2rem
}

.faq-item.open .faq-q .arrow {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    padding: 0 24px;
    color: var(--text-dim);
    font-size: .95rem;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px
}

/* ─── FINAL CTA ─── */
.final-cta {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--text-bright);
    margin-bottom: 16px;
    position: relative
}

.final-cta .sub {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.final-cta .cta-btn {
    font-size: 1.15rem;
    padding: 18px 40px;
    position: relative
}

.final-cta .free-tag {
    display: block;
    margin-top: 16px;
    font-size: .85rem;
    color: var(--text-dim);
    position: relative;
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 32px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: .85rem;
}

footer a {
    color: var(--blue);
    text-decoration: none
}

/* ─── ANIMATIONS ─── */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(20px, -20px)
    }
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

.reveal-d5 {
    transition-delay: .5s
}

.reveal-d6 {
    transition-delay: .6s
}

/* ─── RESPONSIVE ─── */
@media(max-width:768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }

    .hero-text .subtitle,
    .hero-text .pain-point {
        margin-left: auto;
        margin-right: auto;
        justify-content: center
    }

    .hero-text .cta-btn {
        margin: 0 auto
    }

    .hero-phone {
        order: -1
    }

    .phone-frame {
        width: 240px;
        height: 480px
    }

    .float-badge {
        display: none
    }

    .pain-cards {
        grid-template-columns: 1fr
    }

    .pain-steps {
        grid-template-columns: 1fr
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .proof-bar {
        gap: 32px
    }

    .sol-steps::before {
        left: 28px
    }
}

/* ══════════════════════════════════════════
   RTL OVERRIDES (Arabic page: dir="rtl")
   ══════════════════════════════════════════ */

[dir="rtl"] body {
    line-height: 1.8;
    direction: rtl
}

[dir="rtl"] .badge {
    letter-spacing: .3px;
    text-transform: none
}

/* CTA shimmer flips direction */
[dir="rtl"] .cta-btn {
    font-family: var(--font-heading);
}

[dir="rtl"] .cta-btn::before {
    left: auto;
    right: -100%;
    background: linear-gradient(270deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: right .5s;
}

[dir="rtl"] .cta-btn:hover::before {
    right: 100%;
    left: auto;
}

/* Hero orbs mirror positions */
[dir="rtl"] .hero-bg .orb-1 {
    right: auto;
    left: -5%
}

[dir="rtl"] .hero-bg .orb-2 {
    left: auto;
    right: -5%
}

[dir="rtl"] .hero-bg .orb-3 {
    background: var(--orange);
    left: auto;
    right: 30%
}

/* Hero text sizing for Arabic */
[dir="rtl"] .hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.3
}

[dir="rtl"] .hero-text .subtitle {
    font-size: 1.1rem;
    max-width: 500px
}

[dir="rtl"] .hero-text .pain-point {
    color: var(--orange);
    font-weight: 600
}

/* Phone mockup: slightly smaller for Arabic */
[dir="rtl"] .phone-frame {
    width: 270px;
    height: 540px
}

[dir="rtl"] .phone-notch {
    margin: 0 auto 14px
}

[dir="rtl"] .phone-screen {
    height: calc(100% - 42px);
    padding: 18px 14px;
    gap: 12px;
    direction: rtl
}

[dir="rtl"] .phone-header {
    padding: 6px 0
}

[dir="rtl"] .phone-header .app-icon {
    font-size: 1.8rem;
    margin-bottom: 2px
}

[dir="rtl"] .phone-header h3 {
    font-size: .85rem
}

[dir="rtl"] .phone-input {
    padding: 10px 12px;
    font-size: .78rem;
    direction: ltr
}

[dir="rtl"] .phone-input .flag {
    font-size: 1rem
}

[dir="rtl"] .phone-input .num {
    font-size: .8rem
}

[dir="rtl"] .saved-locations {
    gap: 7px
}

[dir="rtl"] .saved-loc {
    padding: 9px 12px;
    font-size: .78rem
}

[dir="rtl"] .saved-loc .emoji {
    font-size: 1.1rem
}

[dir="rtl"] .saved-loc .label {
    font-weight: 600;
    font-size: .8rem
}

[dir="rtl"] .saved-loc .addr {
    font-size: .65rem
}

[dir="rtl"] .phone-send {
    padding: 11px;
    font-size: .82rem;
    font-family: var(--font-heading)
}

/* Floating badges mirror positions */
[dir="rtl"] .fb1 {
    right: auto;
    left: -30px
}

[dir="rtl"] .fb2 {
    left: auto;
    right: -40px
}

[dir="rtl"] .fb3 {
    background: rgba(249, 115, 22, .15);
    color: var(--orange);
    right: auto;
    left: -45px
}

[dir="rtl"] .float-badge {
    font-size: .73rem
}

/* Pain section: AR uses step-num on left instead of right */
[dir="rtl"] .pain-card {
    padding: 24px 22px
}

[dir="rtl"] .pain-card:hover {
    transform: translateY(-3px)
}

[dir="rtl"] .pain-card .step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(236, 72, 153, .12);
    top: 8px;
    right: auto;
    left: 14px
}

[dir="rtl"] .pain-card .emoji {
    font-size: 1.6rem;
    margin-bottom: 0
}

[dir="rtl"] .pain-card h3 {
    font-size: .95rem;
    margin-bottom: 0
}

[dir="rtl"] .pain-card p {
    font-size: .85rem;
    line-height: 1.7
}

[dir="rtl"] .pain-total {
    padding: 28px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

[dir="rtl"] .pain-total .big {
    font-size: 1.8rem;
    font-weight: 800
}

[dir="rtl"] .pain-total .small {
    font-size: .9rem;
    margin-top: 6px
}

/* Section titles for Arabic */
[dir="rtl"] .section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    line-height: 1.5
}

[dir="rtl"] .section-sub {
    font-size: 1.02rem
}

/* Solution timeline: line on right for RTL */
[dir="rtl"] .sol-steps::before {
    left: auto;
    right: 32px;
    width: 3px
}

[dir="rtl"] .sol-step {
    gap: 24px;
    padding: 28px 0
}

[dir="rtl"] .sol-step .num-circle {
    font-size: 1.4rem;
    font-weight: 900
}

[dir="rtl"] .sol-step .step-content h3 {
    font-size: 1.15rem
}

[dir="rtl"] .sol-step .step-content p {
    font-size: .95rem
}

[dir="rtl"] .sol-step .step-content .time-tag {
    padding: 4px 14px;
    font-size: .73rem;
    font-weight: 700
}

[dir="rtl"] .sol-result .big {
    font-size: 1.9rem;
    font-weight: 800
}

[dir="rtl"] .sol-result .versus {
    font-size: .95rem;
    margin-top: 8px
}

[dir="rtl"] .sol-result .versus s {
    text-decoration: line-through
}

/* Features: AR 4th card uses orange gradient */
[dir="rtl"] .feat-card {
    padding: 28px 24px
}

[dir="rtl"] .feat-card:nth-child(4)::after {
    background: linear-gradient(90deg, var(--orange), #fbbf24)
}

[dir="rtl"] .feat-card .icon {
    font-size: 2rem;
    margin-bottom: 12px
}

[dir="rtl"] .feat-card h3 {
    font-size: 1rem
}

[dir="rtl"] .feat-card p {
    font-size: .88rem;
    line-height: 1.8
}

/* Proof bar */
[dir="rtl"] .proof-bar {
    gap: 50px;
    padding: 36px 28px
}

[dir="rtl"] .proof-item .num {
    font-size: 2.2rem;
    font-weight: 900
}

[dir="rtl"] .proof-item .label {
    font-size: .82rem
}

/* FAQ */
[dir="rtl"] .faq-q {
    padding: 18px 22px;
    font-weight: 700;
    font-size: .95rem
}

[dir="rtl"] .faq-q .arrow {
    font-size: 1.1rem
}

[dir="rtl"] .faq-a {
    padding: 0 22px;
    font-size: .9rem;
    line-height: 1.8
}

[dir="rtl"] .faq-item.open .faq-a {
    padding: 0 22px 18px
}

/* Final CTA */
[dir="rtl"] .final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.5
}

[dir="rtl"] .final-cta .sub {
    font-size: 1.05rem
}

[dir="rtl"] .final-cta .cta-btn {
    font-size: 1.1rem
}

[dir="rtl"] .final-cta .free-tag {
    font-size: .83rem
}

[dir="rtl"] footer {
    font-size: .83rem
}

/* RTL responsive */
@media(max-width:768px) {
    [dir="rtl"] .phone-frame {
        width: 230px;
        height: 460px
    }

    [dir="rtl"] .proof-bar {
        gap: 28px
    }

    [dir="rtl"] .sol-steps::before {
        right: 28px
    }
}
