/* SafePay — Futuristic Payment Gateway Theme (homepage) */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=JetBrains+Mono:wght@400;500&display=swap');

.sp-homepage {
    --sp-bg: #f5f8fc;
    --sp-bg-elevated: #ffffff;
    --sp-surface: rgba(255, 255, 255, 0.92);
    --sp-cyan: var(--primary-color, #0c56db);
    --sp-cyan-dim: rgba(12, 86, 219, 0.35);
    --sp-violet: #6366f1;
    --sp-magenta: #8b5cf6;
    --sp-emerald: #059669;
    --sp-text: #0f172a;
    --sp-text-muted: #64748b;
    --sp-border: rgba(12, 86, 219, 0.12);
    --sp-glow: 0 12px 48px rgba(12, 86, 219, 0.12);
    --sp-radius: 20px;
    --sp-font-display: 'Syne', sans-serif;
    --sp-font-body: 'DM Sans', sans-serif;
    --sp-font-mono: 'JetBrains Mono', monospace;
    background: var(--sp-bg) !important;
    color: var(--sp-text);
    font-family: var(--sp-font-body);
    overflow-x: hidden;
}

.sp-homepage h1, .sp-homepage h2, .sp-homepage h3,
.sp-homepage h4, .sp-homepage .section-title, .sp-homepage .banner-title {
    font-family: var(--sp-font-display);
    letter-spacing: -0.02em;
}

/* ─── Header ─── */
.sp-homepage .header-section {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--sp-border);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.sp-homepage .header-section.scrolled {
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.sp-homepage .header-bottom-area {
    padding: 12px 0 !important;
}

.sp-homepage .navbar-nav.main-menu > li > a,
.sp-homepage .has-sub {
    color: var(--sp-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.sp-homepage .navbar-nav.main-menu > li > a:hover {
    color: var(--sp-cyan) !important;
}

.sp-homepage .sub-menu,
body.glass-theme .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--sp-radius, 10px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.sp-homepage .btn--base {
    background: linear-gradient(135deg, var(--sp-cyan), var(--sp-violet)) !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 600;
    color: #fff !important;
    box-shadow: 0 4px 24px rgba(12, 86, 219, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sp-homepage .btn--base:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(12, 86, 219, 0.35);
    color: #fff !important;
}

.sp-homepage .help-btn {
    color: var(--sp-cyan) !important;
    border: 1px solid var(--sp-border);
    border-radius: 10px;
    padding: 8px 16px;
}

/* ─── Hero ─── */
.sp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: transparent !important;
}

.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 85% 35%, rgba(167, 243, 208, 0.45), transparent),
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(12, 86, 219, 0.08), transparent),
        radial-gradient(ellipse 50% 40% at 10% 70%, rgba(99, 102, 241, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
}

.sp-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.sp-hero__blob--mint {
    width: 420px;
    height: 420px;
    top: 8%;
    right: 5%;
    background: rgba(134, 239, 172, 0.35);
    animation: sp-blob-drift 14s ease-in-out infinite;
}

.sp-hero__blob--blue {
    width: 320px;
    height: 320px;
    bottom: 10%;
    right: 25%;
    background: rgba(147, 197, 253, 0.25);
    animation: sp-blob-drift 18s ease-in-out infinite reverse;
}

@keyframes sp-blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 16px) scale(1.06); }
}

.sp-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(12, 86, 219, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 86, 219, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    z-index: 0;
}

.sp-hero .container {
    position: relative;
    z-index: 2;
}

.sp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.sp-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sp-emerald);
    border-radius: 50%;
    animation: sp-pulse 2s ease infinite;
    box-shadow: 0 0 12px var(--sp-emerald);
}

@keyframes sp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.sp-hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 0%, var(--sp-cyan) 55%, var(--sp-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--sp-text-muted);
    max-width: 520px;
    margin-bottom: 36px;
}

.sp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.sp-btn--primary {
    background: linear-gradient(135deg, var(--sp-cyan), #1d4ed8);
    color: #ffffff !important;
    box-shadow: 0 8px 32px rgba(12, 86, 219, 0.3);
}

.sp-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(12, 86, 219, 0.4);
    color: #ffffff !important;
}

.sp-btn--ghost {
    background: var(--sp-surface);
    color: var(--sp-text) !important;
    border: 1px solid var(--sp-border);
    backdrop-filter: blur(12px);
}

