:root {
    --sp-primary: #2CBCB6;
    --sp-primary-rgb: 44, 188, 182;
    --sp-dark: #1B2A4A;
    --sp-dark-rgb: 27, 42, 74;
    --sp-navy: #1B2A4A;
    --sp-secondary: #ff6692;
    --sp-success: #36c76c;
    --sp-cyan: #2CBCB6;
    --sp-teal: #2CBCB6;
    --sp-warning: #F8C20A;
    --sp-light-gray: #f6f7f9;
    --sp-medium-gray: #526b7a;
    --sp-text: #5a6a85;
    --sp-text-heading: #1B2A4A;
    --sp-border: #e0e6eb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    color: var(--sp-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--sp-text-heading);
    font-weight: 700;
}

a { text-decoration: none; transition: all 0.3s ease; }

.text-primary-sp { color: var(--sp-primary) !important; }
.bg-primary-sp { background: var(--sp-primary) !important; }
.bg-dark-sp { background: var(--sp-dark) !important; }
.bg-light-sp { background: var(--sp-light-gray) !important; }

/* ===== NAVBAR ===== */
.navbar-sp {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sp-border);
    padding: 16px 0;
    transition: all 0.3s ease;
    z-index: 1050;
}
.navbar-sp.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-sp .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--sp-text-heading);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.navbar-sp .nav-link:hover,
.navbar-sp .nav-link.active {
    color: var(--sp-primary);
    background: rgba(var(--sp-primary-rgb), 0.06);
}
.logo-img { height: 38px; width: auto; }
.logo-img-white { height: 34px; width: auto; }

/* ===== BUTTONS ===== */
.btn-sp-primary {
    background: var(--sp-primary);
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    border: 2px solid var(--sp-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-sp-primary:hover {
    background: #24a5a0;
    border-color: #24a5a0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--sp-primary-rgb), 0.35);
}
.btn-sp-outline {
    background: transparent;
    color: var(--sp-primary);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    border: 2px solid var(--sp-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-sp-outline:hover {
    background: var(--sp-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--sp-primary-rgb), 0.35);
}
.btn-sp-dark {
    background: var(--sp-dark);
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    border: 2px solid var(--sp-dark);
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-sp-dark:hover {
    background: #132d4a;
    border-color: #132d4a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--sp-dark-rgb), 0.35);
}
.btn-sp-white {
    background: #fff;
    color: var(--sp-primary);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    border: 2px solid #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-sp-white:hover {
    background: rgba(255,255,255,0.9);
    color: var(--sp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--sp-light-gray) 0%, #eef1f8 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(var(--sp-primary-rgb), 0.04);
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(var(--sp-primary-rgb), 0.03);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(var(--sp-primary-rgb), 0.08);
    color: var(--sp-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--sp-text);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}
.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sp-primary);
    line-height: 1;
}
.hero-stat-label {
    font-size: 14px;
    color: var(--sp-medium-gray);
    font-weight: 500;
    margin-top: 4px;
}
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--sp-border);
    transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}
.hero-card h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.hero-card p {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--sp-medium-gray);
}

/* ===== SECTION HELPERS ===== */
.section-padding { padding: 100px 0; }
.section-header {
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(var(--sp-primary-rgb), 0.08);
    color: var(--sp-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--sp-text);
    line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sp-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    border-color: rgba(var(--sp-primary-rgb), 0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}
.service-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--sp-text);
    margin-bottom: 0;
}

/* ===== INVESTMENT SECTION ===== */
.investment-section {
    background: var(--sp-dark);
    position: relative;
    overflow: hidden;
}
.investment-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(var(--sp-primary-rgb), 0.08);
}
.investment-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}
.investment-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.investment-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sp-primary);
    line-height: 1;
    margin-bottom: 4px;
}
.investment-versus {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}
.investment-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-top: 8px;
}

