:root {
    --font-ui: 'Cairo', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bg: #faf7ff;
    --bg-soft: #f3edff;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-2: #ffffff;
    --surface-3: #f7f2ff;
    --text: #21192d;
    --muted: #756a86;
    --line: rgba(124, 58, 237, 0.12);
    --line-strong: rgba(124, 58, 237, 0.2);
    --primary: #7c3aed;
    --primary-2: #a855f7;
    --accent: #f59e0b;
    --accent-2: #fbbe45;
    --success: #1dbf73;
    --shadow: 0 22px 60px rgba(80, 48, 135, 0.14);
    --shadow-lg: 0 30px 80px rgba(67, 36, 117, 0.18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --radius-xl: 38px;
    --container: min(1180px, calc(100% - 32px));
    --header-height: 86px;
}

html[data-theme='dark'] {
    --bg: #0d0b12;
    --bg-soft: #171220;
    --surface: rgba(18, 15, 28, 0.88);
    --surface-2: #15111f;
    --surface-3: #110e19;
    --text: #f6f2ff;
    --muted: #b5a9c7;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(168, 85, 247, 0.26);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-ui);
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.10), transparent 24%),
        var(--bg);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    transition: background-color .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .15s; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border-bottom: 1px solid transparent;
    transition: all .25s ease;
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 12px 36px rgba(24, 15, 36, 0.08);
}
.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.brand-logo-wrap {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.46));
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(110, 76, 174, 0.12);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}
.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.brand-mark-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}
.brand-mark-fallback span { color: #ffe7b0; }
.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-copy strong {
    font-size: 1.3rem;
    letter-spacing: .02em;
    line-height: 1.1;
}
.brand-copy small {
    color: var(--muted);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-family: 'Inter', var(--font-ui);
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 80%, transparent);
    border-radius: 999px;
}
.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    transition: all .2s ease;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: color-mix(in srgb, var(--primary) 12%, white);
}
html[data-theme='dark'] .nav-link:hover,
html[data-theme='dark'] .nav-link.active {
    background: color-mix(in srgb, var(--primary) 18%, transparent);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    background: color-mix(in srgb, var(--surface-2) 90%, transparent);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
}
.lang-pill {
    min-width: 40px;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    color: var(--muted);
    text-align: center;
    font-family: 'Inter', var(--font-ui);
}
.lang-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}
.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 90%, transparent);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.theme-toggle { position: relative; }
.theme-toggle i { position: absolute; transition: opacity .2s ease, transform .2s ease; }
html[data-theme='light'] .sun-icon,
html[data-theme='dark'] .moon-icon { opacity: 0; transform: scale(.7) rotate(90deg); }
html[data-theme='light'] .moon-icon,
html[data-theme='dark'] .sun-icon { opacity: 1; transform: scale(1) rotate(0); }
.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 16px 28px rgba(124, 58, 237, 0.24);
}
.btn-secondary {
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 92%, transparent);
    color: var(--text);
}
.btn-light {
    background: #fff;
    color: #22152d;
}
.btn-lg { padding: 16px 26px; font-size: 1rem; }
.menu-toggle {
    display: none;
    position: relative;
    overflow: hidden;
}
.menu-toggle .menu-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    transition: opacity .22s ease, transform .22s ease;
}
.menu-toggle .menu-icon-bars { opacity: 1; transform: scale(1) rotate(0); }
.menu-toggle .menu-icon-close { opacity: 0; transform: scale(.7) rotate(-90deg); }
.menu-toggle.is-open .menu-icon-bars { opacity: 0; transform: scale(.7) rotate(90deg); }
.menu-toggle.is-open .menu-icon-close { opacity: 1; transform: scale(1) rotate(0); }
.mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-10px);
    border-top: 1px solid transparent;
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 60px rgba(42, 24, 70, 0.18);
    transition: max-height .32s ease, opacity .22s ease, transform .22s ease, visibility .22s ease, border-color .22s ease;
}
.mobile-panel.open {
    max-height: calc(100vh - var(--header-height));
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    border-top-color: var(--line);
}
.mobile-links {
    display: grid;
    gap: 10px;
    padding: 18px 0 24px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 16px;
    color: var(--text);
    background: color-mix(in srgb, var(--surface-2) 72%, transparent);
    border: 1px solid var(--line);
    font-weight: 700;
}
.mobile-links a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.mobile-whatsapp { margin-top: 4px; color: #fff !important; }

.hero {
    overflow: hidden;
    padding-top: 72px;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}
.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.hero-orb,
.hero-grid,
.ai-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-orb {
    filter: blur(70px);
    opacity: .7;
}
.hero-orb-one {
    width: 360px;
    height: 360px;
    background: rgba(124, 58, 237, .18);
    border-radius: 50%;
    top: -70px;
    right: 6%;
}
.hero-orb-two {
    width: 330px;
    height: 330px;
    background: rgba(245, 158, 11, .15);
    border-radius: 50%;
    bottom: -70px;
    left: 8%;
}
.hero-grid {
    background-image:
        linear-gradient(to right, rgba(124, 58, 237, .08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(124, 58, 237, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.9) 20%, rgba(0,0,0,.9) 80%, transparent);
}
.ai-background { opacity: .82; }
.ai-node,
.ai-link {
    position: absolute;
    display: block;
}
.ai-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.08), 0 0 30px rgba(124, 58, 237, 0.4);
}
.node-a { top: 18%; right: 16%; }
.node-b { top: 35%; right: 30%; }
.node-c { bottom: 18%; left: 16%; }
.node-d { top: 60%; left: 28%; }
.ai-link {
    height: 2px;
    background: linear-gradient(90deg, rgba(124,58,237,.0), rgba(124,58,237,.5), rgba(245,158,11,.4), rgba(124,58,237,0));
    transform-origin: right center;
}
.link-a { width: 220px; top: 22%; right: 18%; transform: rotate(18deg); }
.link-b { width: 240px; top: 41%; right: 28%; transform: rotate(-28deg); }
.link-c { width: 260px; top: 64%; left: 20%; transform: rotate(-12deg); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 84%, transparent);
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 20px;
}
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(29, 191, 115, 0.14);
}
.hero-content h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -.03em;
}
.hero-text {
    margin: 22px 0 0;
    max-width: 760px;
    font-size: 1.13rem;
    color: var(--muted);
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    flex-shrink: 0;
}
.trust-item small { display: block; color: var(--muted); font-size: .82rem; }
.trust-item strong { font-size: 1rem; }
.hero-visual { position: relative; }
.visual-shell {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.60));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}
html[data-theme='dark'] .visual-shell {
    background: linear-gradient(180deg, rgba(21,17,31,.95), rgba(13,11,18,.92));
}
.ai-shell::after {
    content: '';
    position: absolute;
    inset: auto -20% -28% auto;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168,85,247,.24), transparent 70%);
    filter: blur(10px);
}
.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 65%, transparent);
    font-family: 'Inter', var(--font-ui);
    font-size: .9rem;
}
.window-dots { display: flex; gap: 8px; }
.window-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
}
.window-dots span:first-child { background: #ff7a7a; }
.window-dots span:nth-child(2) { background: #ffc45e; }
.window-dots span:last-child { background: #43d17d; }
.window-title { color: var(--muted); display: inline-flex; gap: 8px; align-items: center; }
.visual-body { padding: 26px; }
.visual-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.visual-head small { color: var(--muted); display: block; margin-bottom: 4px; }
.visual-head h3 { margin: 0; font-size: 1.4rem; line-height: 1.35; }
.live-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    color: var(--success);
    background: rgba(29, 191, 115, 0.1);
    border: 1px solid rgba(29, 191, 115, 0.18);
}
.live-badge i { font-size: .55rem; }
.service-stack { display: grid; gap: 14px; }
.mini-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 92%, transparent);
}
.active-card {
    border-color: rgba(124, 58, 237, .35);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.14);
}
.mini-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 1.2rem;
}
.mini-card strong { display: block; font-size: 1.02rem; }
.mini-card small { color: var(--muted); }
.mini-card > i { color: var(--muted); }
.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.visual-stats div {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 84%, transparent);
}
.visual-stats i { display: block; color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }
.visual-stats strong { display: block; font-size: .95rem; }
.visual-stats small { color: var(--muted); }
.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-weight: 700;
}
.floating-chip i { color: var(--primary); }
.chip-one { top: 6%; left: -4%; }
.chip-two { bottom: 8%; right: -5%; }

