:root {
    --orange: #E05A2B;
    --orange-dark: #B8451E;
    --orange-lt: #F7EDE5;
    --orange-xlt: #FDF7F3;
    --orange-mid: #EFA07A;
    --black: #0F0D0B;
    --off-white: #FAF8F6;
    --muted: #6B6360;
    --subtle: #A09890;
    --border: #EAE2D9;
    --border-mid: #D5C9BF;
    --white: #FFFFFF;
    --fAR-disp: 'Cairo', sans-serif;
    --fAR-body: 'Noto Naskh Arabic', 'Cairo', sans-serif;
    --fEN-disp: 'Syne', sans-serif;
    --fEN-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fAR-body);
    background: var(--white);
    color: var(--black);
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── LANG SYSTEM ── */
.t-ar {
    display: block
}

.t-en {
    display: none
}

span.t-ar {
    display: inline
}

span.t-en {
    display: none
}

body.lang-en {
    font-family: var(--fEN-body);
    direction: ltr
}

body.lang-en .t-ar {
    display: none !important
}

body.lang-en .t-en {
    display: block !important
}

body.lang-en span.t-ar {
    display: none !important
}

body.lang-en span.t-en {
    display: inline !important
}

/* ── ARABIC TYPOGRAPHY ──
   Cairo 900 for big display: geometric, bold, unmistakably Arabic-modern
   Noto Naskh for body: elegant calligraphic serif, warm and highly legible
*/
.ar-disp {
    font-family: var(--fAR-disp);
    font-weight: 900;
    line-height: 1.22
}

.ar-head {
    font-family: var(--fAR-disp);
    font-weight: 700;
    line-height: 1.28
}

.ar-body {
    font-family: var(--fAR-body);
    font-weight: 400;
    line-height: 2.05;
    font-size: 15.5px
}

/* English overrides */
body.lang-en .ar-disp {
    font-family: var(--fEN-disp);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px
}

body.lang-en .ar-head {
    font-family: var(--fEN-disp);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px
}

body.lang-en .ar-body {
    font-family: var(--fEN-body);
    font-weight: 400;
    line-height: 1.7;
    font-size: 15px
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 52px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(224, 90, 43, .3);
    overflow: hidden;
}

.logo-mark svg {
    width: 48px;
    height: 48px;
}

.logo-words {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1
}

.logo-name {
    font-family: var(--fEN-disp);
    font-weight: 800;
    font-size: 19px;
    color: var(--black);
    letter-spacing: -0.4px
}

.logo-tag {
    font-family: var(--fAR-body);
    font-size: 10.5px;
    color: var(--muted)
}

body.lang-en .logo-tag {
    font-family: var(--fEN-body)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-family: var(--fAR-disp);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 16px;
    border-radius: 9px;
    transition: all .18s;
}

body.lang-en .nav-links a {
    font-family: var(--fEN-body);
    font-weight: 500
}

.nav-links a:hover {
    color: var(--orange);
    background: var(--orange-lt)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: var(--fAR-disp);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    transition: all .2s;
}

.lang-btn.active {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .1)
}

.btn-ghost {
    padding: 9px 20px;
    border-radius: 9px;
    font-family: var(--fAR-disp);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all .18s;
    white-space: nowrap;
}

body.lang-en .btn-ghost {
    font-family: var(--fEN-body);
    font-weight: 500
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange)
}

.btn-fill {
    padding: 9px 22px;
    border-radius: 9px;
    font-family: var(--fAR-disp);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .18s;
}

body.lang-en .btn-fill {
    font-family: var(--fEN-disp);
    font-weight: 600
}

.btn-fill:hover {
    background: var(--orange-dark)
}

/* ── HERO ── */
.hero {
    min-height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 52px;
    background:
        radial-gradient(ellipse 70% 60% at 0% 5%, #FEF0E7 0%, transparent 65%),
        radial-gradient(ellipse 50% 45% at 100% 95%, #FBF0EB 0%, transparent 55%);
}

body.lang-en .hero {
    direction: ltr
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange-lt);
    border: 1px solid var(--orange-mid);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 28px;
    font-family: var(--fAR-disp);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--orange-dark);
}

body.lang-en .hero-badge {
    font-family: var(--fEN-body);
    font-size: 12px
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .45;
        transform: scale(1.5)
    }
}