/* ===== PRICING ===== */
.pricing-card {
    background: #fff;
    border: 2px solid var(--sp-border);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--sp-primary);
    box-shadow: 0 20px 60px rgba(var(--sp-primary-rgb), 0.15);
    transform: scale(1.03);
}
.pricing-card:hover {
    border-color: var(--sp-primary);
    box-shadow: 0 16px 48px rgba(var(--sp-primary-rgb), 0.12);
}
.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sp-primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-desc {
    font-size: 14px;
    color: var(--sp-text);
    margin-bottom: 24px;
}
.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sp-text-heading);
    line-height: 1;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--sp-text);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i {
    color: var(--sp-success);
    font-size: 14px;
    flex-shrink: 0;
}
.pricing-features li.disabled {
    color: #b0bec5;
}
.pricing-features li.disabled i {
    color: #ccc;
}

/* ===== PROCESS ===== */
.process-step {
    text-align: center;
    position: relative;
}
.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(var(--sp-primary-rgb), 0.08);
    color: var(--sp-primary);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.process-step h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px;
    color: var(--sp-text);
    max-width: 260px;
    margin: 0 auto;
}
.process-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--sp-border) 0, var(--sp-border) 8px, transparent 8px, transparent 16px);
}

/* ===== PERSONAS ===== */
.persona-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}
.persona-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.persona-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}
.persona-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.persona-role {
    font-size: 13px;
    color: var(--sp-primary);
    font-weight: 600;
    margin-bottom: 12px;
}
.persona-card p {
    font-size: 14px;
    color: var(--sp-text);
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-card {
    text-align: center;
    transition: all 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    position: relative;
}
.team-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.team-role {
    font-size: 14px;
    color: var(--sp-primary);
    font-weight: 600;
    margin-bottom: 12px;
}
.team-card p {
    font-size: 14px;
    color: var(--sp-text);
    max-width: 300px;
    margin: 0 auto 16px;
}
.team-socials { display: flex; gap: 12px; justify-content: center; }
.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--sp-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-medium-gray);
    font-size: 14px;
    transition: all 0.3s ease;
}
.team-socials a:hover {
    background: var(--sp-primary);
    color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.testimonial-stars {
    color: var(--sp-warning);
    margin-bottom: 16px;
    font-size: 14px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--sp-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--sp-text-heading);
    line-height: 1.2;
}
.testimonial-company {
    font-size: 13px;
    color: var(--sp-text);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--sp-light-gray);
}
.contact-info-card {
    background: var(--sp-primary);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.form-control:focus, .form-select:focus {
    border-color: var(--sp-primary);
    box-shadow: 0 0 0 3px rgba(var(--sp-primary-rgb), 0.12);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--sp-dark) 0%, #243656 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

/* ===== FOOTER ===== */
.footer-sp {
    background: var(--sp-dark);
    padding: 80px 0 0;
}
.footer-sp a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-sp a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 60px;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6) !important;
    font-size: 16px;
    transition: all 0.3s ease;
}
.footer-social-icon:hover {
    background: var(--sp-primary);
    color: #fff !important;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sp-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(var(--sp-primary-rgb), 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
    cursor: pointer;
    border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); background: #24a5a0; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-hero {
    background: linear-gradient(135deg, var(--sp-light-gray) 0%, #eef1f8 100%);
    padding: 140px 0 80px;
}
.service-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 24px;
}
.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}
.feature-list-item i {
    color: var(--sp-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== ADVISOR CTA BANNER ===== */
.advisor-cta-section {
    background: linear-gradient(135deg, var(--sp-primary) 0%, #1fa8a2 100%);
    position: relative;
    overflow: hidden;
}
.advisor-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .section-title { font-size: 2rem; }
    .pricing-card.featured { transform: none; }
    .hero-card-grid { display: none; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat-value { font-size: 1.5rem; }
    .section-padding { padding: 60px 0; }
    .process-connector { display: none; }
}