.quick-strip { padding: 0 0 36px; position: relative; z-index: 2; }
.strip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.strip-grid > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 74px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    box-shadow: var(--shadow);
    font-weight: 800;
    text-align: center;
}
.strip-grid i { color: var(--primary); font-size: 1.12rem; }

.section-heading {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 52px;
}
.section-kicker {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
    font-weight: 800;
    margin-bottom: 16px;
}
.section-heading h2,
.about-content h2,
.faq-intro h2,
.cta-content h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.18;
}
.section-heading p,
.about-content p,
.faq-intro p,
.cta-content p,
.footer-brand p {
    color: var(--muted);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.service-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: .65;
}
.service-card.featured {
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.18);
    transform: translateY(-6px);
}
.popular-label {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}
.service-number {
    font-size: .92rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.55);
    font-family: 'Inter', var(--font-ui);
    margin-bottom: 8px;
}
.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 1.38rem;
    margin-bottom: 18px;
    box-shadow: 0 18px 32px rgba(124, 58, 237, 0.22);
}
.service-card h3,
.process-card h3,
.faq-item button span { margin: 0 0 10px; font-size: 1.2rem; }
.service-card p { margin: 0 0 16px; color: var(--muted); }
.service-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
}
.service-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
}
.about-layout,
.faq-layout {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 34px;
    align-items: start;
}
.about-points { display: grid; gap: 16px; margin-top: 26px; }
.about-points > div,
.process-card,
.faq-item,
.cta-card,
.about-panel {
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    box-shadow: var(--shadow);
}
.about-points > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
}
.about-points > div > span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.about-points strong { display: block; margin-bottom: 4px; font-size: 1.02rem; }
.about-points p { margin: 0; }
.about-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 28px;
}
.panel-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.18), transparent 70%);
    top: -70px;
    inset-inline-end: -70px;
    filter: blur(8px);
}
.panel-title,
.panel-note {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.panel-title { font-weight: 800; margin-bottom: 24px; font-size: 1.1rem; }
.panel-title i,
.panel-note i { color: var(--primary); }
.quality-list { position: relative; display: grid; gap: 14px; }
.quality-list > div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-3) 92%, transparent);
}
.quality-list span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
}
.quality-list small { color: var(--muted); }
.quality-list i { color: var(--success); }
.panel-note {
    margin-top: 18px;
    justify-content: flex-start;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-3) 92%, transparent);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.process-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 26px;
}
.process-card > span {
    font-family: 'Inter', var(--font-ui);
    font-weight: 900;
    color: rgba(124, 58, 237, 0.5);
}
.process-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 18px 0 16px;
    font-size: 1.25rem;
}
.process-card p { margin: 0; color: var(--muted); }
.faq-list { display: grid; gap: 14px; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
}
.faq-item { border-radius: 22px; overflow: hidden; }
.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 22px;
    text-align: inherit;
    cursor: pointer;
    color: var(--text);
}
.faq-item button i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.08);
    color: var(--primary);
    transition: transform .2s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}