/* Hero headline — Cairo 900 makes Arabic large type feel premium */
.hero-title {
    font-family: var(--fAR-disp);
    font-weight: 900;
    font-size: 58px;
    line-height: 1.22;
    color: var(--black);
    margin-bottom: 8px;
}

body.lang-en .hero-title {
    font-family: var(--fEN-disp);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.title-accent {
    color: var(--orange);
    display: block
}

/* Hero sub — Noto Naskh gives body text warmth and calligraphic elegance */
.hero-sub {
    font-family: var(--fAR-body);
    font-size: 16.5px;
    line-height: 2.1;
    color: var(--muted);
    margin-bottom: 38px;
    max-width: 500px;
}

body.lang-en .hero-sub {
    font-family: var(--fEN-body);
    font-size: 16px;
    line-height: 1.72
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 15px 32px;
    font-family: var(--fAR-disp);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
}

body.lang-en .btn-primary {
    font-family: var(--fEN-disp);
    font-size: 14.5px
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(224, 90, 43, .28)
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--border-mid);
    border-radius: 11px;
    padding: 15px 32px;
    font-family: var(--fAR-disp);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
}

body.lang-en .btn-outline {
    font-family: var(--fEN-body)
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange)
}

/* Phone visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px
}

.phone-shell {
    width: 238px;
    height: 432px;
    background: #141210;
    border-radius: 40px;
    padding: 10px;
    z-index: 2;
    position: relative;
    box-shadow: 0 2px 0 1.5px #2c2420, 0 44px 88px rgba(0, 0, 0, .22), 0 14px 36px rgba(224, 90, 43, .13);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0F0D0C;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 22px;
    background: #141210;
    border-radius: 0 0 13px 13px;
}

.wave-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 22px
}

.w-bar {
    width: 4px;
    background: var(--orange);
    border-radius: 3px;
    animation: wv 1.2s ease-in-out infinite
}

.w-bar:nth-child(1) {
    height: 18px;
    animation-delay: .00s
}

.w-bar:nth-child(2) {
    height: 32px;
    animation-delay: .12s
}

.w-bar:nth-child(3) {
    height: 24px;
    animation-delay: .24s
}

.w-bar:nth-child(4) {
    height: 46px;
    animation-delay: .36s
}

.w-bar:nth-child(5) {
    height: 36px;
    animation-delay: .48s
}

.w-bar:nth-child(6) {
    height: 50px;
    animation-delay: .60s
}

.w-bar:nth-child(7) {
    height: 38px;
    animation-delay: .72s
}

.w-bar:nth-child(8) {
    height: 26px;
    animation-delay: .84s
}

.w-bar:nth-child(9) {
    height: 18px;
    animation-delay: .96s
}

@keyframes wv {

    0%,
    100% {
        transform: scaleY(.35);
        opacity: .45
    }

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}

.ph-lbl {
    font-family: var(--fAR-body);
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
    text-align: center;
    line-height: 1.85
}

body.lang-en .ph-lbl {
    font-family: var(--fEN-body)
}

.ph-sub {
    font-family: var(--fAR-body);
    font-size: 11px;
    color: var(--orange-mid);
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.9
}

.ph-timer {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px
}

.ph-status {
    font-family: var(--fAR-body);
    font-size: 10.5px;
    color: rgba(255, 255, 255, .35);
    margin-top: 5px;
    text-align: center;
    line-height: 1.8
}

body.lang-en .ph-status {
    font-family: var(--fEN-body)
}

.ph-end {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #C03333;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-end svg {
    width: 24px;
    height: 24px;
    fill: white
}

.float-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .09);
    z-index: 3;
}

.fc-top {
    top: 24px;
    left: -20px;
    width: 195px
}

.fc-bot {
    bottom: 44px;
    right: -24px;
    width: 215px
}

.fc-live {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    margin-inline-end: 6px;
    animation: blink 2s ease-in-out infinite
}

.fc-lbl {
    font-family: var(--fAR-body);
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
    line-height: 1.85
}

body.lang-en .fc-lbl {
    font-family: var(--fEN-body)
}

.fc-val {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px
}

.fc-sub {
    font-family: var(--fAR-body);
    font-size: 10.5px;
    color: var(--orange);
    line-height: 1.8
}

body.lang-en .fc-sub {
    font-family: var(--fEN-body)
}

.fc-bar-t {
    height: 4px;
    background: #F0E8E2;
    border-radius: 2px;
    margin-top: 9px
}

.fc-bar-f {
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    width: 76%
}

/* ── TRUST BAR ── */
.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
    padding: 32px 52px;
    text-align: center;
}

