/* =========================================================================
   1. GLOBAL RESET & PREMIUM DESIGN TOKENS
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-bg-dark: #f8f9fc;
    --color-bg-card: #ffffff;
    --color-primary: #2563eb;
    --color-primary-glow: rgba(37, 99, 235, 0.15);
    --color-accent-gradient: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #3b82f6 100%);
    --color-text-pure: #0f1117;
    --color-text-silver: #6b7280;
    --color-border-glass: rgba(0, 0, 0, 0.08);
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-pure);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

/* Common Section Typography */
.text-center { text-align: center; }

.section-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-silver);
    max-width: 600px;
    margin: 0 auto 64px auto;
    line-height: 1.6;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
}

.btn-lg { padding: 16px 32px; }
.btn-md { padding: 12px 24px; }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-pure);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(37, 99, 235, 0.5);
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(37,99,235,0.3);
    color: var(--color-primary);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(37,99,235,0.06);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(37,99,235,0.3);
    color: var(--color-primary);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* =========================================================================
   2. HERO SECTION — Bold Centered Typography
   ========================================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

/* Soft pastel blobs — like reference screenshot */
.hero-bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-1 {
    width: 380px;
    height: 380px;
    background: rgba(147,210,255,0.55);
    filter: blur(65px);
    top: -100px;
    right: -60px;
    animation: moveA 6s ease-in-out infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(20,30,60,0.18);
    filter: blur(58px);
    top: 20px;
    right: 240px;
    animation: moveB 7s ease-in-out infinite alternate;
}

.blob-3 {
    width: 320px;
    height: 320px;
    background: rgba(100,180,255,0.45);
    filter: blur(60px);
    bottom: -60px;
    right: 80px;
    animation: moveC 5s ease-in-out infinite alternate;
}

.blob-4 {
    width: 360px;
    height: 360px;
    background: rgba(20,30,70,0.15);
    filter: blur(62px);
    bottom: -90px;
    left: -60px;
    animation: moveD 8s ease-in-out infinite alternate;
}

.blob-5 {
    width: 280px;
    height: 280px;
    background: rgba(160,220,255,0.50);
    filter: blur(55px);
    bottom: 20px;
    left: 200px;
    animation: moveA 9s ease-in-out infinite alternate-reverse;
}

.blob-6 {
    width: 260px;
    height: 260px;
    background: rgba(15,25,55,0.12);
    filter: blur(52px);
    top: 35%;
    left: 42%;
    animation: moveB 6s ease-in-out infinite alternate-reverse;
}

@keyframes moveA {
    0%   { transform: translate(0px, 0px); }
    100% { transform: translate(80px, 60px); }
}
@keyframes moveB {
    0%   { transform: translate(0px, 0px); }
    100% { transform: translate(-70px, 50px); }
}
@keyframes moveC {
    0%   { transform: translate(0px, 0px); }
    100% { transform: translate(-60px, -70px); }
}
@keyframes moveD {
    0%   { transform: translate(0px, 0px); }
    100% { transform: translate(70px, -50px); }
}

/* Particle dots — hero section (same pattern as SMM page) */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary, #2563eb);
    animation: heroParticleFly linear infinite;
}
@keyframes heroParticleFly {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0.6; }
    100% { transform: translateY(-120px) scale(0.4); opacity: 0; }
}

/* Hero container — fully centered */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulseGreenDot 2s infinite ease-in-out;
}

/* HERO TITLE — Big bold centered */
.hero-title {
    font-size: clamp(58px, 9vw, 120px);
    line-height: 1.0;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    font-family: var(--font-sans);
    text-align: center;
}

.hero-title .line-1 {
    display: block;
    color: #0f1117;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    margin-bottom: 2px;
}

.hero-title .line-2 {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    margin-bottom: 2px;
}

.hero-title .line-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #0f1117;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* "Businesses" — Risevate blue, professional */
.hero-word-gradient {
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* The "7" — blue bold with small green dot on top-left, like reference */
.hero-seven {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    color: #2563eb;
    font-weight: 900;
    line-height: 1;
}

.seven-dot {
    width: 0.12em;
    height: 0.12em;
    min-width: 10px;
    min-height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: absolute;
    top: 0.08em;
    left: -0.05em;
    box-shadow: 0 0 8px rgba(16,185,129,0.6);
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(15px, 1.2vw, 17px);
    color: #6b7280;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-subtitle strong {
    color: #0f1117;
    font-weight: 700;
}

/* Action Buttons — centered row */
.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f1117;
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.hero-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.35);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0f1117;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(15,17,23,0.18);
    transition: all 0.3s ease;
}