.faq-answer p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 160px; }
.faq-item.open button i { transform: rotate(45deg); }
.cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr auto;
    gap: 26px;
    padding: 34px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 24%),
        linear-gradient(135deg, var(--primary), #5e27cf 55%, var(--accent));
    color: #fff;
    border-color: transparent;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(to right, rgba(255,255,255,.6) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.6) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,.8), transparent 90%);
}
.cta-content,
.cta-actions { position: relative; z-index: 1; }
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 800;
    margin-bottom: 18px;
}
.cta-content p { color: rgba(255,255,255,.88); margin-bottom: 0; }
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: stretch;
}
.phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 800;
}
.site-footer {
    padding: 90px 0 32px;
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-3) 80%, transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr .9fr;
    gap: 24px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand-logo { background: #fff; }
.footer-brand p { margin-top: 0; max-width: 360px; }
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--primary);
}
.footer-col h3 {
    margin: 8px 0 16px;
    font-size: 1.06rem;
}
.footer-col a,
.footer-col p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 11px;
    color: var(--muted);
}
.footer-col a:hover { color: var(--text); }
.footer-col i { color: var(--primary); width: 18px; text-align: center; }
.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    flex-wrap: wrap;
}
.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 950;
    border: 0;
    cursor: pointer;
}
.floating-whatsapp {
    inset-inline-end: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #18b957);
    color: #fff;
    box-shadow: 0 20px 36px rgba(37, 211, 102, 0.28);
}
.wa-tooltip {
    position: absolute;
    inset-inline-end: calc(100% + 12px);
    white-space: nowrap;
    padding: 9px 12px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: .88rem;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all .2s ease;
}
.floating-whatsapp:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.back-to-top {
    inset-inline-start: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--surface-2) 94%, transparent);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