.trust-lbl {
    font-family: var(--fAR-body);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 22px;
    line-height: 1.85
}

body.lang-en .trust-lbl {
    font-family: var(--fEN-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.trust-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px
}

.flag-emoji {
    font-size: 30px
}

.flag-en {
    font-family: var(--fEN-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--black)
}

.flag-ar {
    font-family: var(--fAR-body);
    font-size: 11px;
    color: var(--muted);
    line-height: 1.85
}

/* ── STATS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 0% 50%, rgba(224, 90, 43, .13) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 20%, rgba(224, 90, 43, .08) 0%, transparent 55%);
    pointer-events: none;
}

.stat-c {
    padding: 52px 40px;
    border-inline-end: 1px solid rgba(255, 255, 255, .07);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transition: background .25s;
}

body.lang-en .stat-c {
    align-items: flex-start
}

.stat-c:last-child {
    border-inline-end: none
}

.stat-c:hover {
    background: rgba(255, 255, 255, .03)
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(224, 90, 43, .15);
    border: 1px solid rgba(224, 90, 43, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

.stat-num span.accent {
    color: var(--orange)
}

.stat-lbl {
    font-family: var(--fAR-disp);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 6px;
    line-height: 1.3;
}

body.lang-en .stat-lbl {
    font-family: var(--fEN-body);
    font-weight: 500
}

.stat-desc {
    font-family: var(--fAR-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.85;
}

body.lang-en .stat-desc {
    font-family: var(--fEN-body);
    font-size: 12px
}

.stat-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .07);
    border-radius: 1px;
    margin-top: 24px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
    opacity: .6
}

/* ── SECTIONS ── */
.section {
    padding: 92px 52px
}

.section-alt {
    background: var(--off-white)
}

.sec-tag {
    display: inline-block;
    background: var(--orange-lt);
    color: var(--orange-dark);
    border-radius: 100px;
    padding: 5px 16px;
    font-family: var(--fAR-disp);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 16px;
}

body.lang-en .sec-tag {
    font-family: var(--fEN-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.sec-title {
    font-family: var(--fAR-disp);
    font-weight: 800;
    font-size: 40px;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 14px;
}

body.lang-en .sec-title {
    font-family: var(--fEN-disp);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -.6px
}

.sec-sub {
    font-family: var(--fAR-body);
    font-size: 16px;
    color: var(--muted);
    line-height: 2.05;
    max-width: 520px
}

body.lang-en .sec-sub {
    font-family: var(--fEN-body);
    font-size: 15.5px;
    line-height: 1.7
}

.sec-hdr {
    margin-bottom: 56px
}

.sec-hdr.center {
    text-align: center
}

.sec-hdr.center .sec-sub {
    margin: 0 auto
}

body.lang-en .sec-hdr {
    direction: ltr
}

/* ── USE CASES ── */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.uc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    transition: box-shadow .2s, transform .2s;
}

.uc-card:hover {
    box-shadow: 0 14px 44px rgba(224, 90, 43, .09);
    transform: translateY(-3px)
}

.uc-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.uc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.uc-title {
    font-family: var(--fAR-disp);
    font-weight: 700;
    font-size: 17px;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3
}

body.lang-en .uc-title {
    font-family: var(--fEN-disp);
    font-weight: 600;
    font-size: 16px
}

.uc-desc {
    font-family: var(--fAR-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 2.0
}

body.lang-en .uc-desc {
    font-family: var(--fEN-body);
    font-size: 13.5px;
    line-height: 1.68
}

/* ── WHATSAPP SECTION ── */
.wa-section {
    padding: 92px 52px;
    background: var(--white);
    position: relative;
    overflow: hidden
}

.wa-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 100% 50%, rgba(37, 211, 102, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.wa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

body.lang-en .wa-layout {
    direction: ltr
}

.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 18px;
    font-family: var(--fAR-disp);
    font-size: 11.5px;
    font-weight: 700;
    color: #166534;
    letter-spacing: .04em;
}

body.lang-en .wa-badge {
    font-family: var(--fEN-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.wa-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    animation: blink 2s ease-in-out infinite
}

.wa-title {
    font-family: var(--fAR-disp);
    font-weight: 800;
    font-size: 40px;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 14px
}

body.lang-en .wa-title {
    font-family: var(--fEN-disp);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -.6px
}

.wa-desc {
    font-family: var(--fAR-body);
    font-size: 16px;
    color: var(--muted);
    line-height: 2.05;
    margin-bottom: 36px;
    max-width: 500px
}

body.lang-en .wa-desc {
    font-family: var(--fEN-body);
    font-size: 15.5px;
    line-height: 1.72
}

/* Feature grid */
.wa-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px
}

.wa-feat {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 18px;
    transition: box-shadow .2s, transform .2s;
}

.wa-feat:hover {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.1);
    transform: translateY(-2px)
}

.wa-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.wa-feat-icon svg {
    width: 18px;
    height: 18px;
    stroke: #16a34a;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.wa-feat-title {
    font-family: var(--fAR-disp);
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.3
}

body.lang-en .wa-feat-title {
    font-family: var(--fEN-disp);
    font-weight: 600;
    font-size: 13.5px
}

.wa-feat-desc {
    font-family: var(--fAR-body);
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.9
}

body.lang-en .wa-feat-desc {
    font-family: var(--fEN-body);
    font-size: 12px;
    line-height: 1.65
}

/* Integrations strip */
.wa-integrations {
    margin-bottom: 32px
}

.wa-int-label {
    font-family: var(--fAR-disp);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 14px;
    letter-spacing: .04em
}

body.lang-en .wa-int-label {
    font-family: var(--fEN-body);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.wa-int-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.wa-int-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: var(--fEN-body);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--black);
    transition: all .18s;
}

.wa-int-pill:hover {
    border-color: #22C55E;
    color: #16a34a;
    background: #f0fdf4
}

.wa-int-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0
}

