
/* ═══════════════════════════════════════════════════════
   SUPERSHOP POS SOFTWARE PAGE — DreamSoft
   Theme-consistent with style.css, theme.css & about-us.css
   ═══════════════════════════════════════════════════════ */

/* ── Kicker ── */
.sp-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.sp-kicker--light {
    color: rgba(196, 181, 253, 0.9);
}

/* ── Sub Heading ── */
.sp-sub-heading {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-sub-heading::before {
    content: '';
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: var(--gradient-btn);
    flex-shrink: 0;
}

/* ── Shared Blobs ── */
.sp-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.sp-blob--left {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -200px;
    background: rgba(168, 85, 247, 0.12);
}

.sp-blob--right {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -220px;
    background: rgba(236, 72, 153, 0.10);
}

.sp-blob--center-left {
    width: 500px;
    height: 500px;
    top: 20%;
    left: -200px;
    background: rgba(225, 29, 72, 0.08);
}

.sp-blob--center-right {
    width: 600px;
    height: 600px;
    bottom: 10%;
    right: -200px;
    background: rgba(251, 146, 60, 0.08);
}

/* ═══════════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════════ */
.sp-hero {
    padding: 80px 0 100px;
}

.sp-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #0f172a;
}

.sp-hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 92%;
}

.sp-hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(67, 56, 202, 0.15);
}

.sp-btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
    animation: none !important;
}

.sp-btn-outline:hover {
    background: var(--gradient-btn) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 10px 20px -5px rgba(67, 56, 202, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════
   SECTION 2 — WHY SUPERSHOPS NEED A POS
   ═══════════════════════════════════════════════════════ */
.sp-why-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.sp-why-section .section-heading {
    margin-bottom: 50px;
}

.sp-why-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 8px;
}

.sp-why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.sp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sp-check-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    margin-top: 2px;
}

.sp-check-list h3 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.sp-check-list p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.sp-cta-inline {
    margin-top: 32px;
}

.sp-why-image {
    position: relative;
    position: sticky;
    top: 120px;
}

.sp-why-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease;
}

.sp-why-img:hover {
    transform: scale(1.02);
}

/* Float Badges */
.sp-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: sp-float 4s ease-in-out infinite;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.sp-float-badge--top {
    top: -20px;
    right: -15px;
    animation-delay: 0.3s;
}

.sp-float-badge--bottom {
    bottom: 20px;
    left: -20px;
    animation-delay: 1s;
}

.sp-float-badge--top-left {
    top: -20px;
    left: -15px;
    animation-delay: 0.5s;
}

@keyframes sp-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.sp-float-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
    flex-shrink: 0;
}

.sp-float-badge-value {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
    display: block;
    line-height: 1.2;
}

.sp-float-badge-label {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

/* ═══════════════════════════════════════════════════════
   SECTION 3 — FEATURES GRID
   ═══════════════════════════════════════════════════════ */
.sp-features-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.sp-features-header {
    max-width: 760px;
    margin: 0 auto 20px;
}

.sp-features-header .section-heading {
    margin-bottom: 14px;
}

.sp-features-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.sp-feature-card {
    background: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sp-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 20% 0%, rgba(139, 92, 246, 0.12), transparent 50%),
        radial-gradient(600px circle at 80% 100%, rgba(236, 72, 153, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.sp-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.sp-feature-card:hover::before {
    opacity: 1;
}

.sp-feature-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(236, 72, 153, 0.10));
    color: #7c3aed;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 22px -14px rgba(124, 58, 237, 0.5);
    transition: transform 0.3s ease;
}

.sp-feature-card:hover .sp-feature-card-icon {
    transform: scale(1.1);
}

.sp-feature-card h3 {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.sp-feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.sp-cta-center {
    text-align: center;
    margin-top: 45px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 4 — TIPS FOR CHOOSING POS
   ═══════════════════════════════════════════════════════ */
.sp-tips-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.sp-tips-section::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.04) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.sp-tips-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sp-tips-content .section-heading {
    margin-bottom: 28px;
}

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

.sp-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sp-tips-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(251, 146, 60, 0.08));
}

.sp-tips-list h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sp-tips-list p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.sp-tips-image {
    position: relative;
}

.sp-tips-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease;
}

