/* ============================================
   KARAM SHATNAWI — SITE CSS
   Dark Professional Theme — RTL Arabic
   ============================================ */

/* ====== Reset ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Tajawal', sans-serif;
    background: #070c18;
    color: #b8ccec;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
h1, h2, h3, h4, h5, strong { font-family: 'Cairo', sans-serif; }
button { font: inherit; cursor: pointer; }
a:focus-visible, button:focus-visible {
    outline: 2px solid rgba(99, 160, 255, 0.55);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ====== Design Tokens ====== */
:root {
    --blue:      #4f8ef7;
    --purple:    #7c6cf7;
    --glow:      rgba(79, 142, 247, 0.18);
    --surface:   rgba(255, 255, 255, 0.04);
    --surface2:  rgba(255, 255, 255, 0.07);
    --border:    rgba(255, 255, 255, 0.08);
    --border-b:  rgba(79, 142, 247, 0.28);
    --text:      #b8ccec;
    --muted:     #607799;
    --heading:   #eef3ff;
    --bg:        #070c18;
    --bg2:       #0b1120;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

/* ====== Gradient Text ====== */
.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ====== Container ====== */
.container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

/* ====== Section ====== */
.section { padding: 100px 0; }
.section[id] { scroll-margin-top: 90px; }

/* ====== Eyebrow ====== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.22);
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.eyebrow--sm { font-size: 0.78rem; padding: 4px 12px; }

/* ====== Section Head ====== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
    color: var(--heading);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.18;
    margin: 16px 0 14px;
    letter-spacing: -0.02em;
}
.section-desc {
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.9;
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    font-family: 'Cairo', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    box-shadow: 0 6px 22px rgba(79, 142, 247, 0.28);
}
.btn--primary:hover { box-shadow: 0 10px 30px rgba(79, 142, 247, 0.42); }
.btn--outline {
    background: transparent;
    border-color: var(--border-b);
    color: var(--blue);
}
.btn--outline:hover { background: var(--glow); border-color: var(--blue); }
.btn--sm   { padding: 9px 18px; font-size: 0.88rem; }
.btn--lg   { padding: 16px 34px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(7, 12, 24, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.is-scrolled {
    background: rgba(7, 12, 24, 0.96);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.navbar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 78px;
}

/* Brand */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__name {
    color: var(--heading);
    font-family: 'Cairo', sans-serif;
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

/* Desktop Nav */
.nav { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; }
.nav__link {
    padding: 8px 15px;
    border-radius: 100px;
    color: var(--muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--heading); background: var(--surface2); }
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: none;
    border: none;
    padding: 5px;
    margin-inline-start: auto;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px 20px 20px;
    border-top: 1px solid var(--border);
    background: rgba(7, 12, 24, 0.99);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 8px; }

/* ====== HERO (for service pages) ====== */
.hero { padding-top: 140px; padding-bottom: 80px; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 60px;
}
.hero__title {
    color: var(--heading);
    font-size: clamp(3rem, 5.8vw, 5.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 18px 0 20px;
}
.hero__desc {
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    max-width: 540px;
    line-height: 2;
    margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__chips   { display: flex; gap: 14px; flex-wrap: wrap; }

.chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 18px;
    flex: 1;
    min-width: 110px;
    transition: border-color 0.2s;
}
.chip:hover { border-color: var(--border-b); }
.chip strong { display: block; color: var(--blue); font-size: 1.45rem; font-weight: 900; margin-bottom: 3px; }
.chip span   { color: var(--muted); font-size: 0.84rem; }

/* Profile Card */
.hero__visual { position: relative; }
.profile-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 22px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}
.profile-card:hover { border-color: var(--border-b); }
.profile-card__photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg2);
    margin-bottom: 18px;
}
.profile-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.profile-card__info h3 { color: var(--heading); font-size: 1.18rem; margin-bottom: 4px; }
.profile-card__info p  { color: var(--muted); font-size: 0.88rem; }
.profile-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.2);
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}