/* Right panel — chat mockup */
.wa-panel {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.wa-panel-header {
    background: #075E54;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-avatar svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.wa-header-text {}

.wa-header-name {
    font-family: var(--fEN-disp);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px
}

.wa-header-status {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    font-family: var(--fEN-body)
}

.wa-chat-body {
    padding: 20px;
    background: #ECE5DD;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px
}

.wa-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.7;
    position: relative
}

.wa-bubble.bot {
    background: #fff;
    color: #111;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    font-family: var(--fAR-body);
    direction: rtl;
    text-align: right;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-bubble.user {
    background: #DCF8C6;
    color: #111;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    font-family: var(--fAR-body);
    direction: rtl;
    text-align: right;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-bubble-time {
    font-size: 10px;
    color: rgba(0, 0, 0, .38);
    margin-top: 5px;
    text-align: left;
    direction: ltr
}

.wa-qr-row {
    padding: 18px 22px;
    background: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px
}

.wa-qr-box {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--off-white);
}

.wa-qr-box svg {
    width: 36px;
    height: 36px
}

.wa-qr-text-en {
    font-family: var(--fAR-disp);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px
}

body.lang-en .wa-qr-text-en {
    font-family: var(--fEN-body);
    font-weight: 600;
    font-size: 12.5px
}

.wa-qr-text-sub {
    font-family: var(--fAR-body);
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.7
}

body.lang-en .wa-qr-text-sub {
    font-family: var(--fEN-body)
}

/* ── PHONE NUMBERS SECTION ── */
.numbers-section {
    padding: 92px 52px;
    background: var(--black);
    position: relative;
    overflow: hidden
}

.numbers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 100% 0%, rgba(224, 90, 43, .1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(224, 90, 43, .07) 0%, transparent 55%);
    pointer-events: none;
}

.numbers-inner {
    position: relative;
    z-index: 1
}

.numbers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

body.lang-en .numbers-layout {
    direction: ltr
}

.numbers-content .sec-tag {
    background: rgba(224, 90, 43, .18);
    color: var(--orange-mid)
}

.numbers-content .sec-title {
    color: #fff
}

.numbers-content .sec-sub {
    color: rgba(255, 255, 255, .6)
}

.num-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px
}

.num-type-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 24px 22px;
    transition: background .2s, border-color .2s;
}

.num-type-card:hover {
    background: rgba(224, 90, 43, .08);
    border-color: rgba(224, 90, 43, .25)
}

