/* ===================================================================
   STATIC PAGES — Shared Premium CSS
   Used by: About Us, Our Services, Privacy Policy,
            Terms of Service, Cookie Policy
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --sp-red:    #e31c25;
    --sp-navy:   #161E2D;
    --sp-gray:   #6b7280;
    --sp-light:  #f8f9fb;
    --sp-border: #eaedf2;
    --sp-accent: #1563df;
    --sp-radius: 16px;
    --sp-shadow: 0 8px 40px rgba(0,0,0,.08);
}

/* ── HERO BANNER ───────────────────────────────────────── */
.sp-hero {
    position: relative;
    padding: 110px 0 80px;
    background: linear-gradient(135deg, var(--sp-navy) 0%, #1e2d4d 60%, #0f1a2e 100%);
    overflow: hidden;
}

.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(227,28,37,.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(21,99,223,.22) 0%, transparent 55%);
    pointer-events: none;
}

/* Decorative grid lines on hero */
.sp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.sp-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.sp-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
    letter-spacing: .03em;
}

.sp-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .2s;
}

.sp-breadcrumb a:hover { color: #fff; }

.sp-breadcrumb .sep {
    width: 16px;
    height: 16px;
    opacity: .5;
}

.sp-hero-badge {
    display: inline-block;
    background: rgba(227,28,37,.2);
    border: 1px solid rgba(227,28,37,.4);
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.sp-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}

.sp-hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #e31c25, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin: 0;
}

/* Floating decorative orbs */
.sp-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: .35;
}

.sp-orb--1 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #e31c25, transparent);
    top: -80px; left: -80px;
}

.sp-orb--2 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, #1563df, transparent);
    bottom: -60px; right: -40px;
}


/* ── PAGE WRAPPER ──────────────────────────────────────── */
.sp-page {
    background: #fff;
}


/* ── SECTION BASE ──────────────────────────────────────── */
.sp-section {
    padding: 80px 0;
}

.sp-section--alt {
    background: var(--sp-light);
}

.sp-section--dark {
    background: var(--sp-navy);
    color: #fff;
}

/* Animated entry */
.sp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}

.sp-reveal.sp-visible {
    opacity: 1;
    transform: none;
}


/* ── SECTION LABEL + HEADING ───────────────────────────── */
.sp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sp-red);
    margin-bottom: 12px;
}

.sp-section--dark .sp-label {
    color: #ff6b6b;
}

.sp-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--sp-navy);
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -.02em;
}

.sp-section--dark .sp-heading { color: #fff; }

.sp-subheading {
    font-size: 16.5px;
    color: var(--sp-gray);
    line-height: 1.8;
    max-width: 620px;
    margin: 0;
}

.sp-section--dark .sp-subheading { color: rgba(255,255,255,.6); }


/* ── DIVIDER ───────────────────────────────────────────── */
.sp-divider {
    width: 48px;
    height: 3px;
    background: var(--sp-red);
    border-radius: 2px;
    margin: 16px 0 28px;
}

.text-center .sp-divider { margin-left: auto; margin-right: auto; }


/* ── STAT CARDS ────────────────────────────────────────── */
.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

@media (max-width: 991px) { .sp-stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .sp-stats-grid { grid-template-columns: 1fr 1fr; gap:16px; } }

.sp-stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: background .25s, transform .25s;
}

.sp-stat-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}

.sp-stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 40%, #aac4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    letter-spacing: .03em;
}


/* ── FEATURE / VALUE CARDS ─────────────────────────────── */
.sp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 52px;
}

@media (max-width: 991px) { .sp-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px)  { .sp-cards-grid { grid-template-columns: 1fr; } }

.sp-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 36px 30px;
    transition: box-shadow .3s, transform .3s;
    position: relative;
    overflow: hidden;
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--sp-red), var(--sp-accent));
    border-radius: 4px 0 0 4px;
    transition: height .35s ease;
}

.sp-card:hover::before { height: 100%; }

.sp-card:hover {
    box-shadow: var(--sp-shadow);
    transform: translateY(-6px);
}

.sp-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(227,28,37,.12), rgba(21,99,223,.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--sp-red);
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background .3s, color .3s;
}

.sp-card:hover .sp-card-icon {
    background: linear-gradient(135deg, var(--sp-red), #ff6b6b);
    color: #fff;
}

.sp-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--sp-navy);
    margin: 0 0 10px;
    line-height: 1.3;
}

.sp-card-text {
    font-size: 14.5px;
    color: var(--sp-gray);
    line-height: 1.78;
    margin: 0;
}


/* ── TEAM CARDS ────────────────────────────────────────── */
.sp-team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    margin-top: 52px;
}

@media (max-width: 991px) { .sp-team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px)  { .sp-team-grid { grid-template-columns: 1fr 1fr; gap:16px; } }

.sp-team-card {
    text-align: center;
}

.sp-team-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sp-team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sp-team-card:hover .sp-team-img-wrap img { transform: scale(1.06); }

.sp-team-socials {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    transition: bottom .3s ease;
}

.sp-team-card:hover .sp-team-socials { bottom: 14px; }

.sp-team-social-btn {
    width: 34px; height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-navy);
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
    transition: background .2s, color .2s;
}

.sp-team-social-btn:hover {
    background: var(--sp-red);
    color: #fff;
}

.sp-team-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--sp-navy);
    margin: 0 0 4px;
}

.sp-team-role {
    font-size: 13px;
    color: var(--sp-red);
    font-weight: 600;
}