/* ====== MARQUEE ====== */
.marquee-wrap {
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--surface);
}
.marquee-track {
    display: flex;
    width: max-content;
    padding: 16px 0;
    animation: marquee 34s linear infinite;
}
.marquee-track span {
    color: var(--muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    padding: 0 18px;
    white-space: nowrap;
}
.marquee-track .sep { color: var(--blue); opacity: 0.7; padding: 0 2px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ====== PACKAGES ====== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    align-items: start;
}
.package {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    position: relative;
}
.package:hover {
    transform: translateY(-5px);
    border-color: var(--border-b);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.package--featured {
    border-color: var(--border-b);
    background: linear-gradient(165deg, rgba(79, 142, 247, 0.09), var(--surface));
    box-shadow: 0 0 0 1px rgba(79, 142, 247, 0.14), 0 14px 40px rgba(0, 0, 0, 0.3);
}
.featured-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    padding: 5px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(79, 142, 247, 0.35);
}
.package .eyebrow { margin-bottom: 14px; }
.package h3 { color: var(--heading); font-size: 1.3rem; margin-bottom: 10px; }
.package p  { color: var(--muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 18px; }
.price-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(79, 142, 247, 0.1);
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 18px;
    width: fit-content;
}
.feat-list { display: grid; gap: 9px; margin-bottom: 24px; }
.feat-list li {
    color: var(--muted);
    font-size: 0.9rem;
    padding-right: 22px;
    position: relative;
    line-height: 1.7;
}
.feat-list li::before {
    content: '\2713';
    position: absolute;
    right: 0;
    color: var(--blue);
    font-weight: 900;
}

/* ====== SOLUTIONS ====== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.solution {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
    transition: transform 0.28s, border-color 0.28s;
}
.solution:hover { transform: translateY(-4px); border-color: var(--border-b); }
.solution__icon { font-size: 2.1rem; margin-bottom: 14px; }
.solution h3 { color: var(--heading); font-size: 1.05rem; margin-bottom: 10px; }
.solution p  { color: var(--muted); font-size: 0.87rem; line-height: 1.85; }
.solution__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    transition: gap 0.2s;
}
.solution__link:hover { gap: 8px; }

/* ====== PORTFOLIO (full page) ====== */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}
.filter-btn {
    padding: 9px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
}
.filter-btn:hover { color: var(--heading); border-color: var(--border-b); }
.filter-btn.is-active {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(79, 142, 247, 0.32);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-b);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.portfolio-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.portfolio-card__domain {
    color: var(--muted);
    font-size: 0.78rem;
    direction: ltr;
    font-family: monospace;
    opacity: 0.75;
}
.portfolio-card h3 { color: var(--heading); font-size: 1.08rem; margin-bottom: 8px; font-weight: 800; }
.portfolio-card p  { color: var(--muted); font-size: 0.87rem; line-height: 1.82; flex: 1; margin-bottom: 16px; }
.portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: auto;
    transition: gap 0.2s;
}
.portfolio-card:hover .portfolio-card__link { gap: 10px; }

/* Badge inside portfolio cards */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.2);
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--border-b);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.testimonial img { width: 100%; display: block; }

/* ====== CTA BOX ====== */
.cta-box {
    background: linear-gradient(135deg, rgba(79, 142, 247, 0.09), rgba(124, 108, 247, 0.09));
    border: 1px solid var(--border-b);
    border-radius: 28px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(79, 142, 247, 0.07), transparent 60%);
    pointer-events: none;
}
.cta-box__text { position: relative; }
.cta-box__text h2 {
    color: var(--heading);
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    margin-bottom: 12px;
}
.cta-box__text p { color: var(--muted); max-width: 480px; line-height: 1.9; }
.cta-box__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; position: relative; }

/* ====== FOOTER ====== */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}
.footer__inner { display: flex; flex-direction: column; gap: 36px; }
.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 480px;
}
.footer__brand h3 { color: var(--heading); font-size: 1.1rem; margin-bottom: 8px; }
.footer__brand p  { color: var(--muted); font-size: 0.88rem; line-height: 1.85; }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.footer__links a {
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.87rem;
    font-weight: 700;
    transition: color 0.2s, border-color 0.2s;
}
.footer__links a:hover { color: var(--heading); border-color: var(--border-b); }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
    color: var(--muted);
    font-size: 0.84rem;
}

/* ====== REVEAL ANIMATION ====== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====== HORIZONTAL SCROLL GUIDE ====== */
.scroll-shell {
    position: relative;
}
.scroll-cue {
    display: none;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.scroll-shell.is-scrollable-x .scroll-cue {
    display: flex;
}
.scroll-cue__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(79, 142, 247, 0.24);
    background: rgba(79, 142, 247, 0.12);
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.scroll-cue__button:hover {
    transform: translateY(-1px);
    background: rgba(79, 142, 247, 0.18);
    border-color: var(--border-b);
}
.scroll-cue__icon {
    font-size: 0.95rem;
    line-height: 1;
}
.scroll-shell.is-scrollable-x:not(.is-interacted) .scroll-cue__button {
    animation: scrollCuePulse 1.8s ease-in-out infinite;
}
.scroll-shell.is-interacted .scroll-cue__button {
    animation: none;
}
@keyframes scrollCuePulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
}