.hero-btn-ghost:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37,99,235,0.05);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 2px;
    background: rgba(37,99,235,0.12);
    z-index: 3;
}
.scroll-line {
    width: 100%;
    height: 30%;
    background: var(--color-primary);
    animation: scrollAnim 2s infinite ease-in-out;
}

/* Hide old elements */
.logo-anim-canvas { display: none; }
.hero-overlay { display: none; }
.hero-tagline { display: none; }
.hero-metrics-panel { display: none; }
.hero-trust-bar { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; }
    .hero-title { letter-spacing: -0.03em; }
    .hero-title .line-3 { gap: 10px; }
    .blob-1 { width: 320px; height: 320px; }
    .blob-2 { width: 220px; height: 220px; }
    .blob-3 { display: none; }
}

@media (max-width: 480px) {
    .hero-btn-primary, .hero-btn-ghost { padding: 13px 24px; font-size: 14px; }
    .hero-title .line-3 { gap: 8px; }
}

.metric-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.metric-item { display: flex; gap: 14px; align-items: center; }
.metric-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.metric-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.metric-num { font-size: 28px; font-weight: 800; }
.metric-label { font-size: 12px; color: #6b7280; }
.metric-divider { width: 1px; height: 40px; background: var(--color-border-glass); }

.metric-chart-bar { margin-bottom: 16px; font-size: 13px; }
.metric-chart-bar:last-child { margin-bottom: 0; }
.chart-bar-label { display: flex; justify-content: space-between; color: var(--color-text-silver); margin-bottom: 6px; }
.chart-bar-track { height: 6px; background: rgba(37,99,235,0.08); border-radius: 100px; overflow: hidden; }
.chart-bar-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.reveal.visible .chart-bar-fill { transform: scaleX(1); }

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 2px;
    background: rgba(37,99,235,0.15);
    z-index: 3;
}
.scroll-line {
    width: 100%;
    height: 30%;
    background: var(--color-primary);
    animation: scrollAnim 2s infinite ease-in-out;
}

/* =========================================================================
   3. INFINITE TICKER MARQUEE
   ========================================================================= */
.logo-ticker-section {
    background: #eef3ff;
    border-top: 1px solid rgba(37,99,235,0.10);
    border-bottom: 1px solid rgba(37,99,235,0.10);
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-inner { display: inline-block; animation: tickerLoop 30s linear infinite; }
.ticker-item { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(15,17,23,0.65); }
.ticker-sep { margin: 0 24px; color: var(--color-primary); font-size: 16px; }

/* =========================================================================
   4. SERVICES SECTION
   ========================================================================= */
.services-section { padding: 120px 0; position: relative; background: #ffffff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }

.service-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card-v2:hover { 
    transform: translateY(-8px); 
    border-color: rgba(37, 99, 235, 0.3); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 25px rgba(37, 99, 235, 0.1); 
}

.scard-image { position: relative; height: 190px; border-radius: 12px; overflow: hidden; margin-bottom: 24px; }
.scard-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.service-card-v2:hover .scard-image img { transform: scale(1.08); }
.scard-image-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35)); }

.scard-number { position: absolute; top: 24px; right: 24px; font-size: 44px; font-weight: 900; opacity: 0.03; font-family: sans-serif; }
.scard-icon { color: var(--color-primary); margin-bottom: 16px; display: inline-block; }

.service-card-v2 h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.service-card-v2 p { font-size: 14px; color: var(--color-text-silver); line-height: 1.6; margin-bottom: 24px; }

.scard-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.scard-tags span { font-size: 11px; background: rgba(37,99,235,0.05); border: 1px solid rgba(37,99,235,0.12); padding: 4px 10px; border-radius: 6px; color: #6b7280; }

.scard-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-pure);
    text-decoration: none;
}
.scard-link svg { transition: transform 0.3s ease; }
.service-card-v2:hover .scard-link svg { transform: translateX(5px); color: var(--color-primary); }

/* =========================================================================
   🛠️ 5. STATS & WHY EVOSPHERE SECTION (Fixes Your Screenshot Issue)
   ========================================================================= */
.stats-section {
    padding: 120px 0;
    background: #eef3ff;
    border-top: 1px solid rgba(37,99,235,0.08);
    border-bottom: 1px solid rgba(37,99,235,0.08);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

/* Right Dashboard Grid Style */
.stat-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(20, 20, 27, 0.4);
    border: 1px solid rgba(0,0,0,0.07);
    padding: 40px 32px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(20, 20, 27, 0.6);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2), 0 0 20px rgba(37, 99, 235, 0.05);
}

.stat-num {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #0f1117;
}
.stat-num span {
    color: var(--color-primary);
    -webkit-text-fill-color: initial;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-silver);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Micro bar indicator inside cards */
