:root {
    --primary-gradient: linear-gradient(to left, #0d6efd, #6610f2);
    --primary-gradient-rev: linear-gradient(to right, #0d6efd, #6610f2);
    --blue: #0d6efd;
    --violet: #6610f2;
    --white: #ffffff;
    --light-bg: #f7f8fc;
    --soft-blue: #eef3ff;
    --soft-violet: #f3eeff;
    --text-dark: #0f0f1a;
    --text-muted: #6b7280;
    --border-light: rgba(13,110,253,0.12);
    --shadow-card: 0 8px 40px rgba(13,110,253,0.10);
    --shadow-hover: 0 20px 60px rgba(102,16,242,0.18);
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Cairo', 'Tajawal', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    direction: rtl;
}

/* ─── PROGRESS BAR ─── */
#progress-bar {
    position: fixed;
    top: 0; right: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-gradient);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 0 4px 4px;
}

/* ─── NAVBAR ─── */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(13,110,253,0.08);
}
.navbar-brand {
    font-size: 1.7rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: 10px;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.navbar-nav .nav-link:hover {
    background: var(--soft-blue);
    color: var(--blue) !important;
}
.btn-nav {
    background: var(--primary-gradient);
    color: white !important;
    border-radius: 12px;
    padding: 10px 22px !important;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(13,110,253,0.3);
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,16,242,0.35);
}
.navbar-toggler {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ─── HERO ─── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: var(--white);
}
.hero-bg-shape {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102,16,242,0.06) 0%, rgba(13,110,253,0.04) 50%, transparent 70%);
    top: -200px; left: -200px;
    pointer-events: none;
}
.hero-bg-shape2 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,110,253,0.05) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft-blue);
    border: 1px solid rgba(13,110,253,0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary-gradient);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100%{transform:scale(1);opacity:1}
    50%{transform:scale(1.4);opacity:0.7}
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-title .gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 500;
    max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-grad {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(13,110,253,0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-grad:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102,16,242,0.35);
    color: white;
}
.btn-outline-grad {
    background: transparent;
    color: var(--blue);
    border: 2px solid rgba(13,110,253,0.3);
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-grad:hover {
    background: var(--soft-blue);
    border-color: var(--blue);
    transform: translateY(-3px);
    color: var(--violet);
}

/* ─── HERO CREATIVE VISUAL ─── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark orbital card */
.orbit-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, #0d0d1f 0%, #0e1535 60%, #160b2e 100%);
    border-radius: 32px;
    padding: 36px 32px 32px;
    box-shadow: 0 40px 100px rgba(13,110,253,0.2), 0 0 0 1px rgba(102,16,242,0.2);
    overflow: visible;
    z-index: 2;
}