/* ====== AUDIENCE SECTION (shared across detail pages) ====== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.audience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px 24px;
    transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-b);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.audience-card__icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.audience-card h4 { color: var(--heading); font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.audience-card p  { color: var(--muted); font-size: 0.87rem; line-height: 1.85; margin: 0; }
.audience-card .pain {
    margin-top: 10px;
    padding: 9px 12px;
    background: rgba(79,142,247,.07);
    border-right: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.6;
}

/* ==============================
   HOMEPAGE — SPECIFIC STYLES
   ============================== */

/* ── Homepage Hero ── */
.idx-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.idx-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(79,142,247,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.idx-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
}
.idx-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,142,247,.1);
    border: 1px solid rgba(79,142,247,.22);
    border-radius: 100px;
    padding: 6px 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 20px;
}
.idx-hero h1 {
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    color: var(--heading);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.idx-hero__sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 500px;
}
.idx-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.idx-hero__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.idx-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.idx-chip strong { color: var(--heading); }

/* Photo Card */
.idx-hero__photo-wrap {
    position: relative;
    flex-shrink: 0;
}
.idx-hero__photo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(79,142,247,0.15) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}
.idx-hero__photo {
    width: 240px;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(79,142,247,.25);
    box-shadow: 0 24px 56px rgba(0,0,0,.4), 0 0 0 1px rgba(79,142,247,.08);
    position: relative;
}
.idx-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Stats Bar ── */
.idx-stats {
    padding: 40px 0 56px;
}
.idx-stats__grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
}
.idx-stat {
    text-align: center;
    padding: 0 16px;
}
.idx-stat__num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    line-height: 1.1;
    display: block;
}
.idx-stat__label {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ── About Section ── */
.idx-about {
    padding: 72px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.idx-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.idx-about__text .eyebrow {
    margin-bottom: 20px;
}
.idx-about__text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.idx-about__text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.95;
    margin-bottom: 16px;
}
.idx-about__text p:last-of-type {
    margin-bottom: 28px;
}
.idx-about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.idx-about__tag {
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(79,142,247,.08);
    border: 1px solid rgba(79,142,247,.18);
    color: var(--blue);
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}
.idx-about__visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.idx-about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.25s, transform 0.25s;
}
.idx-about-card:hover {
    border-color: var(--border-b);
    transform: translateX(-4px);
}
.idx-about-card__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(79,142,247,.08);
    border-radius: 12px;
}
.idx-about-card__text strong {
    display: block;
    color: var(--heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 800;
}
.idx-about-card__text span {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ── Services Section ── */
.idx-services {
    padding: 72px 0 80px;
}
.idx-services__head {
    text-align: center;
    margin-bottom: 52px;
}
.idx-services__head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--heading);
    letter-spacing: -0.02em;
    margin: 12px 0 12px;
}
.idx-services__head p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
}

/* Service Group Label */
.srv-group { margin-bottom: 44px; }
.srv-group:last-child { margin-bottom: 0; }
.srv-group__label {
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.srv-group__label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Service Grid */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.srv-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Service Card */
.srv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform .22s, border-color .22s, box-shadow .22s;
    text-decoration: none;
}
.srv-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-b);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.srv-card--featured {
    border-color: var(--border-b);
    background: linear-gradient(145deg, rgba(79,142,247,.07), var(--surface));
}
.srv-card__icon { font-size: 2rem; margin-bottom: 4px; }
.srv-card__title {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.3;
}
.srv-card__desc {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.75;
    flex: 1;
}
.srv-card__price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--blue);
    margin-top: 4px;
}
.srv-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--blue);
    margin-top: 10px;
    transition: gap .2s;
}
.srv-card__link:hover { gap: 8px; }

/* ── Portfolio Showcase (Homepage) ── */
.idx-portfolio {
    padding: 72px 0 80px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}