.stat-bar {
    height: 4px;
    background: rgba(37,99,235,0.08);
    border-radius: 100px;
    overflow: hidden;
}
.stat-bar div {
    height: 100%;
    background: var(--color-primary);
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible .stat-bar div { transform: scaleX(1); }

/* =========================================================================
   6. PROCESS SECTION (Strategy to Revenue Glow)
   ========================================================================= */
.process-section { padding: 120px 0; background: #eef3ff; position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 60px; }

.process-step {
    background: #ffffff;
    border: 1px solid rgba(37,99,235,0.10);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-smooth);
    z-index: 1;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.process-step::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    opacity: 0; transition: var(--transition-smooth); z-index: -1;
}

.pstep-num {
    font-size: 56px; font-weight: 900;
    color: rgba(37,99,235,0.18);
    line-height: 1; margin-bottom: 20px; transition: var(--transition-smooth);
}

.process-step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--color-text-silver); line-height: 1.6; }

/* Process Glow Hover States */
.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--color-primary-glow);
}
.process-step:hover ::before { opacity: 1; }
.process-step:hover .pstep-num {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* =========================================================================
   7. PORTFOLIO SECTION — Redesigned
   ========================================================================= */
.portfolio-section {
    padding: 120px 0 140px;
    position: relative;
    background: #f0f5ff;
    overflow: hidden;
}

/* Subtle neo-blue background wash */
.portfolio-neo-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 30%, rgba(37,99,235,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 70%, rgba(59,130,246,0.06) 0%, transparent 55%);
    pointer-events: none;
}

/* Header */
.port-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
    flex-wrap: wrap;
}
.port-header-left { max-width: 560px; }
.port-main-title { margin-bottom: 12px; }
.port-title-accent {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.port-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.port-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    border: 1.5px solid rgba(37,99,235,0.3);
    padding: 12px 24px;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: rgba(37,99,235,0.04);
}
.port-view-all-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    transform: translateY(-2px);
}
.port-view-all-btn svg { transition: transform 0.3s ease; }
.port-view-all-btn:hover svg { transform: translateX(4px); }

/* Featured Large Card */
.port-featured {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(37,99,235,0.12);
    background: #fff;
    box-shadow: 0 8px 40px rgba(37,99,235,0.10);
    margin-bottom: 32px;
    min-height: 440px;
    transition: box-shadow 0.4s ease;
}
.port-featured:hover { box-shadow: 0 16px 60px rgba(37,99,235,0.18); }

.port-featured-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #1d3461 50%, #062f4f 100%);
    min-height: 380px;
}
/* When image loads correctly */
.port-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.port-featured:hover .port-featured-img { transform: scale(1.04); }

/* Image error fallback — keeps the gradient bg visible */
.port-img-fallback { background: linear-gradient(135deg, #1e1b4b 0%, #1d3461 50%, #062f4f 100%) !important; }

.port-featured-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(15,17,23,0.15) 100%);
    z-index: 2;
}
.port-category-chip {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: rgba(37,99,235,0.85);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.port-featured-content {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background: #fff;
}
.port-featured-number {
    font-size: 72px;
    font-weight: 900;
    color: rgba(37,99,235,0.06);
    line-height: 1;
    margin-bottom: -12px;
    letter-spacing: -0.04em;
}
.port-featured-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f1117;
    margin-bottom: 16px;
    line-height: 1.2;
}
.port-featured-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 32px;
}

/* Stats row inside featured card */
.port-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(37,99,235,0.08);
    border-bottom: 1px solid rgba(37,99,235,0.08);
}
.port-stat { text-align: center; }
.port-stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.port-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}
.port-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(37,99,235,0.12);
    flex-shrink: 0;
}
.port-case-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.port-case-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.45);
}
.port-case-btn svg { transition: transform 0.3s ease; }
.port-case-btn:hover svg { transform: translateX(4px); }

/* Small Cards Grid */
.port-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Mini Cards */
.port-mini-card {
    background: #fff;
    border: 1px solid rgba(37,99,235,0.10);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(37,99,235,0.06);
}
.port-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37,99,235,0.14);
    border-color: rgba(37,99,235,0.22);
}

.port-mini-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, #062f4f 0%, #000 100%);
}
.port-mini-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.port-mini-card:hover .port-mini-img { transform: scale(1.06); }