.sp-btn--ghost:hover {
    border-color: var(--sp-cyan);
    color: var(--sp-cyan) !important;
}

.sp-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.sp-stat__value {
    font-family: var(--sp-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sp-cyan);
}

.sp-stat__label {
    font-size: 0.85rem;
    color: var(--sp-text-muted);
    margin-top: 4px;
}

/* Hero visual — layered app mockups */
.sp-hero-visual {
    position: relative;
    min-height: 520px;
    max-width: 520px;
    margin: 0 auto;
    padding: 24px 12px 40px;
}

.sp-hero-visual__glow {
    position: absolute;
    width: 88%;
    height: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    background: radial-gradient(circle, rgba(187, 247, 208, 0.55) 0%, rgba(187, 247, 208, 0) 68%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.sp-hero-visual__phone {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    width: 72%;
    max-width: 340px;
    animation: sp-phone-float 7s ease-in-out infinite;
}

.sp-hero-visual__phone img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 48px rgba(15, 23, 42, 0.18));
}

.sp-hero-visual__card {
    position: absolute;
    z-index: 4;
    margin: 0;
    transition: transform 0.4s ease;
}

.sp-hero-visual__card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(15, 23, 42, 0.06);
}

.sp-hero-visual__card--balance {
    top: 0;
    right: -4%;
    width: 52%;
    max-width: 220px;
    animation: sp-card-float-a 8s ease-in-out infinite;
}

.sp-hero-visual__card--transactions {
    bottom: 4%;
    left: -6%;
    width: 58%;
    max-width: 260px;
    animation: sp-card-float-b 9s ease-in-out infinite;
}

.sp-hero-visual__chip {
    position: absolute;
    bottom: 18%;
    right: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #047857;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.15);
    animation: sp-chip-pop 5s ease-in-out infinite;
}

.sp-hero-visual__chip i {
    font-size: 1rem;
    color: #10b981;
}

@keyframes sp-phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes sp-card-float-a {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}

@keyframes sp-card-float-b {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

@keyframes sp-chip-pop {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 1; }
}

@media (max-width: 991px) {
    .sp-hero-visual {
        min-height: 440px;
        max-width: 400px;
        margin-bottom: 8px;
    }

    .sp-hero-visual__card--balance {
        right: 0;
        width: 48%;
    }

    .sp-hero-visual__card--transactions {
        left: 0;
        width: 52%;
    }

    .sp-hero-visual__chip {
        right: 4%;
        font-size: 0.72rem;
        padding: 8px 12px;
    }
}

@media (max-width: 575px) {
    .sp-hero-visual {
        min-height: 380px;
        padding-bottom: 24px;
    }

    .sp-hero-visual__phone {
        width: 78%;
    }

    .sp-hero-visual__card--balance {
        top: 4%;
        width: 46%;
    }

    .sp-hero-visual__card--transactions {
        bottom: 0;
        width: 50%;
    }
}

/* ─── Section headers (global) ─── */
.sp-homepage .section-header {
    margin-bottom: 56px;
}

.sp-homepage .section-sub-titel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(12, 86, 219, 0.08);
    border: 1px solid var(--sp-border);
    border-radius: 100px;
    color: var(--sp-cyan) !important;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sp-homepage .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--sp-text) !important;
    margin-bottom: 16px;
}