.idx-portfolio__head {
    text-align: center;
    margin-bottom: 48px;
}
.idx-portfolio__head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--heading);
    letter-spacing: -0.02em;
    margin: 12px 0 12px;
}
.idx-portfolio__head p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
}
.idx-pshow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}
.idx-pshow-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.idx-pshow-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-b);
    box-shadow: 0 14px 36px rgba(0,0,0,.28);
}
.idx-pshow-card__cat {
    font-family: 'Cairo', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.idx-pshow-card__name {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--heading);
    line-height: 1.3;
}
.idx-pshow-card__domain {
    font-size: 0.76rem;
    color: var(--muted);
    direction: ltr;
    font-family: monospace;
    opacity: 0.7;
}
.idx-pshow-card__link {
    margin-top: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.idx-pshow-card__link:hover { gap: 8px; }
.idx-portfolio__more {
    text-align: center;
}

/* ── Trust Section ── */
.idx-trust {
    padding: 64px 0;
}
.idx-trust__box {
    background: linear-gradient(135deg, rgba(79,142,247,.06), rgba(124,108,247,.06));
    border: 1px solid var(--border-b);
    border-radius: 28px;
    padding: 40px 36px;
    display: grid;
    gap: 24px;
}
.idx-trust__intro h2 {
    color: var(--heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 10px 0 10px;
    letter-spacing: -0.02em;
}
.idx-trust__intro p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
    margin: 0;
    max-width: 680px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    display: grid;
    gap: 6px;
    transition: border-color 0.2s;
}
.trust-card:hover { border-color: var(--border-b); }
.trust-card small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}
.trust-card strong {
    color: var(--heading);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.5;
}

/* ── Testimonials Section ── */
.idx-testimonials {
    padding: 72px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}
.idx-testimonials__head {
    text-align: center;
    margin-bottom: 40px;
}
.idx-testimonials__head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--heading);
    letter-spacing: -0.02em;
    margin: 10px 0 12px;
}
.idx-testimonials__head p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.85;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.testi-img:hover {
    transform: translateY(-3px);
    border-color: var(--border-b);
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.testi-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── CTA Section ── */
.idx-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79,142,247,.07) 0%, rgba(124,108,247,.08) 100%);
    border-top: 1px solid var(--border-b);
    text-align: center;
}
.idx-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.idx-cta p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}
.idx-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.idx-cta__note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.8;
}


/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .idx-pshow-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
    .nav, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding-top: 120px; }
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__content { text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__chips   { justify-content: center; }
    .hero__desc    { margin-inline: auto; }
    .packages-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; padding: 40px 32px; }
    .cta-box__text p { margin-inline: auto; }
    .cta-box__actions { justify-content: center; }
    .idx-about__grid { grid-template-columns: 1fr; gap: 40px; }
    .idx-pshow-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .idx-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .idx-hero__photo-wrap { margin: 0 auto; }
    .idx-hero__photo { width: 160px; margin: 0 auto; }
    .idx-hero__photo-glow { display: none; }
    .idx-hero__sub { max-width: 100%; margin-inline: auto; }
    .idx-hero__actions { justify-content: center; }
    .idx-hero__chips { justify-content: center; }
    .idx-hero__content { order: 2; }
    .idx-hero__photo-wrap { order: 1; }
    /* horizontal scroll on mobile for service grids */
    .srv-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        margin: 0 -4px;
        scrollbar-width: none;
    }
    .srv-scroll::-webkit-scrollbar { display: none; }
    .srv-scroll .srv-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0 4px;
    }
    .srv-scroll .srv-card {
        min-width: 200px;
        flex-shrink: 0;
    }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { width: calc(100% - 32px); }
    .section { padding: 72px 0; }
    .hero { padding-top: 104px; padding-bottom: 56px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero__actions .btn { flex: 1 1 160px; }
    .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .filters::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; }
    .cta-box { padding: 32px 22px; }
    .cta-box__actions .btn { width: 100%; }
    .footer__top { flex-direction: column; }
    .idx-pshow-grid { grid-template-columns: repeat(2, 1fr); }
    .idx-stats__grid { gap: 16px; }
}

@media (max-width: 560px) {
    .audience-grid { grid-template-columns: 1fr; }
    .idx-about__grid { gap: 32px; }
    .idx-about-card { padding: 18px 20px; }
    .idx-pshow-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 480px) {
    .navbar__inner { min-height: 64px; }
    .hero__title { font-size: 2.4rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .hero__chips { flex-direction: column; }
    .chip { min-width: unset; flex: none; width: 100%; }
    .package, .solution { padding: 20px; }
    .cta-box { padding: 28px 20px; }
    .idx-stats__grid { flex-direction: column; align-items: center; padding: 24px 20px; gap: 20px; }
    .idx-stat { width: 100%; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .idx-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .idx-cta { padding: 56px 0; }
    .idx-hero { padding-top: 96px; padding-bottom: 40px; }
    .idx-hero h1 { font-size: 2.1rem; }
    .idx-hero__photo { width: 130px; }
}

@media (max-width: 360px) {
    .container { width: calc(100% - 24px); }
    .btn--lg { padding: 14px 24px; font-size: 0.97rem; }
    .idx-pshow-grid { grid-template-columns: 1fr; }
    .srv-grid--3 { grid-template-columns: 1fr; }
}
