/* ============================================================
   Smart Code — Unified Design System v2
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue: #da7b9e;
    --blue-light: #e6a5bd;
    --purple: #7c3aed;
    --cyan: #06b6d4;
    --dark: #0a0f1e;
    --dark-2: #131a2e;
    --dark-3: #1c2540;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-muted: #f1f5f9;
    --gradient: linear-gradient(135deg, #da7b9e 50%, #fb9dbf 100%);
    --gradient-soft: linear-gradient(135deg, rgba(0,85,255,.08), rgba(124,58,237,.08));
    --shadow: 0 4px 24px rgba(0,0,0,.06);
    --shadow-sm: 0 2px 12px rgba(0,0,0,.05);
    --shadow-lg: 0 24px 64px rgba(0,85,255,.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 999px;
    --header-h: 76px;
    --font-ar: 'Noto Kufi Arabic', sans-serif;
    --font-en: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);
    /* Legacy aliases for inner pages & chat */
    --primary-color: #0055ff;
    --secondary-color: #1e40af;
    --accent-color: #3d7dff;
    --chat-bg: #ffffff;
    --user-message-bg: #ed6b9a;
    --bot-message-bg: linear-gradient(135deg, #7c3aed, #a855f7);
    --text-color: #334155;
    --text-white: #ffffff;
    --gray-color: #64748b;
    --card-color: #ffffff;
    --muted-text: #94a3b8;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body.lang-en { font-family: var(--font-en); }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1,h2,h3,h4 { color: var(--dark); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .925rem;
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 24px rgb(219 124 159);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgb(238 144 178)
    color: #fff;
}

.btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

.btn-block { width: 100%; }

.btn-login {
    background: var(--gradient);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,85,255,.35); color: #fff; }

/* ── Section shared ── */
.sc-section { padding: 96px 0; }
.sc-section-alt { background: var(--bg-soft); }

.sc-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-soft);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(0,85,255,.12);
}

.sc-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sc-head p { color: var(--text-light); font-size: 1.05rem; margin-top: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: all .3s var(--ease);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: all .3s var(--ease);
}

.site-header.scrolled::before {
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
}

.header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo .logo-img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(0,85,255,.07); }
.nav-link i.fa-chevron-down { font-size: .6rem; transition: transform .3s; }

.nav-dropdown { position: relative; }
.nav-dropdown.open .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    min-width: 230px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .25s var(--ease);
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    transition: all .2s;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--blue); }
.nav-dropdown-menu a i { color: var(--blue); width: 18px; }