/* Fallback gradients for mini cards */
.port-img-fallback-mini { min-height: 210px; }
.fallback-beta { background: linear-gradient(135deg, #062f4f 0%, #000 100%) !important; }
.fallback-gamma { background: linear-gradient(135deg, #112233 0%, #14141b 100%) !important; }

.port-mini-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    z-index: 2;
}
.port-mini-chip {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    background: rgba(15,17,23,0.65);
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.port-mini-number {
    position: absolute;
    bottom: 14px; right: 16px;
    z-index: 4;
    font-size: 36px;
    font-weight: 900;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    letter-spacing: -0.03em;
}

.port-mini-content {
    padding: 24px 28px 28px;
}
.port-mini-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1117;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.port-mini-content p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}
.port-mini-metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.port-mini-badge {
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.15);
    padding: 4px 10px;
    border-radius: 6px;
}
.port-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.port-mini-link:hover { gap: 10px; }
.port-mini-link svg { transition: transform 0.3s ease; }
.port-mini-link:hover svg { transform: translateX(3px); }

/* CTA Card */
.port-cta-card {
    background: linear-gradient(135deg, #0f1117 0%, #1a1f2e 100%);
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    transition: all 0.4s ease;
}
.port-cta-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.5);
    box-shadow: 0 20px 60px rgba(37,99,235,0.25);
}
.port-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.port-cta-inner {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.port-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #60a5fa;
    display: block;
    margin-bottom: 16px;
}
.port-cta-title {
    font-size: 22px;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.port-cta-desc {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 28px;
}
.port-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f1117;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(59,130,246,0.4);
}
.port-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(59,130,246,0.55);
}
.port-cta-btn svg { transition: transform 0.3s ease; }
.port-cta-btn:hover svg { transform: translateX(4px); }

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .port-featured { grid-template-columns: 1fr; min-height: auto; }
    .port-featured-img-wrap { min-height: 300px; }
    .port-featured-content { padding: 36px 32px; }
    .port-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .port-header { flex-direction: column; align-items: flex-start; }
    .port-stats-row { gap: 16px; }
    .port-cards-grid { grid-template-columns: 1fr; }
    .port-mini-img-wrap { height: 180px; }
    .port-cta-card { min-height: 280px; }
}

/* =========================================================================
   8. TESTIMONIALS SECTION — Redesigned Premium
   ========================================================================= */
.testimonials-section {
    padding: 130px 0 140px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Soft neo-blue background blobs */
.testimonials-neo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.t-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.t-blob-1 {
    width: 600px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.t-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    bottom: -80px; left: -80px;
}

.testimonials-section .container { position: relative; z-index: 2; }

/* Header */
.t-header {
    text-align: center;
    margin-bottom: 48px;
}
.t-main-title { margin-bottom: 12px; }
.t-title-accent {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust Bar */
.t-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(37,99,235,0.04);
    border: 1px solid rgba(37,99,235,0.10);
    border-radius: 20px;
    padding: 24px 40px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
.t-trust-item { text-align: center; }
.t-trust-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.t-trust-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #9ca3af;
}
.t-trust-sep {
    width: 1px;
    height: 44px;
    background: rgba(37,99,235,0.12);
    flex-shrink: 0;
}

/* Cards Grid */
.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Base Card */
.t-card {
    background: #f8faff;
    border: 1px solid rgba(37,99,235,0.10);
    border-radius: 28px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 2px 16px rgba(37,99,235,0.05);
}
.t-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.22);
    box-shadow: 0 16px 48px rgba(37,99,235,0.12);
}

/* Featured Card */
.t-card-featured {
    background: linear-gradient(160deg, #eef3ff 0%, #f0f5ff 100%);
    border-color: rgba(37,99,235,0.25);
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
    position: relative;
}
.t-card-featured:hover {
    box-shadow: 0 20px 60px rgba(37,99,235,0.20);
    border-color: rgba(37,99,235,0.4);
}
.t-card-featured-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Card Top Row */
.t-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.t-quote-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(37,99,235,0.08);
    color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.t-quote-featured {
    background: rgba(37,99,235,0.12);
}
.t-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.t-stars-featured { font-size: 14px; }

/* Featured badge */
.t-featured-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2563eb;
    background: rgba(37,99,235,0.10);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}

/* Text */
.t-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 28px;
}
.t-text-featured {
    font-size: 15.5px;
    color: #1f2937;
}

/* Card Bottom */
.t-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(37,99,235,0.08);
    margin-top: auto;
}
.t-author-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}
.t-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f1117;
    margin-bottom: 2px;
}
.t-author-info span {
    font-size: 12px;
    color: #9ca3af;
}

/* Result Pill */
.t-result-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: #2563eb;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.15);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.t-result-pill-featured {
    background: rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.25);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .t-grid { grid-template-columns: 1fr 1fr; }
    .t-card-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
    .t-grid { grid-template-columns: 1fr; }
    .t-card-featured { grid-column: span 1; }
    .t-trust-bar { gap: 20px; padding: 20px 24px; }
    .t-trust-sep { display: none; }
}