.num-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(224, 90, 43, .15);
    border: 1px solid rgba(224, 90, 43, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.num-type-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.num-type-title {
    font-family: var(--fAR-disp);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3
}

body.lang-en .num-type-title {
    font-family: var(--fEN-disp);
    font-weight: 600;
    font-size: 14px
}

.num-type-desc {
    font-family: var(--fAR-body);
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.9
}

body.lang-en .num-type-desc {
    font-family: var(--fEN-body);
    font-size: 12px;
    line-height: 1.65
}

/* Number display panel */
.numbers-panel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    padding: 32px;
}

.panel-title {
    font-family: var(--fAR-disp);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.lang-en .panel-title {
    font-family: var(--fEN-body);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 11px
}

.panel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    animation: blink 2s ease-in-out infinite
}

.num-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: background .18s;
}

.num-row:last-child {
    margin-bottom: 0
}

.num-row:hover {
    background: rgba(255, 255, 255, .07)
}

.num-row-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.num-flag {
    font-size: 20px;
    line-height: 1
}

.num-info {}

.num-country {
    font-family: var(--fAR-disp);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px
}

body.lang-en .num-country {
    font-family: var(--fEN-body);
    font-weight: 600
}

.num-number {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .5px
}

.num-type-badge {
    font-family: var(--fAR-body);
    font-size: 10.5px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
}

body.lang-en .num-type-badge {
    font-family: var(--fEN-body);
    font-size: 10px
}

.badge-fixed {
    background: rgba(59, 130, 246, .15);
    color: #93C5FD;
    border: 1px solid rgba(59, 130, 246, .2)
}

.badge-mobile {
    background: rgba(34, 197, 94, .12);
    color: #86EFAC;
    border: 1px solid rgba(34, 197, 94, .18)
}

.panel-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-footer-text {
    font-family: var(--fAR-body);
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.8
}

body.lang-en .panel-footer-text {
    font-family: var(--fEN-body)
}

.panel-cta {
    font-family: var(--fAR-disp);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity .18s;
    white-space: nowrap;
}

body.lang-en .panel-cta {
    font-family: var(--fEN-body);
    font-weight: 600;
    font-size: 12px
}

.panel-cta:hover {
    opacity: .75
}

/* Countries number strip */
.num-countries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.num-country-pill {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    transition: all .2s;
    cursor: default;
}

.num-country-pill:hover {
    background: rgba(224, 90, 43, .1);
    border-color: rgba(224, 90, 43, .3)
}

.ncp-flag {
    font-size: 22px;
    margin-bottom: 6px
}

.ncp-name {
    font-family: var(--fAR-body);
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7
}

body.lang-en .ncp-name {
    font-family: var(--fEN-body);
    font-size: 10.5px
}

.ncp-types {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 6px
}

.ncp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%
}

.ncp-dot.fixed {
    background: #60A5FA
}

.ncp-dot.mobile {
    background: #4ADE80
}

/* ── HOW IT WORKS ── */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 25px;
    inset-inline-start: 12.5%;
    inset-inline-end: 12.5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 0 20px
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
}

.step-title {
    font-family: var(--fAR-disp);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3
}

body.lang-en .step-title {
    font-family: var(--fEN-disp);
    font-weight: 600;
    font-size: 15px
}

.step-desc {
    font-family: var(--fAR-body);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.95
}

body.lang-en .step-desc {
    font-family: var(--fEN-body);
    font-size: 13px;
    line-height: 1.65
}

/* ── PRICING ── */
.pricing-wrap {
    max-width: 980px;
    margin: 0 auto
}

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

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 38px 34px;
    position: relative;
    transition: box-shadow .2s
}

.price-card:hover {
    box-shadow: 0 18px 52px rgba(0, 0, 0, .07)
}

.price-card.pop {
    border: 2px solid var(--orange);
    box-shadow: 0 8px 36px rgba(224, 90, 43, .13)
}

.pop-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    border-radius: 100px;
    padding: 4px 20px;
    font-family: var(--fAR-disp);
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}

body.lang-en .pop-badge {
    font-family: var(--fEN-body);
    font-size: 11px
}

.plan-name {
    font-family: var(--fAR-disp);
    font-weight: 800;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 4px
}

body.lang-en .plan-name {
    font-family: var(--fEN-disp);
    font-size: 19px
}

.plan-desc {
    font-family: var(--fAR-body);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
    line-height: 1.95
}

body.lang-en .plan-desc {
    font-family: var(--fEN-body);
    font-size: 12.5px;
    line-height: 1.6
}

.plan-price {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 5px
}