.nav-item-login { margin-inline-start: 4px; }
.nav-item-login .nav-login-link { white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-switcher {
    display: flex;
    background: var(--bg-muted);
    border-radius: var(--radius-full);
    padding: 3px;
}

.lang-btn {
    padding: 6px 13px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 800;
    color: var(--text-light);
    transition: all .2s;
}
.lang-btn.active { background: #fff; color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,.08); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HOME HERO — full-bleed background, contained content
   ============================================================ */
.sc-hero {
    --hero-pad-x: clamp(1rem, 4vw, 1.5rem);
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: var(--dark);
    background-image:
        radial-gradient(ellipse 120% 85% at 0% -15%, rgba(0, 85, 255, 0.42), transparent 58%),
        radial-gradient(ellipse 95% 75% at 100% 105%, rgba(124, 58, 237, 0.32), transparent 52%),
        radial-gradient(ellipse 55% 45% at 55% 45%, rgba(6, 182, 212, 0.1), transparent 70%);
}

.hero-shell {
    width: 100%;
    max-width: 75rem;
    margin-inline: auto;
    padding:
        calc(var(--header-h) + clamp(1.75rem, 5vw, 3rem))
        var(--hero-pad-x)
        clamp(2.5rem, 6vw, 4.5rem);
    box-sizing: border-box;
}

.hero-layout {
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.hero-copy { min-width: 0; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 1.125rem;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.hero-title {
    color: #fff;
    font-size: clamp(2rem, 6.5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.875rem;
}

.hero-lead {
    font-size: clamp(1rem, 2.4vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 1.625rem;
    max-width: 26rem;
    text-decoration: none;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sc-hero .btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.sc-hero .btn-ghost:hover {
    color: var(--blue);
    background: #fff;
    border-color: #fff;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin: 2rem 0 0;
    padding-top: 1.625rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric dt {
    font-size: clamp(1.4rem, 3.5vw, 1.65rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.hero-metric dd {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* Decorative orbit — icons only, no text */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: visible;
}

.hero-orbit {
    position: relative;
    width: 300px;
    height: 300px;
    margin-inline: auto;
    overflow: visible;
}

.hero-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 0 48px rgba(0, 85, 255, 0.35);
    z-index: 2;
}

.hero-orbit-item {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    z-index: 1;
    animation: heroOrbitFloat 5s ease-in-out infinite;
}

.hero-orbit-item--1 { top: 0; left: 50%; margin-left: -26px; animation-delay: 0s; }
.hero-orbit-item--2 { top: 50%; right: 0; margin-top: -26px; animation-delay: -1.2s; }
.hero-orbit-item--3 { bottom: 0; left: 50%; margin-left: -26px; animation-delay: -2.4s; }
.hero-orbit-item--4 { top: 50%; left: 0; margin-top: -26px; animation-delay: -3.6s; }

@keyframes heroOrbitFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (min-width: 900px) {
    .hero-layout {
        grid-template-columns: 1.05fr 0.9fr;
        gap: 3rem;
    }

    .hero-orbit {
        width: 320px;
        height: 320px;
    }

    .hero-orbit-core {
        width: 96px;
        height: 96px;
        font-size: 1.75rem;
    }

    .hero-orbit-item {
        width: 58px;
        height: 58px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .hero-orbit-item--1 { margin-left: -29px; }
    .hero-orbit-item--2 { margin-top: -29px; }
    .hero-orbit-item--3 { margin-left: -29px; }
    .hero-orbit-item--4 { margin-top: -29px; }
}

@media (max-width: 899px) {
    .hero-visual {
        width: 100%;
        min-height: 260px;
        padding-bottom: 0.5rem;
    }

    .hero-orbit {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        place-items: center;
        width: min(100%, 268px);
        height: 268px;
    }

    .hero-orbit-core {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        grid-column: 2;
        grid-row: 2;
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .hero-orbit-item {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 0;
        animation: none;
    }

    .hero-orbit-item--1 { grid-column: 2; grid-row: 1; }
    .hero-orbit-item--2 { grid-column: 3; grid-row: 2; }
    .hero-orbit-item--3 { grid-column: 2; grid-row: 3; }
    .hero-orbit-item--4 { grid-column: 1; grid-row: 2; }
}

@media (max-width: 480px) {
    .hero-cta .btn {
        flex: 1 1 calc(50% - 0.375rem);
        justify-content: center;
        min-width: 0;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hero-metric dd { font-size: 0.7rem; }
}

/* Marquee */
.sc-marquee {
    background: var(--dark-2);
    border-block: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    overflow: hidden;
}

.sc-marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.sc-marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.45);
    font-size: .875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.sc-marquee-item i { color: var(--blue-light); }

/* ============================================================
   SERVICES — Bento Grid
   ============================================================ */
.sc-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.sc-bento-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.sc-bento-card::after {
    content: '';
    position: absolute;
    inset-inline-start: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform .3s;
}

.sc-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.sc-bento-card:hover::after { transform: scaleY(1); }

.sc-bento-card.col-6 { grid-column: span 6; }
.sc-bento-card.col-4 { grid-column: span 4; }
.sc-bento-card.col-8 { grid-column: span 8; }

.sc-bento-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.sc-bento-icon.c-blue { background: linear-gradient(135deg, #0055ff, #3d7dff); }
.sc-bento-icon.c-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.sc-bento-icon.c-cyan { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.sc-bento-icon.c-pink { background: linear-gradient(135deg, #db2777, #ec4899); }

.sc-bento-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.sc-bento-card p { color: var(--text-light); font-size: .9rem; margin-bottom: 20px; line-height: 1.7; }

.sc-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 700;
    font-size: .875rem;
    transition: gap .2s;
}
.sc-bento-link:hover { gap: 10px; }
body[dir="rtl"] .sc-bento-link i { transform: scaleX(-1); }

.sc-bento-badge {
    display: inline-block;
    background: linear-gradient(135deg, #db2777, #ec4899);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.sc-bento-featured {
    background: linear-gradient(135deg, rgba(219,39,119,.04), rgba(236,72,153,.06));
    border-color: rgba(219,39,119,.2);
}

.sc-bento-featured::after {
    background: linear-gradient(135deg, #db2777, #ec4899);
}

/* ============================================================
   PROCESS
   ============================================================ */
.sc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.sc-process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    inset-inline: 12%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.sc-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sc-step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--blue);
    margin: 0 auto 20px;
    transition: all .3s;
    box-shadow: var(--shadow);
}

.sc-step:hover .sc-step-num {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.08);
}

.sc-step h4 { margin-bottom: 8px; font-size: 1rem; }
.sc-step p { color: var(--text-light); font-size: .875rem; line-height: 1.6; }

/* ============================================================
   OUR WORK — what we do (no project images)
   ============================================================ */
.sc-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sc-work-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all .3s var(--ease);
}

.sc-work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.sc-work-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 28px;
    row-gap: 8px;
    background: linear-gradient(135deg, rgba(219,39,119,.04), rgba(236,72,153,.07));
    border-color: rgba(219,39,119,.18);
}

.sc-work-featured .sc-work-icon { grid-row: 1 / 3; align-self: start; margin-bottom: 0; }
.sc-work-featured h3 { grid-column: 2; align-self: end; margin-bottom: 0; }
.sc-work-featured > p { grid-column: 2; margin-bottom: 0; }
.sc-work-featured .sc-work-list {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(219,39,119,.12);
}

.sc-work-featured .sc-work-list li { margin-bottom: 0; }

.sc-work-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #db2777, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.sc-work-icon.c-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.sc-work-icon.c-blue { background: linear-gradient(135deg, #0055ff, #3d7dff); }
.sc-work-icon.c-cyan { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.sc-work-icon.c-orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.sc-work-icon.c-violet { background: linear-gradient(135deg, #6366f1, #8b5cf6); }

.sc-work-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.sc-work-card > p { color: var(--text-light); font-size: .9rem; margin-bottom: 16px; line-height: 1.7; }

.sc-work-list {
    list-style: none;
}

.sc-work-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 500;
}

.sc-work-list li i {
    color: var(--blue);
    font-size: .75rem;
    flex-shrink: 0;
}

.sc-work-featured .sc-work-list li i { color: #db2777; }

@media (max-width: 1024px) {
    .sc-work-grid { grid-template-columns: 1fr 1fr; }
    .sc-work-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
    .sc-work-grid { grid-template-columns: 1fr; }
    .sc-work-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .sc-work-featured .sc-work-icon { grid-row: auto; margin-bottom: 16px; }
    .sc-work-featured h3,
    .sc-work-featured > p { grid-column: 1; }
    .sc-work-featured .sc-work-list { flex-direction: column; gap: 8px; }
}

/* ============================================================
   FLAGSHIP APPS — 4-card grid
   ============================================================ */
.sc-flagship {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.sc-flagship-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.sc-flagship-head h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 10px;
}

.sc-flagship-head p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
}

.sc-flagship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sc-app-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: inherit;
    transition: box-shadow .25s, border-color .25s;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.sc-app-card:hover {
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--app-accent, var(--blue)) 20%, transparent);
}

.sc-app-logo-wrap {
    flex-shrink: 0;
    width: 100%;
    height: 120px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--app-accent, var(--blue)) 8%, #fff);
    border: 1px solid color-mix(in srgb, var(--app-accent, var(--blue)) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 14px;
}

.sc-app-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sc-app-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--app-accent, var(--blue));
}

.sc-app-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-app-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.sc-app-name {
    font-size: 1.1rem;
    margin: 0 0 2px;
    line-height: 1.3;
}

.sc-app-domain {
    font-size: .8rem;
    font-weight: 600;
    color: var(--app-accent, var(--blue));
    margin: 0;
}

.sc-app-badge {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
    background: color-mix(in srgb, var(--app-accent, var(--blue)) 12%, #fff);
    color: var(--app-accent, var(--blue));
}

.sc-app-desc {
    font-size: .86rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.sc-app-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: .82rem;
    font-weight: 700;
    color: var(--app-accent, var(--blue));
    margin-top: auto;
    padding-top: 4px;
    text-decoration: none;
    transition: gap .2s, opacity .2s;
}

.sc-app-link:hover {
    gap: 9px;
    opacity: 0.85;
}

.sc-app-link i { font-size: .72rem; }

@media (max-width: 768px) {
    .sc-flagship-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .sc-flagship { margin-top: 48px; padding-top: 32px; }
    .sc-app-card { padding: 20px; gap: 14px; }
    .sc-app-logo-wrap { height: 108px; padding: 12px; border-radius: 14px; }
}

/* ============================================================
   WHY US
   ============================================================ */
.sc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sc-why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all .3s;
}

.sc-why-card:hover { box-shadow: var(--shadow); border-color: rgba(0,85,255,.2); transform: translateY(-3px); }

.sc-why-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.sc-why-card h4 { margin-bottom: 8px; }
.sc-why-card p { color: var(--text-light); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sc-review {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sc-review:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.sc-stars { color: #f59e0b; font-size: .85rem; display: flex; gap: 3px; }

.sc-review blockquote {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}

.sc-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.sc-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.sc-reviewer strong { display: block; font-size: .9rem; color: var(--dark); }
.sc-reviewer span { font-size: .78rem; color: var(--text-light); }

/* ============================================================
   CTA
   ============================================================ */
.sc-cta {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.sc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,85,255,.25), transparent 70%);
}

.sc-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.sc-cta h2 { color: #fff; margin-bottom: 16px; }
.sc-cta p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 32px; }

/* ============================================================
   CONTACT
   ============================================================ */
.sc-contact {
    padding: 96px 0;
    background: var(--bg-soft);
}

.sc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

.sc-contact-info { display: flex; flex-direction: column; gap: 16px; }

.sc-contact-fast {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 640px;
    margin: 16px auto 0;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: rgba(0,85,255,.08);
    border: 1px solid rgba(0,85,255,.15);
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.6;
    text-align: start;
}

.sc-contact-fast i { color: var(--blue); flex-shrink: 0; }

.sc-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all .3s;
}

.sc-info-card:hover { box-shadow: var(--shadow); border-color: rgba(0,85,255,.2); }

.sc-info-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sc-info-card h4 { font-size: .8rem; color: var(--text-light); font-weight: 600; margin-bottom: 3px; }
.sc-info-card p, .sc-info-card a { font-size: .95rem; font-weight: 700; color: var(--dark); margin: 0; }
.sc-info-card a:hover { color: var(--blue); }

.sc-form-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.sc-form-box .form-group { margin-bottom: 16px; }

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.sc-form-box input,
.sc-form-box select,
.sc-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .925rem;
    color: var(--dark);
    background: var(--bg-soft);
    transition: all .2s;
}

.sc-form-box input:focus,
.sc-form-box select:focus,
.sc-form-box textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,85,255,.08);
}

.sc-form-box textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.6);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand-name { color: #fff; font-weight: 800; font-size: 1rem; margin: 12px 0 4px; }
.footer-brand-en { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.footer-logo-img { height: 44px; filter: brightness(0) invert(1); opacity: .85; }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: all .2s;
}
.social-links a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

.footer-col h3 { color: #fff; font-size: .95rem; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: all .2s; }
.footer-col ul li a:hover { color: #fff; padding-inline-start: 4px; }

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .875rem;
}
.footer-contact-list i { color: var(--blue-light); width: 16px; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: #fff; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }

.footer-fast-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    background: rgba(0,85,255,.12);
    border: 1px solid rgba(96,165,250,.2);
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    text-align: center;
}

.footer-fast-note i { color: #60a5fa; }

/* WhatsApp float */
.sc-wa-float {
    position: fixed;
    bottom: 28px;
    inset-inline-end: 28px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    transition: all .3s;
}
.sc-wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 12px 32px rgba(37,211,102,.5); }

/* Scroll to top — opposite side of WhatsApp */
.sc-scroll-top {
    position: fixed;
    bottom: 28px;
    inset-inline-start: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #da7b9e;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease), background .3s, box-shadow .3s;
}
.sc-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sc-scroll-top:hover {
    background: var(--blue);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,85,255,.35);
}

/* ============================================================
   INNER PAGE HERO (service pages, about, contact)
   ============================================================ */
.page-hero {
    background: var(--dark);
    padding: calc(var(--header-h) + 64px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,85,255,.2), transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto 28px; }
.page-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.page-hero .sc-label {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.15);
}

.page-web-design .page-hero { background: linear-gradient(160deg, #0a1628, #0d3b2e); }
.page-custom-development .page-hero { background: linear-gradient(160deg, #0a1628, #3b2a0d); }
.page-mobile-apps .page-hero { background: linear-gradient(160deg, #0a1628, #3b0d2a); }
.page-ai-chatbot .page-hero { background: linear-gradient(160deg, #0a1628, #1a0d3b); }
.page-about-us .page-hero { background: linear-gradient(160deg, #0a1628, #0d3b1a); }
.page-contact-us .page-hero { background: linear-gradient(160deg, #0a1628, #0d1a3b); }

/* ============================================================
   INNER PAGE CONTENT (service pages compatibility)
   ============================================================ */
.page-inner { padding: 0; }

.page-inner .services,
.page-inner .process,
.page-inner .tech-section,
.page-inner .pricing,
.page-inner .faq,
.page-inner .demo-chat,
.page-inner .ai-solutions { padding: 80px 0; }

.page-inner .section-header { text-align: center; margin-bottom: 48px; }
.page-inner .section-header h2 { font-size: 2rem; margin-bottom: 12px; }
.page-inner .section-header p { color: var(--text-light); font-size: 1.05rem; }

.page-inner .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.page-inner .service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all .3s;
}
.page-inner .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.page-inner .service-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: #fff;
}

.page-inner .icon1, .page-inner .icon2 { background: linear-gradient(135deg, #0055ff, #3d7dff); }
.page-inner .icon3 { background: linear-gradient(135deg, #d97706, #f59e0b); }
.page-inner .icon4 { background: linear-gradient(135deg, #db2777, #ec4899); }
.page-inner .icon5 { background: linear-gradient(135deg, #7c3aed, #a855f7); }

.page-inner .process { color: #fff; }
.page-inner .process1 { background: linear-gradient(135deg, #0055ff, #06b6d4); }
.page-inner .process2 { background: linear-gradient(135deg, #d97706, #f59e0b); }
.page-inner .process3 { background: linear-gradient(135deg, #db2777, #ec4899); }

.page-inner .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.page-inner .process-step {
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(8px);
}

.page-inner .step-number {
    font-size: 2rem;
    font-weight: 900;
    opacity: .4;
    margin-bottom: 12px;
}

.page-inner .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.page-inner .tech-category {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.page-inner .tech-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.page-inner .tech-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px; background: var(--bg-soft); border-radius: 8px;
    font-size: .875rem; font-weight: 600;
}
.page-inner .tech-item i { color: var(--blue); }

.page-inner .faq-list { max-width: 800px; margin: 0 auto; }
.page-inner .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}
.page-inner .faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}
.page-inner .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s; }
.page-inner .faq-item.active .faq-answer { max-height: 300px; }
.page-inner .faq-answer p { padding: 0 24px 20px; color: var(--text-light); }

.page-inner .packages-grid,
.page-inner .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.page-inner .package-card,
.page-inner .pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s;
}
.page-inner .package-card:hover,
.page-inner .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.page-inner .package-card.featured,
.page-inner .pricing-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); }

/* About page — unified sc-* layout */
.sc-about-story {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.sc-about-story-copy h2 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    margin: 12px 0 20px;
    line-height: 1.25;
}

.sc-about-story-copy p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: .98rem;
}

.sc-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.sc-about-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 14px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.sc-about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0,85,255,.2);
}

.sc-about-stat strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.sc-about-stat span {
    font-size: .75rem;
    color: var(--text-light);
    font-weight: 600;
}

.sc-about-logo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.sc-about-logo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sc-about-logo-wrap img {
    max-width: 100%;
    height: auto;
}

.sc-about-since {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0,85,255,.08);
    color: var(--blue);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.sc-about-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: start;
}

.sc-about-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    font-size: .88rem;
    color: var(--text);
    font-weight: 600;
}

.sc-about-highlights li i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .85rem;
}

#about-pillars .sc-work-grid {
    grid-template-columns: repeat(3, 1fr);
}

#about-values .sc-work-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .sc-about-story { grid-template-columns: 1fr; }
    .sc-about-stats { grid-template-columns: repeat(2, 1fr); }
    #about-pillars .sc-work-grid { grid-template-columns: 1fr; }
    #about-values .sc-work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .sc-about-stats { grid-template-columns: 1fr 1fr; }
    #about-values .sc-work-grid { grid-template-columns: 1fr; }
}

/* Legacy about styles (kept for compatibility) */
.about-content-section { padding: 80px 0; background: var(--bg-soft); }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-image .image-placeholder img { max-width: 320px; margin: 0 auto; }

.about-cards { padding: 80px 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all .3s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card .card-icon {
    width: 64px; height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: #fff; font-size: 1.4rem;
}

.values-section { padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.value-icon {
    width: 56px; height: 56px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--blue); font-size: 1.2rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
body[dir="rtl"] .sc-marquee-track { animation-direction: reverse; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sc-bento-card.col-6, .sc-bento-card.col-4, .sc-bento-card.col-8 { grid-column: span 6; }
    .sc-process-grid { grid-template-columns: repeat(2, 1fr); }
    .sc-why-grid { grid-template-columns: 1fr 1fr; }
    .sc-testimonials-grid { grid-template-columns: 1fr 1fr; }
    .sc-contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .sc-section { padding: 64px 0; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        inset-inline: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 16px;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all .3s var(--ease);
        flex: unset;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: stretch; }
    .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
    .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; border: none;
        background: var(--bg-soft); display: none; margin-top: 4px;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .mobile-toggle { display: flex; }

    .header-logo .logo-img { height: 36px; max-width: 130px; }
    .header-inner { gap: 10px; }
    .header-actions { gap: 6px; }

    .container { padding-inline: 16px; }
    .page-hero .container { max-width: none; width: 100%; }

    .nav-item-login {
        margin-inline-start: 0;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }
    .nav-item-login .nav-login-link {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .sc-marquee-track {
        animation-duration: 12s;
        gap: 32px;
    }

    .sc-scroll-top,
    .sc-wa-float {
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .sc-scroll-top { inset-inline-start: 20px; font-size: 1rem; }
    .sc-wa-float { inset-inline-end: 20px; font-size: 1.35rem; }

    .sc-bento { grid-template-columns: 1fr; }
    .sc-bento-card.col-6, .sc-bento-card.col-4, .sc-bento-card.col-8 { grid-column: span 1; }
    .sc-process-grid { grid-template-columns: 1fr; }
    .sc-why-grid { grid-template-columns: 1fr; }
    .sc-testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ===== Inner pages (merged from legacy styles) ===== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
}

.tech-category h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.tech-item:hover {
    background: #e2e8f0;
}

.tech-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

.tech-item span {
    font-weight: 500;
    color: #475569;
}

/* Process Section */
.process {
    padding: 80px 0;
    color: white;
}

.process1 {
    background: linear-gradient(135deg, #9de4de 0%, #5ae2d7 100%);
}
.process2 {
    background: linear-gradient(135deg, #f6b93b 0%, #e8c782 100%)
}
.process3 {
    background: linear-gradient(135deg, #efa3a2 0%, #ea8685 100%);
}




.icon1 {
    background: linear-gradient(135deg, #769fc9, #4a69bd);
}
.icon2 {
    background: linear-gradient(135deg, #8cf7ee, #5ed8ce);
}

.icon3 {
    background: linear-gradient(135deg, #f6b93b 0%, #e8c782 100%);
}
.icon4 {
    background: linear-gradient(135deg, #efa3a2 0%, #ea8685 100%)
}
.icon5 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}
.icon6 {
    background: linear-gradient(135deg, #90c0b1 0%, #75b9a3 100%);
}

.number2 {
color: #52c2b9;
}
.number3 {
color: #eea54f;
}
.number4 {
color: #ea8685;
}





/* About Us Page Styles */
.page-about-us .hero {
    background: linear-gradient(135deg, #90c0b1 0%, #75b9a3 100%);
    color: #fff;
}

.about-content-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #4e5a65;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.image-placeholder img {
	height: auto;
    width: 350px;
}


.about-image .image-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* About Cards Section */
.about-cards {
    padding: 80px 0;
    background: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #90c0b1 0%, #75b9a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4e5a65;
}

.about-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--gray-color);
    line-height: 1.6;
}




.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}



.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #475569;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* AI Chatbot Page Specific Styles */
.page-ai-chatbot .hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

/* Demo Chat Section */
.demo-chat {
    padding: 80px 0;
    background: #f3f7fc;
}

.chat-demo {
    max-width: 600px;
    margin: 50px auto 0;
}

.chat-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f8fafc;
}

.message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: #8b5cf6;
    color: white;
    flex-direction: row-reverse;
}

.message-content i {
    font-size: 1.2rem;
    color: #8b5cf6;
    margin-top: 2px;
}

.user-message .message-content i {
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
}

.chat-input {
    display: flex;
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    margin-left: 10px;
    font-size: 1rem;
}

.chat-input button {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background: #8b5cf6;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-input button:hover {
    background: #7c3aed;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.use-case-icon i {
    font-size: 2rem;
    color: white;
}

.use-case-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.use-case-card p {
    color: #64748b;
    line-height: 1.6;
}

/* What We Offer Section */
.what-we-offer {
    padding: 80px 0;
    background: #f8fafc;
}

.offer-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateX(5px);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon i {
    font-size: 1.5rem;
    color: white;
}

.offer-content h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.offer-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #8b5cf6;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design for AI Page */
@media (max-width: 768px) {
    .chat-messages {
        height: 300px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Font Awesome Fallback Icons */
.fas, .fab, .far, .fal {
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'Font Awesome 5 Regular', 'Font Awesome 5 Light', sans-serif;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fab {
    font-weight: 400;
}

.far {
    font-weight: 400;
}

.fal {
    font-weight: 300;
}

/* CSS-only Icon Fallbacks */
.icon-code::before { content: "💻"; }
.icon-palette::before { content: "🎨"; }
.icon-mobile::before { content: "📱"; }
.icon-search::before { content: "🔍"; }
.icon-speed::before { content: "⚡"; }
.icon-shield::before { content: "🛡️"; }
.icon-settings::before { content: "⚙️"; }
.icon-database::before { content: "🗄️"; }
.icon-chart::before { content: "📊"; }
.icon-plug::before { content: "🔌"; }
.icon-sync::before { content: "🔄"; }
.icon-users::before { content: "👥"; }
.icon-project::before { content: "📋"; }
.icon-clock::before { content: "⏰"; }
.icon-laptop::before { content: "💻"; }
.icon-cart::before { content: "🛒"; }
.icon-building::before { content: "🏢"; }
.icon-graduation::before { content: "🎓"; }
.icon-robot::before { content: "🤖"; }
.icon-brain::before { content: "🧠"; }
.icon-check::before { content: "✅"; }
.icon-chevron::before { content: "▼"; }
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "📧"; }
.icon-location::before { content: "📍"; }
.icon-arrow::before { content: "←"; }
.icon-user::before { content: "👤"; }
.icon-send::before { content: "📤"; }
.icon-comments::before { content: "💬"; }
.icon-language::before { content: "🌐"; }
.icon-download::before { content: "⬇️"; }
.icon-store::before { content: "🏪"; }
.icon-pen::before { content: "✏️"; }
.icon-gift::before { content: "🎁"; }
.icon-facebook::before { content: "📘"; }
.icon-twitter::before { content: "🐦"; }
.icon-linkedin::before { content: "💼"; }
.icon-instagram::before { content: "📷"; }
.icon-whatsapp::before { content: "💬"; }
.icon-android::before { content: "🤖"; }
.icon-apple::before { content: "🍎"; }

/* Fallback for when Font Awesome fails */
.fas:not([class*="fa-"]):before,
.fab:not([class*="fa-"]):before,
.far:not([class*="fa-"]):before {
    content: "●";
}

/* Contact Us Page Styles */
.page-contact-us .hero {
    background: linear-gradient(135deg, #958bcb 0%, #786fa6 100%);
    color: #fff;
}

.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    direction: ltr;
    flex-direction: row;
    justify-content: center;
}

.contact-link:hover {
    background: #f3f4f6;
    color: var(--primary-color);
    transform: translateX(-5px);
}

.contact-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.email-group {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: #f9fafb;
}

.email-group h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.address-info p {
display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
    justify-content: center;
    flex-direction: row-reverse;
}

.address-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.whatsapp-icon {
    font-size: 4rem;
    color: white;
}

.whatsapp-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-whatsapp {
    background: white;
    color: #25d366;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #25d366;
    text-decoration: none;
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
    background: #f8fafc;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.hours-card:hover {
    transform: translateY(-5px);
}

.hours-card.emergency {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.hours-card.emergency .day-info h3,
.hours-card.emergency .day-info .time {
    color: white;
}

.day-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.day-info .time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.day-info .note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive Design for Contact Us */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .whatsapp-icon {
        font-size: 3rem;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-text h3 {
        font-size: 1.5rem;
    }
} 




/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.7rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Embedded Chat Styles */
.chat-demo-container {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-box-embedded {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
}

.chat-messages-container .message {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    animation: fadeIn 0.3s ease-in-out;
}

.chat-messages-container .message-content {
    display: inline-block;
    text-align: right;
    font-size: 1.1rem;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    max-width: 100%;
    box-sizing: border-box;
    word-spacing: normal !important;
}

.chat-messages-container .bg-primary {
    background-color: #ed6b9a !important;
    color: #ffffff !important;
}

.chat-messages-container .bg-light1 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%) !important;
    color: #ffffff !important;
}

.chat-input-form {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-input-wrapper {
    width: 100%;
}

.chat-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Noto Kufi Arabic', sans-serif;
    min-height: 38px;
    max-height: 200px;
    overflow-y: auto;
    resize: none;
    line-height: 1.5;
    direction: rtl;
}

.chat-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.thumbnail-container {
    margin-bottom: 10px;
}

.thumbnail-wrapper {
    position: relative;
    display: inline-block;
    margin: 5px 0;
}

.thumbnail-preview {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.btn-remove-thumbnail {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.btn-remove-thumbnail:hover {
    background: #c82333;
}

.chat-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-image {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-image:hover {
    background: #e9ecef;
    border-color: #8b5cf6;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 24px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.image-message {
    display: inline-block;
    max-width: 100%;
    margin: 5px 0;
}

.chat-image {
    display: block;
    max-width: 300px;
    max-height: 300px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2px;
    background: transparent;
}

.typing-cursor {
    animation: blink 1s infinite;
    font-weight: bold;
    color: inherit;
    margin-right: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Responsive Chat */
@media (max-width: 768px) {
    .chat-demo-container {
        padding: 1rem;
    }
    
    .chat-box-embedded {
        height: 500px;
    }
    
    .chat-messages-container {
        padding: 15px;
    }
    
    .chat-messages-container .message-content {
        font-size: 0.95rem;
    }
    
    .chat-actions {
        flex-direction: column;
    }
    
    .btn-send {
        width: 100%;
    }
}

/* ===== AI chat widget (merged from legacy stylesai) ===== */







/* Container Styles */
.chat-container {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}

.chat-wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Chat Box */
#chat-box {
  background: var(--chat-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Messages Container */
#messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Message Styles */
.message {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeIn 0.3s ease-in-out;
  margin-bottom: 15px;
}

.message-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.message-content {
  display: inline-block;
  text-align: right;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  word-wrap: break-word;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
  max-width: 100%;
  box-sizing: border-box;
  word-spacing: normal;
  padding: 12px 16px;
  border-radius: var(--border-radius);
}

.message-content.user-message {
  background-color: var(--user-message-bg);
  color: var(--text-white);
}

.message-content.bot-message {
  background: var(--bot-message-bg);
  color: var(--text-white);
}

/* Typing Cursor */
.typing-cursor {
  animation: blink 1s infinite;
  font-weight: bold;
  margin-right: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Input Form */
#input-form {
  padding: 20px;
  background: var(--chat-bg);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group {
  margin-bottom: 15px;
  position: relative;
}

#user-input {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: 'Noto Kufi Arabic', sans-serif;
  min-height: 38px;
  max-height: 200px;
  overflow-y: auto;
  resize: none;
  line-height: 1.5;
  background-color: #ffffff;
  color: var(--text-color);
  direction: rtl;
}

#user-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-attach-image {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--gray-color);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: color 0.3s ease;
  z-index: 10;
}

.btn-attach-image:hover {
  color: var(--primary-color);
}

.btn-attach-image i {
  pointer-events: none;
}

/* Buttons Container */
.buttons-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buttons-row > * {
  flex: 1;
  min-width: 120px;
}

/* Button Styles — scoped to chat only */
.chat-wrapper .btn,
.chat-container .btn,
.demo-chat .btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
}

.chat-wrapper .btn-primary,
.chat-container .btn-primary,
.demo-chat .btn-primary {
  background: var(--primary-color);
  color: white;
}

.chat-wrapper .btn-primary:hover,
.chat-container .btn-primary:hover,
.demo-chat .btn-primary:hover {
  background: #0044cc;
  transform: translateY(-1px);
}

.chat-wrapper .btn-primary:active,
.chat-container .btn-primary:active,
.demo-chat .btn-primary:active {
  transform: translateY(0);
}

.chat-wrapper .btn-primary:disabled,
.chat-container .btn-primary:disabled,
.demo-chat .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.chat-wrapper .btn-outline-primary,
.chat-container .btn-outline-primary,
.demo-chat .btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.chat-wrapper .btn-outline-primary:hover,
.chat-container .btn-outline-primary:hover,
.demo-chat .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
}

/* Stop Button */
#stop-button-container {
  margin-bottom: 10px;
  text-align: center;
}

.btn-stop {
  background: #dc3545;
  color: white;
  border: none;
  width: 100%;
}

.btn-stop:hover {
  background: #c82333;
  transform: translateY(-1px);
}

.btn-stop:active {
  transform: translateY(0);
}

/* File Input */
#image-input {
  display: none;
}

/* Thumbnail Container */
#thumbnail-container {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnail-wrapper {
  position: relative;
  display: inline-block;
  margin: 0;
}

.thumbnail-preview {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.btn-remove-thumbnail {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc3545;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.btn-remove-thumbnail:hover {
  background: #c82333;
}

/* Image Message Styles */
.image-message {
  display: inline-block;
  max-width: 100%;
  margin: 5px 0;
}

.chat-image {
  display: block;
  max-width: 300px;
  max-height: 300px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2px;
  background: transparent;
}

.image-message img {
  display: block;
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.image-message img:hover {
  transform: scale(1.02);
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Text Formatting */
.message-content strong {
  font-weight: bold;
  color: inherit;
}

.message-content em {
  font-style: italic;
  color: inherit;
}

.message-content h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: inherit;
}

.message-content h4 {
  font-size: 1.1em;
  font-weight: bold;
  margin: 8px 0 4px 0;
  color: inherit;
}

.message-content code {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.message-content br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

/* Responsive Design */
@media (max-width: 768px) {
  #chat-box {
    height: 95vh;
    border-radius: 0;
  }

  .message {
    max-width: 90%;
  }

  #input-form {
    padding: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .message-content {
    font-size: 0.95rem;
  }

  .buttons-row {
    flex-direction: column;
  }

  .buttons-row > * {
    width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

:focus {
  outline: 3px solid #d47d9d;
  outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #1a1a1a;
    --chat-bg: #2d2d2d;
    --text-color: #ffffff;
    --border-color: #495057;
  }

  body {
    background-color: var(--background-color);
  }

  #chat-box {
    background-color: #2c3034;
  }

  #user-input {
    background-color: #2c3034;
    color: #f8f9fa;
    border-color: #495057;
  }

  #user-input:focus {
    background-color: #2c3034;
    color: #f8f9fa;
  }

  .image-message img {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  }

  .thumbnail-preview,
  .chat-image {
    border-color: #495057;
  }

  .message-content code {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* ===== Terms & Conditions page ===== */
.page-terms .terms-content {
    max-width: 900px;
    margin: 48px auto;
    padding: 0 24px 80px;
}

.page-terms .terms-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    direction: ltr;
    text-align: left;
}

.page-terms .terms-card h2 {
    color: var(--blue);
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 10px;
    border-left: 4px solid var(--purple);
    padding-left: 12px;
}

.page-terms .terms-card h2:first-child { margin-top: 0; }

.page-terms .terms-card h3 {
    font-size: 1.05rem;
    margin-top: 20px;
    color: var(--dark-3);
}

.page-terms .terms-card p,
.page-terms .terms-card li {
    color: var(--text);
    line-height: 1.8;
}

.page-terms .terms-card ul {
    margin: 12px 0 12px 24px;
}

.page-terms .terms-card a { color: var(--blue); }

.page-terms .contact-box {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
}

/* ============================================================
   SERVICE PAGES — shared components
   ============================================================ */
.sp-features-grid .sc-work-card { grid-column: span 1; }
.sp-features-grid.sc-work-grid { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
    .sp-features-grid.sc-work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .sp-features-grid.sc-work-grid { grid-template-columns: 1fr; }
}

.sc-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.sc-tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.sc-tech-pill i { color: var(--blue); font-size: 1rem; }

/* Fast delivery section */
.sc-fast-track {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0055ff 100%);
    color: #fff;
    overflow: hidden;
}

.sc-fast-track.sc-section-alt { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0055ff 100%); }

.sc-fast-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.sc-fast-copy h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin: 12px 0 16px;
    color: #fff;
    line-height: 1.2;
}

.sc-fast-copy > p {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.sc-label-light {
    background: rgba(255,255,255,.12);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,.25);
}

.sc-fast-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-fast-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: rgba(255,255,255,.88);
}

.sc-fast-points li i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
}

.sc-fast-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-fast-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 22px 24px;
    backdrop-filter: blur(8px);
    transition: transform .25s, background .25s, border-color .25s;
}

.sc-fast-card:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.22);
}

[dir="rtl"] .sc-fast-card:hover { transform: translateX(-6px); }

.sc-fast-card.featured {
    background: rgba(255,255,255,.14);
    border-color: rgba(96,165,250,.45);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.sc-fast-time {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    background: var(--blue);
    color: #fff;
    margin-bottom: 10px;
}

.sc-fast-card h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: #fff;
}

.sc-fast-card p {
    margin: 0;
    font-size: .88rem;
    color: rgba(255,255,255,.72);
    line-height: 1.55;
}

.sc-pricing-note {
    max-width: 720px;
    margin: -8px auto 28px;
    text-align: center;
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.65;
    padding: 14px 20px;
    background: rgba(0,85,255,.06);
    border: 1px solid rgba(0,85,255,.12);
    border-radius: var(--radius-sm);
}

.sc-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
}

.sc-price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    min-height: 100%;
}

.sc-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,85,255,.25);
}

.sc-price-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 12px 40px rgba(0,85,255,.15);
    transform: scale(1.02);
}

.sc-price-card.featured:hover { transform: scale(1.02) translateY(-6px); }

.sc-price-badge {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    background: var(--blue);
    color: #fff;
}

.sc-price-card h3 { font-size: 1.1rem; margin: 0; padding-inline-end: 72px; }

.sc-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.sc-price-amount .currency { font-size: 1.1rem; font-weight: 700; color: var(--blue); }
.sc-price-amount .amount { font-size: 2.25rem; font-weight: 900; color: var(--text); }
.sc-price-amount .period { font-size: .85rem; color: var(--text-light); margin-inline-start: 4px; }

.sc-price-amount.is-quote {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.sc-price-amount.is-quote .amount {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
}

.sc-price-amount.is-quote .period {
    margin-inline-start: 0;
    font-size: .82rem;
}

.sc-price-features {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.sc-price-features li i { color: var(--blue); margin-top: 3px; font-size: .75rem; }

.btn-block { width: 100%; justify-content: center; }

.sc-faq-list {
    max-width: 820px;
    margin: 8px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s, box-shadow .2s;
}

.sc-faq-item:hover { border-color: rgba(0,85,255,.2); }
.sc-faq-item.active {
    border-color: rgba(0,85,255,.35);
    box-shadow: var(--shadow);
}

.sc-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    font-size: .95rem;
    text-align: inherit;
    color: var(--dark);
}

.sc-faq-q i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--blue);
    transition: transform .25s, background .25s;
    flex-shrink: 0;
    font-size: .75rem;
}

.sc-faq-item.active .sc-faq-q i {
    transform: rotate(180deg);
    background: var(--blue);
    color: #fff;
}

.sc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.sc-faq-item.active .sc-faq-a { max-height: 320px; }

.sc-faq-item.active .sc-faq-a p {
    padding: 16px 24px 22px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.75;
    font-size: .92rem;
    border-top: 1px solid var(--border);
}

.sc-ai-demo .container { max-width: 920px; }

@media (max-width: 900px) {
    .sc-fast-inner { grid-template-columns: 1fr; gap: 32px; }
    .sc-fast-card:hover { transform: translateY(-4px); }
    [dir="rtl"] .sc-fast-card:hover { transform: translateY(-4px); }
    .sc-price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sc-price-card.featured { transform: none; }
    .sc-price-card.featured:hover { transform: translateY(-6px); }
}