/* =========================================================================
   9. CTA & FOOTER BLOCK
   ========================================================================= */
.cta-section-v2 { padding: 120px 0 60px 0; }
.cta-box {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 32px; padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
    display: flex; justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 400px; height: 400px; background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 640px; text-align: center;}
.cta-box h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.cta-box p { color: var(--color-text-silver); font-size: 16px; line-height: 1.6; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Quick Footer Safety Net */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(37,99,235,0.10);
    text-align: center;
    font-size: 14px;
    color: var(--color-text-silver);
}

/* =========================================================================
   10. SCROLL REVEAL DRIVEN MECHANICAL TRANSITIONS
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   11. KEYFRAMES FOR TRANSITIONS
   ========================================================================= */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0%, 100% { filter: drop-shadow(0 0 5px rgba(245,158,11,0.4)); } 50% { filter: drop-shadow(0 0 15px rgba(37,99,235,0.7)); } }
@keyframes pulseGreenDot { 0%, 100% { box-shadow: 0 0 10px #10b981; opacity: 0.8; } 50% { box-shadow: 0 0 20px #10b981; opacity: 1; } }
@keyframes tickerLoop { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
@keyframes scrollAnim { 0% { transform: translateY(-100%); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(200%); opacity: 0; } }

/* =========================================================================
   ⚡ 12. RESPONSIVE BREAKPOINTS (Mobile & Tablet Layout Fixes)
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-container, .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }
    .hero-section { padding-top: 120px; }
    .logo-anim-canvas { max-width: 600px; opacity: 0.5; }
    .hero-subtitle, .hero-actions, .hero-trust-bar, .stats-wrapper p { margin-left: auto; margin-right: auto; justify-content: center; }
    .hero-metrics-panel { justify-content: center; }
    .port-featured { min-height: auto; }
    .port-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-section { padding-top: 100px; padding-bottom: 60px; }
    .logo-anim-canvas { max-width: 100%; width: 130%; top: 45%; }
    .hero-actions, .cta-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .btn { width: 100%; justify-content: center; }
    
    .stat-card-grid { grid-template-columns: 1fr; gap: 16px; }
    .port-featured { grid-template-columns: 1fr; }
    .port-cards-grid { grid-template-columns: 1fr; }
    .port-featured-img-wrap { min-height: 240px; }
    .port-card { height: 320px; }
    .port-card-overlay { padding: 24px; }
    
    .metrics-card { padding: 24px; }
    .metric-row { flex-direction: column; gap: 20px; align-items: flex-start; }
    .metric-divider { width: 100%; height: 1px; }
    
    .cta-box { padding: 48px 24px; }
}
/* =========================================================================
   NEW SECTIONS — Values, Why Us, Service Index, Pricing
   ========================================================================= */

/* --- ABOUT SECTION BACKGROUND --- */
.about-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.about-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
.about-bg-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    top: -120px; right: -80px;
}
.about-bg-blob-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    bottom: -60px; left: -60px;
}

/* --- VALUES SECTION --- */
.values-section {
    padding: 100px 0;
    background: #eef3ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.value-card {
    background: #ffffff;
    border: 1.5px solid rgba(37,99,235,0.10);
    border-radius: 24px;
    padding: 36px 28px 28px;
    transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 20px rgba(37,99,235,0.06);
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 0 0 24px 24px;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37,99,235,0.28);
    box-shadow: 0 20px 48px rgba(37,99,235,0.14);
}
.value-card:hover::after { opacity: 1; }

.value-card-active {
    background: linear-gradient(160deg, #eef3ff 0%, #f0f5ff 100%);
    border-color: rgba(37,99,235,0.28);
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}
.value-card-active::after { opacity: 1; background: linear-gradient(90deg, #1d4ed8, #2563eb); }

/* Icon Box — uses CSS custom props per card */
.value-card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.value-card:hover .value-card-icon-box { transform: scale(1.08); }

/* Urdu/Arabic label above heading */
.value-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
    margin-bottom: 8px;
    font-family: serif;
}

.value-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f1117;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.value-card p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

/* Footer tag */
.value-card-footer { margin-top: auto; }
.value-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #2563eb;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 5px 12px;
    border-radius: 100px;
}

/* --- WHY SECTION --- */
.why-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 36px 32px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,0.2);
    box-shadow: 0 16px 48px rgba(37,99,235,0.08);
}

.why-card-highlight {
    background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(245,158,11,0.02));
    border-color: rgba(245,158,11,0.15);
}

.why-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f1117;
}

.why-card p {
    font-size: 14px;
    color: var(--color-text-silver);
    line-height: 1.65;
}