.plan-price sup {
    font-size: 22px;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block
}

.plan-period {
    font-family: var(--fAR-body);
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 26px;
    line-height: 1.8
}

body.lang-en .plan-period {
    font-family: var(--fEN-body)
}

.plan-div {
    height: 1px;
    background: var(--border);
    margin-bottom: 26px
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px
}

.plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: var(--fAR-body);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.9;
}

body.lang-en .plan-feats li {
    font-family: var(--fEN-body);
    font-size: 13px;
    line-height: 1.6
}

.fchk {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--orange-lt);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.fchk svg {
    width: 9px;
    height: 9px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 11px;
    font-family: var(--fAR-disp);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    border: none;
}

body.lang-en .plan-cta {
    font-family: var(--fEN-disp);
    font-size: 14px
}

.cta-brd {
    border: 1.5px solid var(--border-mid);
    color: var(--black);
    background: transparent
}

.cta-brd:hover {
    border-color: var(--orange);
    color: var(--orange)
}

.cta-fill {
    background: var(--orange);
    color: #fff
}

.cta-fill:hover {
    background: var(--orange-dark)
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px
}

.testi-stars {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 3px
}

.testi-quote {
    font-family: var(--fAR-body);
    font-size: 14.5px;
    color: var(--muted);
    line-height: 2.05;
    margin-bottom: 22px
}

body.lang-en .testi-quote {
    font-family: var(--fEN-body);
    font-size: 13.5px;
    line-height: 1.72
}

.testi-foot {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--border)
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-lt);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fAR-disp);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
}

body.lang-en .testi-av {
    font-family: 'Syne', sans-serif;
    font-size: 12px
}

.testi-name {
    font-family: var(--fAR-disp);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px
}

body.lang-en .testi-name {
    font-family: var(--fEN-body);
    font-weight: 600
}

.testi-role {
    font-family: var(--fAR-body);
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.8
}

body.lang-en .testi-role {
    font-family: var(--fEN-body);
    font-size: 11px
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--orange);
    padding: 92px 52px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 0% 50%, rgba(255, 255, 255, .06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 55% at 100% 10%, rgba(0, 0, 0, .07) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1
}

.cta-title {
    font-family: var(--fAR-disp);
    font-weight: 900;
    font-size: 48px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

body.lang-en .cta-title {
    font-family: var(--fEN-disp);
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -1px
}

.cta-sub {
    font-family: var(--fAR-body);
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    line-height: 2.0;
    margin-bottom: 36px
}

body.lang-en .cta-sub {
    font-family: var(--fEN-body);
    font-size: 15.5px;
    line-height: 1.7
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.btn-cta-w {
    background: #fff;
    color: var(--orange);
    border: none;
    border-radius: 11px;
    padding: 15px 34px;
    font-family: var(--fAR-disp);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity .2s;
}

body.lang-en .btn-cta-w {
    font-family: var(--fEN-disp);
    font-size: 14.5px
}

.btn-cta-w:hover {
    opacity: .9
}

.btn-cta-b {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
    border-radius: 11px;
    padding: 15px 34px;
    font-family: var(--fAR-disp);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s;
}

body.lang-en .btn-cta-b {
    font-family: var(--fEN-body)
}

.btn-cta-b:hover {
    border-color: rgba(255, 255, 255, .9)
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    padding: 68px 52px 32px
}

body.lang-en footer {
    direction: ltr
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px
}

.footer-desc {
    font-family: var(--fAR-body);
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    line-height: 2.05;
    margin-top: 18px;
    max-width: 290px
}

body.lang-en .footer-desc {
    font-family: var(--fEN-body);
    font-size: 13px;
    line-height: 1.7
}

.footer-col-h {
    font-family: var(--fAR-disp);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px
}

body.lang-en .footer-col-h {
    font-family: var(--fEN-body);
    font-weight: 600;
    font-size: 12.5px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.footer-links li a {
    font-family: var(--fAR-body);
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
    line-height: 1.85
}

body.lang-en .footer-links li a {
    font-family: var(--fEN-body);
    font-size: 12.5px
}

.footer-links li a:hover {
    color: var(--orange-mid)
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-copy {
    font-family: var(--fAR-body);
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.8
}

body.lang-en .footer-copy {
    font-family: var(--fEN-body)
}

.footer-flags {
    display: flex;
    gap: 10px;
    font-size: 18px
}