html[dir='ltr'] body,
html[dir='ltr'] .brand-copy small,
html[dir='ltr'] .window-bar,
html[dir='ltr'] .lang-pill,
html[dir='ltr'] .service-number,
html[dir='ltr'] .process-card > span { font-family: 'Inter', 'Cairo', sans-serif; }
html[dir='ltr'] .nav-wrap,
html[dir='ltr'] .hero-actions,
html[dir='ltr'] .about-points > div,
html[dir='ltr'] .quality-list > div,
html[dir='ltr'] .footer-col p,
html[dir='ltr'] .footer-col a,
html[dir='ltr'] .panel-note,
html[dir='ltr'] .mobile-links a,
html[dir='ltr'] .service-card li { direction: ltr; }

@media (max-width: 1100px) {
    .hero-layout,
    .about-layout,
    .faq-layout,
    .cta-card,
    .footer-grid,
    .services-grid,
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr; }
    .cta-card { grid-template-columns: 1fr; }
    .strip-grid { grid-template-columns: repeat(3, 1fr); }
    .chip-one { left: 2%; }
    .chip-two { right: 2%; }
}

@media (max-width: 900px) {
    .desktop-nav,
    .nav-cta { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero { padding-top: 42px; }
    .hero-layout,
    .about-layout,
    .faq-layout,
    .services-grid,
    .process-grid,
    .footer-grid,
    .strip-grid,
    .trust-row,
    .visual-stats { grid-template-columns: 1fr; }
    .section { padding: 92px 0; }
    .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.6rem); }
    .hero-text { font-size: 1rem; }
    .floating-chip {
        position: static;
        margin-top: 12px;
    }
    .hero-visual { display: grid; gap: 12px; }
    .visual-head { flex-direction: column; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 620px) {
    :root { --container: min(100% - 24px, 100% - 24px); }
    .nav-wrap { gap: 12px; min-height: 78px; }
    .brand-copy strong { font-size: 1.08rem; }
    .brand-copy small { font-size: .68rem; letter-spacing: .12em; }
    .brand-logo-wrap { width: 56px; height: 56px; border-radius: 18px; }
    .lang-toggle { padding: 4px; }
    .lang-pill { min-width: 34px; padding: 7px 8px; font-size: .72rem; }
    .icon-btn { width: 44px; height: 44px; border-radius: 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-lg, .btn { width: 100%; }
    .eyebrow { font-size: .88rem; }
    .window-bar { padding: 13px 14px; }
    .visual-body, .service-card, .about-panel, .process-card, .cta-card { padding: 22px; }
    .service-card.featured { transform: none; }
    .faq-item button { padding: 18px 18px; }
    .faq-answer p { padding-inline: 18px; }
    .site-footer { padding-top: 72px; }
    .wa-tooltip { display: none; }
    .floating-whatsapp { width: 56px; height: 56px; border-radius: 18px; }
    .back-to-top { width: 50px; height: 50px; border-radius: 16px; }
}