/* --- SERVICE INDEX SECTION --- */
.service-index-section {
    padding: 100px 0;
    background: #eef3ff;
}

.si-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.si-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 32px 28px 36px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.si-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.si-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.2);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.si-card:hover::after {
    transform: scaleX(1);
}

.si-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.si-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.si-card:hover .si-arrow-btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.si-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.si-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text-pure);
    letter-spacing: -0.01em;
}

.si-card p {
    font-size: 14px;
    color: var(--color-text-silver);
    line-height: 1.65;
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 100px 0 120px;
    background: #f0f4ff;
}

.pricing-cta-top {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-top-btn {
    background: linear-gradient(135deg, #2563eb, #2563eb);
    border-radius: 100px;
    padding: 14px 36px;
    font-size: 15px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.35);
}

.pricing-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,99,235,0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.pricing-card-inner {
    background: linear-gradient(160deg, #1a2a4a 0%, #0d1b35 50%, #0a0f1e 100%);
    border: 1px solid rgba(99,179,237,0.25);
    border-radius: 24px;
    padding: 40px 36px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(37,99,235,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.pricing-card:hover .pricing-card-inner {
    border-color: rgba(99,179,237,0.5);
    box-shadow: 0 24px 60px rgba(37,99,235,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.pricing-card-popular .pricing-card-inner {
    background: linear-gradient(160deg, #0d2a5e 0%, #1a3a7a 35%, #0d1b3e 70%, #090d1f 100%);
    border: 1.5px solid rgba(96,165,250,0.5);
    box-shadow: 0 0 0 1px rgba(37,99,235,0.3), 0 32px 80px rgba(37,99,235,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.pricing-card-elite .pricing-card-inner {
    background: linear-gradient(160deg, #2d1a00 0%, #3d2200 30%, #1f1408 65%, #0f0a00 100%);
    border: 1.5px solid rgba(251,191,36,0.45);
    box-shadow: 0 0 0 1px rgba(245,158,11,0.25), 0 32px 80px rgba(245,158,11,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
}

.pricing-popular-badge,
.pricing-best-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    white-space: nowrap;
}

.pricing-popular-badge {
    background: linear-gradient(135deg, #2563eb, #2563eb);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}

.pricing-best-badge {
    background: linear-gradient(135deg, #f59e0b, #2563eb);
    color: #fff;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}

.pricing-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-card-popular .pricing-header {
    border-bottom-color: rgba(96,165,250,0.2);
}

.pricing-card-elite .pricing-header {
    border-bottom-color: rgba(251,191,36,0.2);
}

.pricing-plan {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(180,200,255,0.75);
    margin-bottom: 12px;
}

.pricing-card-popular .pricing-plan { color: #7ec8ff; letter-spacing: 4px; }
.pricing-card-elite .pricing-plan { color: #fcd34d; letter-spacing: 4px; }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 700;
    color: rgba(200,220,255,0.8);
}

.pricing-card-popular .pricing-currency { color: #93c5fd; }
.pricing-card-elite .pricing-currency { color: #fbbf24; }

.pricing-amount {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.pricing-card-popular .pricing-amount { color: #ffffff; text-shadow: 0 0 30px rgba(96,165,250,0.4); }
.pricing-card-elite .pricing-amount { color: #ffffff; text-shadow: 0 0 30px rgba(251,191,36,0.4); }

.pricing-label {
    font-size: 13px;
    color: rgba(180,200,255,0.65);
    font-weight: 500;
}

.pricing-card-popular .pricing-label { color: rgba(147,197,253,0.8); }
.pricing-card-elite .pricing-label { color: rgba(252,211,77,0.75); }

.pricing-includes {
    font-size: 13px;
    color: rgba(180,200,255,0.6);
    margin-bottom: 16px;
    font-style: italic;
}

.pricing-card-popular .pricing-includes { color: rgba(147,197,253,0.75); }
.pricing-card-elite .pricing-includes { color: rgba(252,211,77,0.65); }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(220,230,255,0.9);
    line-height: 1.45;
    font-weight: 500;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #4ade80;
    filter: drop-shadow(0 0 4px rgba(74,222,128,0.4));
}

.pricing-card-popular .pricing-features li { color: rgba(220,235,255,0.92); }
.pricing-card-popular .pricing-features li svg { color: #60a5fa; filter: drop-shadow(0 0 4px rgba(96,165,250,0.5)); }
.pricing-card-elite .pricing-features li { color: rgba(255,245,220,0.9); }
.pricing-card-elite .pricing-features li svg { color: #fbbf24; filter: drop-shadow(0 0 4px rgba(251,191,36,0.5)); }

.pricing-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(99,179,237,0.12);
    border: 1px solid rgba(99,179,237,0.3);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.pricing-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.pricing-btn-popular {
    background: linear-gradient(135deg, #2563eb, #2563eb);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.pricing-btn-popular:hover {
    box-shadow: 0 14px 40px rgba(37,99,235,0.55);
    transform: translateY(-3px);
}

.pricing-btn-elite {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

.pricing-btn-elite:hover {
    box-shadow: 0 14px 40px rgba(245,158,11,0.45);
    transform: translateY(-3px);
}

/* =========================================================================
   RESPONSIVE — New sections
   ========================================================================= */
@media (max-width: 1100px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .si-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .why-grid { grid-template-columns: 1fr; }
    .si-grid { grid-template-columns: 1fr; }
    .value-card, .why-card { padding: 24px 20px; }
    .si-card { padding: 24px 20px 28px; }
    .pricing-card-inner { padding: 32px 24px; }
    .pricing-amount { font-size: 36px; }
}
/* =========================================================================
   ABOUT RISEVATE SECTION
   ========================================================================= */
.about-risevate-section {
    padding: 100px 0 60px;
    background: #eef3ff;
    position: relative;
}

.about-risevate-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.about-risevate-heading {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-top: 16px;
}

.about-gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-risevate-desc {
    font-size: 17px;
    color: var(--color-text-silver);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 540px;
}

.about-risevate-desc-sub {
    font-size: 15px;
    color: rgba(161,161,170,0.7);
    line-height: 1.7;
    max-width: 540px;
}

.about-risevate-desc strong {
    color: var(--color-text-pure);
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-risevate-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ── LIGHT THEME OVERRIDES ── */

/* Hero title */
.hero-title .line-1,
.hero-title .line-3 { color: #0f1117; }

/* "Businesses" gradient — blue only, professional */
.hero-word-gradient {
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Section titles dark */
.section-title { color: #0f1117; }
.section-desc  { color: #6b7280; }

/* Stats left section */
.stats-left .section-title { color: #0f1117; }
.stats-left p { color: #6b7280; }

/* Stat bar track */
.stat-bar { background: rgba(37,99,235,0.08) !important; }

/* scard-link color */
.scard-link { color: #0f1117 !important; }

/* hero-subtitle */
.hero-subtitle { color: #6b7280; }

/* hero-title gradient line */
.hero-title .line-2 { color: inherit; }

/* Trust bar */
.trust-label { color: #6b7280; }

/* metric-num */
.metric-num { color: #0f1117; }
.metric-label { color: #6b7280; }

/* portfolio header */
.portfolio-header-row .section-title { color: #0f1117; }

/* section-badge ensure readable on light */
.section-badge { color: #1d4ed8; background: rgba(37,99,235,0.07); }

/* why-card highlight */
.why-card-highlight {
    background: linear-gradient(135deg, rgba(245,158,11,0.04), rgba(245,158,11,0.01));
    border-color: rgba(245,158,11,0.15);
}

/* tcard strong name */
.tcard-header strong { color: #0f1117; }

/* port overlay text */
.port-card h3 { color: #ffffff; }
.port-card p  { color: rgba(255,255,255,0.8); }

/* process-step text */
.process-step h3 { color: #0f1117; }
.process-step p  { color: #6b7280; }

/* about-risevate heading */
.about-risevate-heading { color: #0f1117; }
.about-risevate-desc    { color: #6b7280; }
.about-risevate-desc-sub { color: #9ca3af; }

/* si-card text */
.si-card h3 { color: #0f1117; }
.si-card p  { color: #6b7280; }
.si-num     { color: rgba(37,99,235,0.35); }

/* =========================================================================
   MARKETING SERVICES SECTION
   ========================================================================= */
.marketing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f4ff 0%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.marketing-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.mkt-card {
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.3s;
}

.mkt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

.mkt-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}
.mkt-glow-1 { background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%); }
.mkt-glow-2 { background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%); }
.mkt-glow-3 { background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); }

.mkt-duration-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(0,0,0,0.05);
    color: #6b7280;
    margin-bottom: 20px;
    width: fit-content;
}

.mkt-duration-popular { background: rgba(37,99,235,0.1); color: #2563eb; }
.mkt-duration-elite   { background: rgba(139,92,246,0.1); color: #7c3aed; }

.mkt-popular-ribbon,
.mkt-elite-ribbon {
    position: absolute;
    top: 20px;
    right: -32px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 44px;
    transform: rotate(45deg);
}

.mkt-elite-ribbon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.mkt-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.mkt-plan-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f1117;
    margin-bottom: 8px;
}

.mkt-plan-sub {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 24px;
}

.mkt-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mkt-currency {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
}

.mkt-amount {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f1117;
}

.mkt-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.mkt-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.mkt-features li svg { flex-shrink: 0; }

.mkt-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.mkt-btn-sprint {
    background: rgba(245,158,11,0.1);
    color: #d97706;
    border: 1.5px solid rgba(245,158,11,0.3);
}
.mkt-btn-sprint:hover { background: #f59e0b; color: #fff; border-color: #f59e0b; }

.mkt-btn-accelerate {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.mkt-btn-accelerate:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.4); }

.mkt-btn-dominate {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    color: #fff;
    box-shadow: 0 8px 24px rgba(109,40,217,0.3);
}
.mkt-btn-dominate:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(109,40,217,0.4); }

.mkt-card-popular {
    border-color: rgba(37,99,235,0.25);
    box-shadow: 0 12px 40px rgba(37,99,235,0.1);
    transform: translateY(-8px);
}
.mkt-card-popular:hover { transform: translateY(-14px); }

.mkt-card-elite {
    border-color: rgba(139,92,246,0.25);
}


/* =========================================================================
   SOCIAL MEDIA MANAGEMENT SECTION
   ========================================================================= */
.smm-section {
    padding: 100px 0 120px;
    background: #0f1117;
    position: relative;
    overflow: hidden;
}

.smm-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.1) 0%, transparent 55%);
    pointer-events: none;
}

.smm-section .section-title { color: #f9fafb; }
.smm-section .section-desc  { color: #9ca3af; }

.smm-badge {
    background: rgba(37,99,235,0.15);
    color: #60a5fa;
    border: 1px solid rgba(37,99,235,0.2);
}

.smm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.smm-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.3s, border-color 0.3s, box-shadow 0.35s;
    backdrop-filter: blur(8px);
}

.smm-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.smm-tier-indicator {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}
.smm-tier-std   { background: linear-gradient(90deg, #6b7280, #9ca3af); }
.smm-tier-elite { background: linear-gradient(90deg, #1d4ed8, #3b82f6); }
.smm-tier-pro   { background: linear-gradient(90deg, #d97706, #f59e0b); }

.smm-card-featured {
    border-color: rgba(37,99,235,0.35);
    background: rgba(37,99,235,0.07);
    box-shadow: 0 16px 50px rgba(37,99,235,0.15);
}

.smm-card-pro {
    border-color: rgba(245,158,11,0.25);
    background: rgba(245,158,11,0.04);
}

.smm-featured-label,
.smm-pro-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.2);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}

.smm-pro-label {
    color: #f59e0b;
    background: rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.2);
}

.smm-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.smm-plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.smm-icon-std   { background: rgba(107,114,128,0.15); color: #9ca3af; }
.smm-icon-elite { background: rgba(37,99,235,0.2);    color: #60a5fa; }
.smm-icon-pro   { background: rgba(245,158,11,0.15);  color: #f59e0b; }

.smm-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 4px;
}
.smm-elite-name { color: #93c5fd; }
.smm-pro-name   { color: #fcd34d; }

.smm-plan-tagline {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.smm-price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.smm-currency { font-size: 13px; font-weight: 700; color: #6b7280; }
.smm-amount   { font-size: 40px; font-weight: 800; color: #f9fafb; letter-spacing: -0.03em; }
.smm-period   { font-size: 14px; color: #6b7280; margin-left: 2px; }

.smm-currency-elite { color: #60a5fa; }
.smm-amount-elite   { color: #eff6ff; }
.smm-currency-pro   { color: #f59e0b; }
.smm-amount-pro     { color: #fef3c7; }

.smm-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 20px;
}
.smm-divider-elite { background: rgba(37,99,235,0.2); }
.smm-divider-pro   { background: rgba(245,158,11,0.2); }

.smm-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
}

.smm-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #d1d5db;
    font-weight: 500;
}
.smm-features li svg { flex-shrink: 0; }

.smm-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
}

.smm-btn-std {
    background: rgba(255,255,255,0.07);
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.12);
}
.smm-btn-std:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); }

.smm-btn-elite {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.smm-btn-elite:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.5); }

.smm-btn-pro {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #0f1117;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.smm-btn-pro:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,0.45); }


/* =========================================================================
   RESPONSIVE — Marketing & SMM
   ========================================================================= */
@media (max-width: 1024px) {
    .marketing-grid,
    .smm-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mkt-card-popular { transform: none; }
}

@media (max-width: 640px) {
    .marketing-grid,
    .smm-grid {
        grid-template-columns: 1fr;
    }
    .mkt-card-popular { transform: none; }
    .mkt-card-popular:hover { transform: translateY(-6px); }
}