.sp-tips-img:hover {
    transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════
   SECTION 5 — WHY DREAMSOFT (TRUST)
   ═══════════════════════════════════════════════════════ */
.sp-trust-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.sp-trust-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.sp-trust-header .section-heading {
    margin-bottom: 0;
}

.sp-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.sp-trust-block {
    background: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sp-trust-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 30% 0%, rgba(139, 92, 246, 0.08), transparent 50%),
        radial-gradient(600px circle at 70% 100%, rgba(236, 72, 153, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.sp-trust-block:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.sp-trust-block:hover::before {
    opacity: 1;
}

.sp-trust-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.sp-trust-block-emoji {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(236, 72, 153, 0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7c3aed;
}

.sp-trust-block-header h3 {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.sp-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.sp-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.sp-trust-list li svg {
    color: #7c3aed;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SECTION 6 — GROWTH
   ═══════════════════════════════════════════════════════ */
.sp-growth-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.sp-growth-section::before {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(34, 211, 238, 0.04) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.sp-growth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sp-growth-content .section-heading {
    margin-bottom: 18px;
}

.sp-growth-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

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

.sp-growth-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sp-growth-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(59, 130, 246, 0.1));
    box-shadow: 0 10px 22px -14px rgba(124, 58, 237, 0.45);
    flex-shrink: 0;
    margin-top: 1px;
}

.sp-growth-list p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.65;
}

.sp-growth-image {
    position: relative;
}

.sp-growth-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease;
}

.sp-growth-img:hover {
    transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════════
   SECTION 7 — CTA
   ═══════════════════════════════════════════════════════ */
.sp-banner-section {
    padding: 90px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.sp-gradient-banner {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 40%, #a855f7 70%, #ec4899 100%);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.3);
}

.sp-gradient-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 60%),
        radial-gradient(300px circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.sp-gradient-banner-heading {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.sp-gradient-banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.06rem;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.sp-gradient-banner-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.sp-btn-banner-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 10px;
    font-size: 1.05rem;
    background: #ffffff;
    color: #5b21b6;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sp-btn-banner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #4338ca;
}

.sp-btn-banner-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 10px;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sp-btn-banner-outline:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.sp-faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.sp-faq-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.sp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sp-faq-item {
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sp-faq-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.sp-faq-item.is-open {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.sp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.sp-faq-question:hover {
    color: #7c3aed;
}

.sp-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.sp-faq-item.is-open .sp-faq-chevron {
    transform: rotate(180deg);
    color: #7c3aed;
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.sp-faq-item.is-open .sp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.sp-faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.sp-cta-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.sp-cta-section::before {
    content: '';
    position: absolute;
    right: -15%;
    top: -30%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    filter: blur(80px);
    pointer-events: none;
}

.sp-cta-section::after {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.sp-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.sp-cta-content {
    flex: 1;
    max-width: 600px;
}

.sp-cta-heading {
    color: var(--text-dark);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sp-cta-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.sp-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.sp-cta-list-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
    margin-top: 2px;
}

.sp-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.sp-btn-cta-outline:hover {
    background: var(--gradient-btn);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(67, 56, 202, 0.4);
}

/* CTA Visual Ring */
.sp-cta-visual {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.sp-cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(124, 58, 237, 0.15);
}

.sp-cta-ring--outer {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: sp-spin 30s linear infinite;
}

.sp-cta-ring--inner {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(236, 72, 153, 0.18);
    animation: sp-spin 20s linear infinite reverse;
}

@keyframes sp-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sp-cta-ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.sp-cta-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sp-cta-float {
    position: absolute;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 12px;
    color: #7c3aed;
    font-weight: 700;
    font-size: 0.82rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: sp-float 4s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sp-cta-float-icon {
    width: 18px;
    height: 18px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.16);
    flex-shrink: 0;
}

.sp-cta-section .sp-kicker--light {
    color: #7c3aed;
}

.sp-cta-float--1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.sp-cta-float--2 {
    bottom: 20px;
    left: 10px;
    animation-delay: 1.3s;
}

.sp-cta-float--3 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    animation-delay: 2.6s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-why-grid,
    .sp-tips-grid,
    .sp-growth-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .sp-hero-title {
        font-size: 2.2rem;
    }

    .sp-hero-description {
        max-width: 100%;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-why-image {
        position: static;
        order: -1;
    }

    .sp-tips-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-tips-image {
        order: -1;
    }

    .sp-growth-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-growth-image {
        order: -1;
    }

    .sp-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .sp-cta-actions {
        justify-content: center;
    }

    .sp-cta-list {
        text-align: left;
    }

    .sp-cta-visual {
        width: 220px;
        height: 220px;
    }

    .sp-cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sp-hero {
        padding: 60px 0 70px;
    }

    .sp-features-grid {
        grid-template-columns: 1fr;
    }

    .sp-trust-grid {
        grid-template-columns: 1fr;
    }

    .sp-why-section,
    .sp-features-section,
    .sp-tips-section,
    .sp-trust-section,
    .sp-growth-section,
    .sp-banner-section,
    .sp-faq-section {
        padding: 70px 0;
    }

    .sp-cta-section {
        padding: 60px 0;
    }

    .sp-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .sp-gradient-banner {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .sp-gradient-banner-heading {
        font-size: 2rem;
    }

    .sp-gradient-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .sp-gradient-banner-actions .btn,
    .sp-cta-actions .btn,
    .sp-cta-actions .sp-btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sp-hero-title {
        font-size: 1.8rem;
    }

    .sp-gradient-banner {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .sp-gradient-banner-heading {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .sp-float-badge {
        display: none;
    }

    .sp-cta-visual {
        display: none;
    }
}