/* ── LEGAL DOC LAYOUT ──────────────────────────────────── */
.sp-legal-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 991px) { .sp-legal-wrap { grid-template-columns: 1fr; } }

.sp-toc {
    position: sticky;
    top: 100px;
    background: var(--sp-light);
    border: 1px solid var(--sp-border);
    border-radius: 14px;
    padding: 24px 20px;
}

@media (max-width: 991px) { .sp-toc { position: static; } }

.sp-toc-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sp-gray);
    margin: 0 0 16px;
}

.sp-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-toc-list a {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--sp-gray);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
    line-height: 1.4;
}

.sp-toc-list a:hover,
.sp-toc-list a.active {
    background: rgba(227,28,37,.08);
    color: var(--sp-red);
    font-weight: 600;
}


/* ── LEGAL CONTENT ─────────────────────────────────────── */
.sp-legal-content {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.8;
}

.sp-legal-content section {
    scroll-margin-top: 100px;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--sp-border);
}

.sp-legal-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sp-legal-section-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sp-red);
    margin-bottom: 10px;
}

.sp-legal-h2 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--sp-navy);
    margin: 0 0 18px;
    line-height: 1.3;
}

.sp-legal-h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sp-navy);
    margin: 28px 0 10px;
}

.sp-legal-content p {
    margin: 0 0 16px;
}

.sp-legal-content ul,
.sp-legal-content ol {
    padding-left: 24px;
    margin: 0 0 16px;
}

.sp-legal-content li {
    margin-bottom: 8px;
}

.sp-legal-content a {
    color: var(--sp-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sp-legal-content a:hover { color: var(--sp-red); }

.sp-legal-highlight {
    background: linear-gradient(135deg, rgba(227,28,37,.06), rgba(21,99,223,.05));
    border-left: 3px solid var(--sp-red);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 14.5px;
}


/* ── META / LAST UPDATED ───────────────────────────────── */
.sp-legal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: var(--sp-light);
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 13.5px;
    color: var(--sp-gray);
}

.sp-legal-meta strong { color: var(--sp-navy); }

.sp-legal-meta .sp-dot {
    width: 4px; height: 4px;
    background: var(--sp-border);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ── SERVICES LIST LAYOUT ├───────────────────────────────── */
.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 36px;
    margin-top: 56px;
}

@media (max-width: 767px) { .sp-services-grid { grid-template-columns: 1fr; gap: 24px; } }

.sp-service-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 30px;
    transition: box-shadow .3s, transform .3s;
}

.sp-service-item:hover {
    box-shadow: var(--sp-shadow);
    transform: translateY(-5px);
}

.sp-service-icon {
    width: 60px; height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, #fff5f5, #eff6ff);
    color: var(--sp-red);
    transition: background .3s, color .3s, transform .3s;
}

.sp-service-item:hover .sp-service-icon {
    background: linear-gradient(135deg, var(--sp-red), #ff6b6b);
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
}

.sp-service-body {}

.sp-service-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--sp-navy);
    margin: 0 0 10px;
    line-height: 1.3;
}

.sp-service-desc {
    font-size: 14.5px;
    color: var(--sp-gray);
    line-height: 1.78;
    margin: 0 0 14px;
}

.sp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sp-red);
    text-decoration: none;
    transition: gap .2s;
}

.sp-service-link:hover {
    gap: 10px;
    color: var(--sp-red);
}


/* ── CTA BANNER ────────────────────────────────────────── */
.sp-cta {
    background: linear-gradient(135deg, var(--sp-navy) 0%, #1e3a6e 100%);
    border-radius: 20px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
}

.sp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(227,28,37,.2) 0%, transparent 65%);
    pointer-events: none;
}

.sp-cta-title {
    font-size: clamp(22px,3vw,34px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
}

.sp-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    margin: 0 0 32px;
    position: relative;
}

.sp-cta-btn {
    display: inline-block;
    background: var(--sp-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .25s, transform .2s, box-shadow .25s;
    position: relative;
}

.sp-cta-btn:hover {
    background: #c8161e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227,28,37,.4);
}

.sp-cta-btn--outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    margin-left: 16px;
}

.sp-cta-btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
    box-shadow: none;
}

@media (max-width: 576px) {
    .sp-cta { padding: 40px 24px; }
    .sp-cta-btn--outline { margin-left: 0; margin-top: 12px; }
}


/* ── ACCORDION (FAQ) ───────────────────────────────────── */
.sp-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.sp-acc-item {
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    overflow: hidden;
}

.sp-acc-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--sp-navy);
    transition: background .2s;
}

.sp-acc-trigger:hover { background: var(--sp-light); }

.sp-acc-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--sp-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .35s;
    font-size: 16px;
    color: var(--sp-navy);
}

.sp-acc-item.open .sp-acc-icon {
    background: var(--sp-red);
    color: #fff;
    transform: rotate(45deg);
}

.sp-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.sp-acc-body-inner {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--sp-gray);
    line-height: 1.8;
}


/* ── RESPONSIVE PADDING ADJUSTMENTS ───────────────────── */
@media (max-width: 991px) {
    .sp-hero  { padding: 90px 0 60px; }
    .sp-section { padding: 64px 0; }
    .sp-cta { padding: 48px 28px; }
}

@media (max-width: 576px) {
    .sp-hero { padding: 80px 0 52px; }
    .sp-section { padding: 52px 0; }
    .sp-hero-title { font-size: 28px; }
    .sp-heading { font-size: 22px; }
}