.sp-homepage .section-header p {
    color: var(--sp-text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ─── How it works ─── */
.sp-homepage .how-it-work-section {
    background: var(--sp-bg) !important;
    padding: 100px 0 !important;
}

.sp-homepage .how-it-works-item {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 32px 24px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sp-homepage .how-it-works-item:hover {
    transform: translateY(-8px);
    border-color: var(--sp-cyan-dim);
    box-shadow: var(--sp-glow);
}

.sp-homepage .how-it-works-icon {
    background: linear-gradient(135deg, var(--sp-cyan), var(--sp-violet)) !important;
    color: #ffffff !important;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sp-homepage .how-it-works-content .title {
    color: var(--sp-text) !important;
}

.sp-homepage .process-devider { display: none; }

/* ─── About ─── */
.sp-homepage .about-section {
    background: linear-gradient(180deg, var(--sp-bg) 0%, var(--sp-bg-elevated) 100%) !important;
    padding: 100px 0 !important;
}

.sp-homepage .about-thumb img {
    border-radius: var(--sp-radius);
    border: 1px solid var(--sp-border);
    box-shadow: var(--sp-glow);
}

.sp-homepage .about-content-item {
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.sp-homepage .about-content-item:hover {
    border-color: var(--sp-cyan-dim);
}

.sp-homepage .icon-area.active,
.sp-homepage .icon-area {
    background: linear-gradient(135deg, var(--sp-cyan), var(--sp-violet)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.sp-homepage .icon-area i {
    color: #ffffff !important;
}

/* ─── Security ─── */
.sp-homepage .security-section {
    padding: 100px 0 !important;
}

.sp-homepage .security-item {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 36px 28px;
    height: 100%;
    transition: all 0.35s ease;
}

.sp-homepage .security-item:hover {
    border-color: var(--sp-cyan);
    box-shadow: 0 12px 40px rgba(12, 86, 219, 0.12);
    transform: translateY(-6px);
}

.sp-homepage .security-item .icon {
    background: rgba(12, 86, 219, 0.1) !important;
    color: var(--sp-cyan) !important;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.sp-homepage .security-content .title { color: var(--sp-text) !important; }
.sp-homepage .security-content p { color: var(--sp-text-muted); }

/* ─── Choose us ─── */
.sp-homepage .choose-us-section {
    background: var(--sp-bg-elevated) !important;
    padding: 100px 0 !important;
}

.sp-homepage .choose-us-item {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
}

.sp-homepage .choose-us-item:hover {
    border-color: var(--sp-violet);
    box-shadow: 0 0 48px rgba(139, 92, 246, 0.15);
}

.sp-homepage .choose-us-item .icon-area {
    background: linear-gradient(135deg, var(--sp-cyan), var(--sp-violet)) !important;
    border-color: transparent !important;
}

.sp-homepage .choose-us-item .icon-area i {
    color: #ffffff !important;
    font-size: 2rem;
}

.sp-homepage .choose-badge {
    background: linear-gradient(135deg, var(--sp-violet), var(--sp-magenta)) !important;
}

/* ─── Services / Features grid ─── */
.sp-homepage .sp-features-section--home {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, var(--sp-bg) 100%) !important;
}

.sp-homepage:not(.glass-theme) .sp-feature-card {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: 18px;
    padding: 28px 24px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.sp-homepage .sp-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--sp-cyan-dim);
    box-shadow: var(--sp-glow);
}

.sp-homepage .sp-feature-card__icon {
    background: linear-gradient(135deg, var(--sp-cyan), var(--sp-violet)) !important;
    color: #ffffff !important;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sp-homepage .sp-feature-card__body .title {
    color: var(--sp-text) !important;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--sp-font-display);
}

.sp-homepage .sp-feature-card__body p {
    color: var(--sp-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.sp-homepage:not(.glass-theme) .service-section:not(.sp-features-section--home) .service-item {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 40px 28px;
    height: 100%;
}

.sp-homepage .service-content .title { color: var(--sp-text) !important; }

/* ─── Testimonials ─── */
.sp-homepage .testimonial-section {
    background: linear-gradient(180deg, var(--sp-bg-elevated), var(--sp-bg)) !important;
    padding: 100px 0 !important;
}

.sp-homepage:not(.glass-theme) .testimonial-item {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 36px;
}

.sp-homepage .testimonial-title { color: var(--sp-text) !important; }
.sp-homepage .testimonial-icon-list li i { color: #fbbf24 !important; }

.sp-homepage .testimonial-item .user-area img.sp-testimonial-favicon,
.testimonial-item .user-area img.sp-testimonial-favicon {
    object-fit: contain;
    padding: 8px;
    background: rgba(12, 86, 219, 0.08);
    border: 1px solid rgba(12, 86, 219, 0.12);
}

/* ─── FAQ ─── */
.sp-homepage .faq-section {
    padding: 100px 0 !important;
}

.sp-homepage:not(.glass-theme) .faq-item {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border) !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

/* Glass theme provides thick frosted frame — do not override */
body.glass-theme.sp-homepage .sp-feature-card,
body.glass-theme.sp-homepage .service-section:not(.sp-features-section--home) .service-item,
body.glass-theme.sp-homepage .testimonial-item,
body.glass-theme.sp-homepage .faq-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.glass-theme.sp-homepage .sp-feature-card:hover {
    box-shadow: none !important;
}

.sp-homepage .faq-title {
    color: var(--sp-text) !important;
    padding: 20px 24px;
}

.sp-homepage .faq-content p {
    color: var(--sp-text-muted);
    padding: 0 24px 20px;
}

/* ─── Map / overview ─── */
.sp-homepage .overview-section,
.sp-homepage .map-section {
    padding: 100px 0 !important;
}

/* ─── Brand ─── */
.sp-homepage .brand-section {
    padding: 60px 0 !important;
    border-top: 1px solid var(--sp-border);
    border-bottom: 1px solid var(--sp-border);
}

.sp-homepage .brand-section .line-head .title {
    background: transparent;
}

/* ─── Contact strip ─── */
.sp-homepage .contact-section {
    padding: 100px 0 !important;
}

/* ─── Footer (use CMS background image like inner pages) ─── */
.sp-homepage .footer-section {
    border-top: 1px solid var(--sp-border);
    padding-top: 80px !important;
}

.sp-homepage .footer-section::after {
    opacity: 0.92;
    background-image: linear-gradient(
        270deg,
        rgba(248, 250, 255, 0.94) 40%,
        rgba(248, 250, 255, 0.94) 40%
    );
}

.sp-homepage .footer-widget .footer-content p,
.sp-homepage .footer-widget a {
    color: var(--sp-text-muted) !important;
}

.sp-homepage .footer-widget a:hover {
    color: var(--sp-cyan) !important;
}

.sp-homepage .footer-section .footer-list li a {
    color: var(--sp-text-muted) !important;
}

/* ─── Download app ─── */
.sp-homepage .download-app-section {
    background: linear-gradient(135deg, rgba(12, 86, 219, 0.06), rgba(99, 102, 241, 0.06)) !important;
    border-top: 1px solid var(--sp-border);
    border-bottom: 1px solid var(--sp-border);
}

/* ─── Scroll top & cookie ─── */
.sp-homepage .scroll-top {
    background: linear-gradient(135deg, var(--sp-cyan), var(--sp-violet)) !important;
    border: none;
}

.sp-homepage .cookie-main-wrapper {
    background: var(--sp-surface) !important;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    backdrop-filter: blur(20px);
}

/* ─── Reveal animation ─── */
.sp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sp-reveal.sp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Marquee trust strip ─── */
.sp-trust-marquee {
    padding: 24px 0;
    border-bottom: 1px solid var(--sp-border);
    overflow: hidden;
    background: transparent;
}

.sp-trust-marquee__track {
    display: flex;
    gap: 48px;
    animation: sp-marquee 28s linear infinite;
    width: max-content;
}

.sp-trust-marquee__item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--sp-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.sp-trust-marquee__item i {
    color: var(--sp-cyan);
}

@keyframes sp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* App store buttons in hero */
.sp-app-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sp-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.sp-app-btn:hover {
    border-color: var(--sp-cyan);
    box-shadow: 0 8px 24px rgba(12, 86, 219, 0.12);
}

.sp-app-btn .sub-title {
    font-size: 0.7rem;
    color: var(--sp-text-muted);
    display: block;
}

.sp-app-btn .title {
    font-size: 0.95rem;
    color: var(--sp-text);
    font-weight: 600;
    margin: 0;
}

.sp-app-btn img {
    width: 28px;
    height: auto;
}

/* Hide old banner bg */
.sp-homepage .banner-section.bg_img {
    background-image: none !important;
}

.sp-homepage .pt-120, .sp-homepage .ptb-120 {
    padding-top: 100px !important;
}

.sp-homepage .pb-120 {
    padding-bottom: 100px !important;
}

/* Light mode: paragraph text in cards/sections */
.sp-homepage p,
.sp-homepage .how-it-works-content p,
.sp-homepage .service-content p,
.sp-homepage .choose-us-item p,
.sp-homepage .about-content-area p {
    color: var(--sp-text-muted);
}

.sp-homepage .title-area .title,
.sp-homepage .title-area .sub-title {
    color: var(--sp-text);
}

.sp-homepage .cookie-main-wrapper p {
    color: var(--sp-text) !important;
}

.sp-homepage .cookie-main-wrapper a {
    color: var(--sp-cyan) !important;
}

/* Overview map — African country markers */
.sp-homepage .map-section .map-wrapper .mark-element.sp-map-marker {
    z-index: 2;
    white-space: nowrap;
}

.sp-homepage .map-section .map-wrapper .mark-element.sp-map-marker span {
    box-shadow: 0 4px 14px rgba(12, 86, 219, 0.12);
}