/* Glow ring behind card */
.orbit-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    background: linear-gradient(to left, #0d6efd, #6610f2, #0d6efd);
    background-size: 200% 200%;
    animation: borderSpin 4s linear infinite;
    z-index: -1;
    opacity: 0.5;
}
@keyframes borderSpin {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* Center coin / budget label */
.budget-center {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}
.budget-coin {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 12px rgba(13,110,253,0.08), 0 0 0 24px rgba(102,16,242,0.04);
    margin-bottom: 12px;
    animation: coinPulse 3s ease-in-out infinite;
}
@keyframes coinPulse {
    0%,100%{box-shadow:0 0 0 12px rgba(13,110,253,0.08),0 0 0 24px rgba(102,16,242,0.04)}
    50%{box-shadow:0 0 0 18px rgba(13,110,253,0.12),0 0 0 36px rgba(102,16,242,0.06)}
}
.budget-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.budget-amount {
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(to left, #0d6efd, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Flow path SVG */
.flow-svg-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.flow-svg-wrap svg { width: 100%; overflow: visible; }

/* Animated dash path */
.flow-path {
    stroke: url(#flowGrad);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6 4;
    animation: dashMove 1.2s linear infinite;
}
@keyframes dashMove {
    to { stroke-dashoffset: -20; }
}

/* Flow nodes */
.flow-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
}
.flow-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.node-icon {
    width: 48px; height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s;
    position: relative;
}
.node-icon:hover { transform: scale(1.1) translateY(-2px); }
.node-g { background: linear-gradient(135deg,rgba(13,110,253,0.2),rgba(13,110,253,0.05)); border: 1px solid rgba(13,110,253,0.3); color: #60a5fa; }
.node-m { background: linear-gradient(135deg,rgba(102,16,242,0.2),rgba(102,16,242,0.05)); border: 1px solid rgba(102,16,242,0.3); color: #c084fc; }
.node-r { background: linear-gradient(135deg,rgba(16,185,129,0.2),rgba(16,185,129,0.05)); border: 1px solid rgba(16,185,129,0.3); color: #34d399; }
.node-c { background: linear-gradient(135deg,rgba(245,158,11,0.2),rgba(245,158,11,0.05)); border: 1px solid rgba(245,158,11,0.3); color: #fbbf24; }
.node-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-align: center;
    line-height: 1.3;
}

/* Arrow connector */
.node-arrow {
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-bottom: 22px;
}

/* Moving particle along flow */
.particle {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(to left, #0d6efd, #6610f2);
    position: absolute;
    top: 50%; transform: translateY(-50%);
    animation: particleFlow 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(13,110,253,0.8);
    pointer-events: none;
}
.particle:nth-child(2) { animation-delay: 0.8s; background: linear-gradient(to left,#6610f2,#a78bfa); box-shadow: 0 0 8px rgba(102,16,242,0.8); }
.particle:nth-child(3) { animation-delay: 1.6s; background: linear-gradient(to left,#10b981,#34d399); box-shadow: 0 0 8px rgba(16,185,129,0.8); }
@keyframes particleFlow {
    0%   { right: 0%;   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { right: 100%; opacity: 0; }
}

/* Result row */
.result-row {
    display: flex;
    gap: 10px;
}
.result-pill {
    flex: 1;
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
}
.rp-sales { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.rp-reach { background: rgba(13,110,253,0.08); border: 1px solid rgba(13,110,253,0.2); }
.rp-roas  { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); }
.rp-val {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 3px;
}
.rp-sales .rp-val { color: #34d399; }
.rp-reach .rp-val { color: #60a5fa; }
.rp-roas  .rp-val { color: #fbbf24; }
.rp-lbl { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.4); }

/* Floating badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}
.floating-badge.fb1 { top: -18px; left: -18px; animation-delay: 0s; }
.floating-badge.fb2 { bottom: 20px; left: -24px; animation-delay: 1.5s; }
@keyframes float {
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-8px)}
}
.fb-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--primary-gradient);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.85rem;
}

/* ─── STATS ─── */
.stats-section {
    padding: 60px 0;
    background: var(--light-bg);
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ─── SECTIONS GENERAL ─── */
.section-pad { padding: 90px 0; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--soft-blue);
    color: var(--blue);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(13,110,253,0.15);
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.section-title .gt {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── WHY US ─── */
.why-section { background: var(--white); }
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.35s;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102,16,242,0.2);
}
.why-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--primary-gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(13,110,253,0.25);
    transition: all 0.3s;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-card h5 {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── SERVICES ─── */
.services-section { background: var(--light-bg); }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; left: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: right;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}
.service-card h5 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── PRICING ─── */
.pricing-section { background: var(--white); }
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.pricing-card.featured {
    background: linear-gradient(160deg, #0f0f1a 0%, #1a1040 100%);
    border-color: rgba(102,16,242,0.5);
    box-shadow: 0 20px 60px rgba(102,16,242,0.25);
    transform: scale(1.04);
}
.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
    box-shadow: 0 30px 80px rgba(102,16,242,0.35);
}
.featured-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    padding: 5px 18px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}
.pricing-plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 10px;
}
.pricing-card.featured .pricing-plan-name { color: rgba(255,255,255,0.85); }
.pricing-price {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 24px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 20px 0;
}
.pricing-card.featured .pricing-divider { border-top-color: rgba(255,255,255,0.1); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.06); }
.pricing-features li i {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: var(--primary-gradient);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.pricing-note {
    background: var(--soft-blue);
    border: 1px solid rgba(13,110,253,0.15);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--blue);
    font-weight: 600;
    text-align: center;
}

/* ─── HOW WE WORK ─── */
.work-section { background: var(--light-bg); }
.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.35s;
    height: 100%;
    position: relative;
    text-align: center;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.step-num {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(13,110,253,0.3);
}
.step-card h5 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
.step-connector {
    position: absolute;
    top: 50px;
    left: -20px;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--white); }
.testi-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.35s;
    height: 100%;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testi-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 22px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--primary-gradient);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testi-author .name { font-weight: 800; font-size: 0.95rem; }
.testi-author .company { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* ─── FAQ ─── */
.faq-section { background: var(--light-bg); }
.accordion-item {
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-dark) !important;
    background: var(--white) !important;
    box-shadow: none !important;
    padding: 20px 24px;
}
.accordion-button:not(.collapsed) {
    color: var(--blue) !important;
}
.accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 0 24px 20px;
    font-weight: 500;
}

/* ─── CTA ─── */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1a40 50%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102,16,242,0.15) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,110,253,0.12) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    pointer-events: none;
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}
.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    font-weight: 500;
}
.btn-wa {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
    color: white;
    background: #1ebe5a;
}
.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    color: white;
}

/* ─── FOOTER ─── */
footer {
    background: #0a0a1a;
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}
.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.footer-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
}
.footer-links a:hover { color: white; padding-right: 4px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-contact-item:hover { color: white; }
.contact-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 36px 0 24px;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

/* ─── FLOATING WA ─── */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}
.floating-wa a {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: all 0.3s;
    animation: waPulse 2.5s ease-in-out infinite;
}
.floating-wa a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37,211,102,0.6);
}
@keyframes waPulse {
    0%,100%{box-shadow:0 6px 25px rgba(37,211,102,0.5)}
    50%{box-shadow:0 6px 40px rgba(37,211,102,0.8),0 0 0 10px rgba(37,211,102,0.1)}
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .hero-section { padding: 80px 0 60px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
}
@media (max-width: 768px) {
    .db-metrics { flex-direction: column; }
    .floating-wa { bottom: 20px; left: 20px; }
    .hero-btns { justify-content: center; }
}

/* Smooth gradient animations */
.grad-anim {
    background-size: 200% 200%;
    animation: gradShift 4s ease infinite;
}
@keyframes gradShift {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* Smooth scroll offset */
[id] { scroll-margin-top: 80px; }