/* ═══════════════════════════════════════════════════
   ZARWA AI — DESIGN SYSTEM
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --primary: #7B2FBE;
    --primary-light: #9B4FDE;
    --primary-dark: #5B0F9E;
    --accent: #00E5FF;
    --accent2: #FF6B6B;
    --bg: #0A0A0F;
    --bg2: #0F0F1A;
    --bg3: #141428;
    --surface: rgba(255, 255, 255, 0.04);
    --surface2: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(123, 47, 190, 0.4);
    --text: #E8E8F0;
    --text-muted: #8888AA;
    --text-dim: #5555770;
    --shadow-glow: 0 0 40px rgba(123, 47, 190, 0.3);
    --shadow-cyan: 0 0 40px rgba(0, 229, 255, 0.2);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    --nav-h: 70px;
}

/* ── Global ── */
body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ── Typography ── */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid rgba(123, 47, 190, 0.35);
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header p {
    max-width: 580px;
    margin: 16px auto 0;
    font-size: 1.05rem;
}

/* ── Glassmorphism Card ── */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(123, 47, 190, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border-accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: rgba(123, 47, 190, 0.15);
    border-color: var(--accent);
}

/* ── Navigation ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
}

.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: var(--surface2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ── Loading Screen ── */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#loading-canvas {
    position: absolute;
    inset: 0;
}

.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loader-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: loadPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(123, 47, 190, 0.5), 0 0 120px rgba(0, 229, 255, 0.2);
}

@keyframes loadPulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(123, 47, 190, 0.5), 0 0 80px rgba(0, 229, 255, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 80px rgba(123, 47, 190, 0.7), 0 0 140px rgba(0, 229, 255, 0.3);
        transform: scale(1.05);
    }
}

.loader-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.loader-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.loader-progress-wrap {
    width: 260px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent);
}

.loader-pct {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#loading-screen.hide {
    animation: loaderHide 0.8s forwards;
}

@keyframes loaderHide {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
        pointer-events: none;
    }
}

/* ── Main Content ── */
#app {
    opacity: 0;
    transition: opacity 0.6s ease;
}

#app.visible {
    opacity: 1;
}

/* ── Canvas Background ── */
#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Ensure page content is above canvas */
#navbar,
#app,
.mobile-menu {
    position: relative;
    z-index: 1;
}

#navbar {
    z-index: 1000;
}

.mobile-menu {
    z-index: 999;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-glow::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 47, 190, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-bg-glow::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite reverse;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(123, 47, 190, 0.12);
    border: 1px solid rgba(123, 47, 190, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.2s both;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero h1 {
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.4s both;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.6s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.8s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.service-card h3 {
    font-size: 1.2rem;
}

.service-card .learn-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .learn-more {
    gap: 12px;
}

/* ── Portfolio ── */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg3);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.2), rgba(0, 229, 255, 0.1));
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transform: translateY(30%);
    transition: var(--transition);
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 1rem;
}

.portfolio-overlay span {
    font-size: 0.8rem;
    color: var(--accent);
}

/* ── Pricing ── */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px;
    font-weight: 600;
    font-size: 0.9rem;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--surface2);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.toggle-switch.on {
    background: var(--primary);
    border-color: var(--primary);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch.on .toggle-knob {
    transform: translateX(24px);
}

.save-badge {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.2), rgba(0, 229, 255, 0.05));
    border-color: rgba(123, 47, 190, 0.5);
    transform: scale(1.04);
}

.pricing-card.featured::after {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.pricing-price .curr {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.pricing-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pricing-features li .check {
    color: var(--accent);
    font-size: 1rem;
}

.pricing-features li .cross {
    color: #555;
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.2), rgba(0, 229, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.15), transparent);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.about-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.team-card {
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.team-card h4 {
    font-size: 1rem;
}

.team-card span {
    font-size: 0.82rem;
    color: var(--accent);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid rgba(123, 47, 190, 0.2);
    flex-shrink: 0;
}

.contact-item-text h4 {
    margin-bottom: 4px;
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 47, 190, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── Footer ── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.08);
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── RTL Overrides ── */
[dir="rtl"] .nav-links {
    direction: rtl;
}

[dir="rtl"] .hero {
    direction: rtl;
}

[dir="rtl"] .section-tag {
    letter-spacing: 0;
}

[dir="rtl"] .footer-top {
    direction: rtl;
}

[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .about-grid {
    direction: rtl;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .section {
        padding: 70px 0;
    }
}

/* ── Misc ── */
.glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    margin: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* page transitions */
.page-enter {
    animation: pageIn 0.5s forwards;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}