/* ===============================================
   SIMPLIFIED FLOW + INSTAPULSE-STYLE LANDING PAGE
   =============================================== */

/* ============================================
   SHARED UTILITIES
   ============================================ */
.ip-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

.ip-section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.ip-gradient-text {
    background: linear-gradient(135deg, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ip-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
    border: none;
    cursor: pointer;
}

.ip-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.ip-btn-primary.ip-btn-lg {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.ip-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: #7C3AED;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid #7C3AED;
    cursor: pointer;
}

.ip-btn-outline:hover {
    background: #faf5ff;
    border-color: #6D28D9;
    color: #6D28D9;
    transform: translateY(-2px);
}

/* White variant for dark backgrounds (hero sections) */
.ip-hero .ip-btn-outline,
.ip-cta .ip-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.ip-hero .ip-btn-outline:hover,
.ip-cta .ip-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Fade-in animations */
.ip-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ip-fade-in.ip-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for grid children */
.ip-fade-in:nth-child(1) { transition-delay: 0s; }
.ip-fade-in:nth-child(2) { transition-delay: 0.1s; }
.ip-fade-in:nth-child(3) { transition-delay: 0.2s; }
.ip-fade-in:nth-child(4) { transition-delay: 0.3s; }
.ip-fade-in:nth-child(5) { transition-delay: 0.4s; }
.ip-fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Author avatar (shared) */
.ip-author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}


/* ============================================
   SECTION 1: HERO
   ============================================ */
.ip-hero {
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 40%, #ffffff 100%);
    padding: 40px 0 20px;
    text-align: center;
    overflow: hidden;
}

.ip-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.ip-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4b5563;
}

.ip-hero-stat i {
    color: #7C3AED;
    font-size: 1rem;
}

.ip-hero-stat strong {
    color: #1a1a2e;
    font-weight: 700;
}

.ip-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5563;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.ip-badge i {
    color: #7C3AED;
    font-size: 0.85rem;
}

.ip-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.ip-hero-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.ip-hero-cta {
    margin-bottom: 40px;
}

/* Marquee */
.ip-marquee {
    overflow: hidden;
    padding: 16px 0;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 12px;
    margin: 0 -20px;
}

.ip-marquee-track {
    display: flex;
    gap: 40px;
    animation: ipMarquee 30s linear infinite;
    width: max-content;
}

.ip-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7C3AED;
    white-space: nowrap;
}

.ip-marquee-item i {
    font-size: 0.85rem;
}

@keyframes ipMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   SECTION 2: STRUGGLING
   ============================================ */
.ip-struggling {
    padding: 80px 0;
    background: #fff;
}

.ip-struggling-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.ip-struggling .ip-section-title {
    text-align: left;
    font-size: 2.2rem;
}

.ip-struggling-desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ip-struggling-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ip-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.ip-feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ip-feature-item strong {
    color: #1a1a2e;
}

.ip-visual-card {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.ip-visual-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ip-visual-stat i {
    font-size: 1.5rem;
    color: #7C3AED;
    width: 40px;
    text-align: center;
}

.ip-visual-stat strong {
    display: block;
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.ip-visual-stat span {
    font-size: 0.85rem;
    color: #6b7280;
}


/* ============================================
   SECTION 3: SERVICES
   ============================================ */
.ip-services {
    padding: 80px 0;
    background: #f9fafb;
}

.ip-platform-section {
    margin-bottom: 48px;
}

.ip-platform-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.ip-platform-heading i {
    font-size: 1.4rem;
    color: #7C3AED;
}

.ip-platform-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: auto;
}

.ip-view-all {
    text-align: center;
    margin-top: 24px;
}

.ip-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff;
    -webkit-text-fill-color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ip-view-all-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.ip-view-all-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.ip-view-all-link:hover i {
    transform: translateX(4px);
}

.ip-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ip-service-card {
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ip-service-card:hover {
    border-color: #7C3AED;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
}

.ip-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.ip-service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-service-icon i {
    font-size: 22px;
    color: #7C3AED;
}

.ip-service-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.75rem;
}

.ip-service-rating i {
    color: #f59e0b;
    font-size: 0.7rem;
}

.ip-service-rating span {
    font-weight: 700;
    color: #374151;
    margin-left: 4px;
    font-size: 0.8rem;
}

.ip-service-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ip-service-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.ip-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.ip-service-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #7C3AED;
    background: #eef2ff;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ip-service-info {
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ip-service-info i {
    color: #10b981;
}

.ip-service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ip-service-card:hover .ip-service-cta {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}


/* ============================================
   SECTION 4: WHY WE ARE THE BEST
   ============================================ */
.ip-why-best {
    padding: 80px 0;
    background: #fff;
}

.ip-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ip-why-card {
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    transition: all 0.3s ease;
}

.ip-why-card:hover {
    transform: translateY(-4px);
}

.ip-why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ip-why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.92;
}

.ip-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ip-why-icon i {
    font-size: 24px;
}

.ip-why-pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25);
}

.ip-why-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.25);
}

.ip-why-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}

.ip-why-green {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.25);
}


/* ============================================
   SECTION 5: 3 EASY STEPS
   ============================================ */
.ip-steps {
    padding: 80px 0;
    background: #f9fafb;
}

.ip-steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ip-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid #f3f4f6;
    position: relative;
    transition: all 0.3s ease;
}

.ip-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #7C3AED;
}

.ip-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.ip-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

.ip-step-icon i {
    font-size: 28px;
    color: #7C3AED;
}

.ip-step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ip-step-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

.ip-step-arrow {
    color: #d1d5db;
    font-size: 1.5rem;
    flex-shrink: 0;
}


/* ============================================
   SECTION 6: TESTIMONIALS
   ============================================ */
.ip-testimonials {
    padding: 80px 0;
    background: #fff;
}

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

.ip-testimonial-card {
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.ip-testimonial-card:hover {
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ip-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.ip-testimonial-stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.ip-testimonial-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.ip-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ip-testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.ip-testimonial-author span {
    font-size: 0.8rem;
    color: #9ca3af;
}

.ip-testimonial-metric {
    padding: 10px 16px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ============================================
   SECTION 7: USE CASES
   ============================================ */
.ip-use-cases {
    padding: 80px 0;
    background: #f9fafb;
}

.ip-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ip-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b7280;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ip-tab-btn:hover {
    border-color: #7C3AED;
    color: #7C3AED;
}

.ip-tab-btn.active {
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff;
    border-color: #7C3AED;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.ip-tab-content {
    display: none;
}

.ip-tab-content.active {
    display: block;
    animation: ipFadeIn 0.4s ease;
}

@keyframes ipFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ip-usecase-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid #f3f4f6;
}

.ip-usecase-quote blockquote {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.ip-usecase-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ip-usecase-author strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.ip-usecase-author span {
    font-size: 0.8rem;
    color: #9ca3af;
}

.ip-usecase-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ip-usecase-stat {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.ip-usecase-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #7C3AED;
    margin-bottom: 4px;
}

.ip-usecase-stat span {
    font-size: 0.85rem;
    color: #6b7280;
}


/* ============================================
   SECTION 8: WHY CUSTOMERS RATE US #1
   ============================================ */
.ip-rated {
    padding: 80px 0;
    background: #fff;
}

.ip-rated-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ip-rated-card {
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.ip-rated-card:hover {
    border-color: #7C3AED;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ip-rated-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ip-rated-icon i {
    font-size: 26px;
    color: #7C3AED;
}

.ip-rated-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ip-rated-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}


/* ============================================
   SECTION 9: STORY / TIMELINE
   ============================================ */
.ip-story {
    padding: 80px 0;
    background: #f9fafb;
}

.ip-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.ip-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #7C3AED, #8b5cf6, #ec4899);
    border-radius: 3px;
}

.ip-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.ip-timeline-item:last-child {
    margin-bottom: 0;
}

.ip-timeline-dot {
    position: absolute;
    left: -31px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #7C3AED;
    border-radius: 50%;
    border: 3px solid #f9fafb;
    box-shadow: 0 0 0 3px #7C3AED;
}

.ip-timeline-content {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.ip-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ip-timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.ip-timeline-content p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.6;
}


/* ============================================
   SECTION 10: FAQ
   ============================================ */
.ip-faq {
    padding: 80px 0;
    background: #fff;
}

.ip-faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.ip-faq-item {
    border: 2px solid #f3f4f6;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.ip-faq-item:hover {
    border-color: #e0e7ff;
}

.ip-faq-item.open {
    border-color: #7C3AED;
}

.ip-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: all 0.3s ease;
}

.ip-faq-question:hover {
    color: #7C3AED;
}

.ip-faq-question i {
    font-size: 0.9rem;
    color: #7C3AED;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.ip-faq-item.open .ip-faq-question i {
    transform: rotate(45deg);
}

.ip-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.ip-faq-answer p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}


/* ============================================
   SECTION 11: FINAL CTA
   ============================================ */
.ip-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #8b5cf6 50%, #a78bfa 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.ip-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.ip-cta p {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.ip-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ip-cta .ip-btn-primary {
    background: #fff;
    color: #7C3AED !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.ip-cta .ip-btn-primary:hover {
    background: #f5f3ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.ip-cta-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.85;
}

.ip-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ============================================
   SELECT PACKAGE PAGE — InstaPulse Style (sp-*)
   ============================================ */

/* Hero Section */
.sp-hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 40%, #fff 100%);
    padding: 40px 0 32px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.sp-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.sp-breadcrumb a {
    color: #7C3AED;
    text-decoration: none;
    transition: color 0.2s;
}

.sp-breadcrumb a:hover {
    text-decoration: underline;
}

.sp-breadcrumb-sep {
    color: #d1d5db;
    font-size: 0.7rem;
}

/* Product Header */
.sp-product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99,102,241,0.25);
}

.sp-product-icon i {
    font-size: 28px;
    color: #fff;
}

.sp-product-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sp-product-platform {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

/* Trust Badges (reuses ip-badge) */
.sp-trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* Social Proof */
.sp-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #6b7280;
}

.sp-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   Progress Stepper
   ============================================ */
.sp-stepper {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.sp-stepper-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.sp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.sp-step.active {
    opacity: 1;
}

.sp-step.completed {
    opacity: 1;
}

.sp-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sp-step.active .sp-step-circle {
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff;
    box-shadow: 0 2px 8px rgba(99,102,241,0.3);
}

.sp-step.completed .sp-step-circle {
    background: #10b981;
    color: #fff;
}

.sp-step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

.sp-step.active .sp-step-label {
    color: #7C3AED;
}

.sp-step.completed .sp-step-label {
    color: #10b981;
}

.sp-step-line {
    width: 60px;
    height: 3px;
    background: #e5e7eb;
    margin: 0 12px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.sp-step-line.completed {
    background: #10b981;
}

/* ============================================
   Main Form Section
   ============================================ */
.sp-main-section {
    padding: 40px 0 60px;
    background: #f9fafb;
}

.sp-layout {
    max-width: 800px;
    margin: 0 auto;
}

.sp-form-step {
    margin-bottom: 36px;
}

.sp-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-step-title i {
    color: #7C3AED;
    font-size: 1.1rem;
}

/* ============================================
   Package Cards
   ============================================ */
.sp-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .sp-package-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .sp-package-card {
        padding: 14px 8px 10px;
    }
    .sp-card-quantity {
        font-size: 1.3rem !important;
    }
    .sp-card-price {
        font-size: 1rem !important;
    }
}

.sp-package-card {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 12px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: visible;
}

.sp-package-card:hover {
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.12);
}

.sp-package-card.sp-selected {
    border-color: #7C3AED;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15), 0 8px 24px rgba(99,102,241,0.12);
}

.sp-package-card.sp-popular {
    border-color: #f59e0b;
    border-width: 2.5px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.18);
    transform: scale(1.03);
    z-index: 1;
    position: relative;
}

.sp-package-card.sp-best-value {
    border-color: #10b981;
}

.sp-package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Card Badge */
.sp-card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 4px 18px;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
    animation: popularPulse 2s ease-in-out infinite;
}

@keyframes popularPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35); }
    50% { box-shadow: 0 2px 14px rgba(245, 158, 11, 0.55); }
}

.sp-badge-best-value {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.sp-badge-great-deal {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.sp-package-card.sp-great-deal {
    border-color: #8b5cf6;
}

/* Card Content */
.sp-card-quantity {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.2;
}

.sp-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7C3AED;
    margin-bottom: 4px;
}

.sp-card-per-unit {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Check icon on selected */
.sp-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #7C3AED;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.sp-package-card.sp-selected .sp-card-check {
    opacity: 1;
    transform: scale(1);
}

/* Show More Packages Button */
.sp-show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 10px 16px;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.sp-show-more-btn:hover {
    background: #f3f4f6;
    border-color: #7C3AED;
    color: #7C3AED;
}

.sp-show-more-btn i {
    transition: transform 0.3s;
}

.sp-show-more-btn.expanded i {
    transform: rotate(45deg);
}

.sp-show-more-hint {
    color: #10b981;
    font-size: 0.78rem;
}

/* Field Errors */
.sp-field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

.sp-field-error.visible {
    display: block;
}

/* ============================================
   URL Input
   ============================================ */
.sp-url-input {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sp-url-input:focus-within {
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.sp-url-icon {
    padding: 14px 16px;
    color: #6b7280;
    font-size: 18px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.sp-url-input input {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
}

.sp-input-help {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-input-help i {
    color: #7C3AED;
    font-size: 0.8rem;
}

/* ============================================
   Extra Fields (Custom Comments)
   ============================================ */
.sp-extra-fields {
    margin-top: 4px;
}

.sp-field-group {
    margin-bottom: 16px;
}

.sp-field-group label {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.sp-required {
    color: #ef4444;
}

.sp-textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    background: #fff;
}

.sp-textarea:focus {
    border-color: #7C3AED;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.sp-field-help {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sp-field-help i {
    color: #7C3AED;
}

/* ============================================
   Checkout Area
   ============================================ */
.sp-checkout-area {
    margin-top: 36px;
}

.sp-checkout-summary {
    background: linear-gradient(135deg, #f5f3ff, #eef2ff);
    border: 1px solid #e0e0ff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-summary-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-summary-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.sp-summary-value {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.sp-summary-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #7C3AED;
}

/* Action Buttons Container */
.sp-action-buttons {
    display: flex;
    gap: 12px;
}

/* Add to Cart Button */
.sp-add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 16px;
    background: #fff;
    color: #7C3AED;
    -webkit-text-fill-color: #7C3AED;
    border: 2px solid #7C3AED;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sp-add-to-cart-btn:hover {
    background: #f5f3ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(124,58,237,0.15);
}

.sp-add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Checkout / Buy Now Button */
.sp-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    padding: 16px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    color: #fff;
    -webkit-text-fill-color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}

.sp-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.4);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.sp-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* View Cart Link */
.sp-view-cart-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    color: #7C3AED;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: #f5f3ff;
    border-radius: 10px;
    transition: all 0.2s;
}

.sp-view-cart-link:hover {
    background: #ede9fe;
    color: #6d28d9;
}

/* Trust Signals */
.sp-trust-signals {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

.sp-trust-item i {
    color: #10b981;
}

/* ============================================
   Guarantee Cards
   ============================================ */
.sp-guarantees {
    padding: 50px 0;
    background: #fff;
}

.sp-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.sp-guarantee-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.sp-guarantee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: #7C3AED;
}

.sp-guarantee-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-guarantee-icon i {
    font-size: 1.4rem;
    color: #7C3AED;
}

.sp-guarantee-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.sp-guarantee-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   Product Description
   ============================================ */
.sp-description {
    padding: 0 0 50px;
    background: #fff;
}

.sp-description-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 28px;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.sp-description-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-description-title i {
    color: #7C3AED;
}

.sp-description-body {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.7;
}

/* ============================================
   Mini FAQ
   ============================================ */
.sp-mini-faq {
    padding: 50px 0 70px;
    background: #f9fafb;
}

.sp-faq-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 30px;
}

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

.sp-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.sp-faq-item:hover {
    border-color: #c7d2fe;
}

.sp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    font-family: inherit;
    text-align: left;
}

.sp-faq-question i {
    color: #7C3AED;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.sp-faq-item.open .sp-faq-question i {
    transform: rotate(45deg);
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sp-faq-item.open .sp-faq-answer {
    max-height: 300px;
}

.sp-faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}


/* ============================================
   SELECT PACKAGE: MARKETING HEADLINE
   ============================================ */
.sp-marketing-hero {
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 40%, #fff 100%);
    padding: 60px 0 10px;
    text-align: center;
}

.sp-marketing-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sp-marketing-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SELECT PACKAGE: PREMIUM INFO CARD
   ============================================ */
.sp-premium-info {
    padding: 0 0 30px;
    background: #fff;
}

.sp-info-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #312e81 0%, #4c1d95 50%, #6d28d9 100%);
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
}

.sp-info-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.sp-info-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

.sp-info-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sp-info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.sp-info-badge i {
    color: #a78bfa;
    font-size: 0.9rem;
}

/* ============================================
   SELECT PACKAGE: SELECTOR HEADER
   ============================================ */
.sp-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.sp-selector-want,
.sp-selector-pay {
    font-size: 0.95rem;
    color: #6b7280;
}

.sp-selector-want strong,
.sp-selector-pay strong {
    color: #7C3AED;
    font-size: 1.1rem;
}

.sp-badge-cheapest {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.sp-package-card.sp-cheapest {
    border-color: #10b981;
}

/* ============================================
   SELECT PACKAGE: SOCIAL PROOF INDICATORS
   ============================================ */
.sp-social-indicators {
    padding: 30px 0;
    background: #fff;
}

.sp-indicators-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sp-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.sp-indicator strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ============================================
   SELECT PACKAGE: DELIVERED COUNTER BANNER
   ============================================ */
.sp-delivered-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3, #fff);
    text-align: center;
}

.sp-delivered-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.sp-delivered-count {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}

.sp-delivered-sub {
    font-size: 1rem;
    color: #6b7280;
}

/* ============================================
   SELECT PACKAGE: STRUGGLING SECTION
   ============================================ */
.sp-struggling {
    padding: 60px 0;
    background: #fff;
}

.sp-struggling-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sp-struggling-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============================================
   SELECT PACKAGE: TESTIMONIAL SHOWCASE
   ============================================ */
.sp-testimonial-showcase {
    padding: 60px 0;
    background: #f9fafb;
}

.sp-testimonial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 30px auto 0;
    align-items: stretch;
}

.sp-testimonial-quote {
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.sp-testimonial-quote:hover {
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sp-quote-icon {
    margin-bottom: 12px;
}

.sp-quote-icon i {
    font-size: 1.5rem;
    color: #7C3AED;
    opacity: 0.4;
}

.sp-quote-stars {
    margin-bottom: 12px;
}

.sp-quote-stars i {
    color: #f59e0b;
    font-size: 1rem;
}

.sp-testimonial-quote h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.sp-testimonial-quote blockquote {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.sp-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-quote-author strong {
    display: block;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.95rem;
}

.sp-quote-author span {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ============================================
   SELECT PACKAGE: HOW WE SOURCE
   ============================================ */
.sp-how-source {
    padding: 60px 0;
    background: #fff;
}

.sp-source-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 30px auto 24px;
}

.sp-source-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.sp-source-card:hover {
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sp-source-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-source-icon i {
    font-size: 1.4rem;
    color: #7C3AED;
}

.sp-source-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.sp-source-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

.sp-trust-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #7C3AED, #8b5cf6);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
}

.sp-trust-banner i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sp-trust-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5563;
}

.sp-trust-tag i {
    color: #10b981;
    font-size: 0.85rem;
}

/* ============================================
   SELECT PACKAGE: SMARTER FEATURES
   ============================================ */
.sp-features {
    padding: 60px 0;
    background: #f9fafb;
}

.sp-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 30px auto 0;
}

.sp-feature-card {
    flex: 0 1 calc(33.333% - 16px);
    min-width: 250px;
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-feature-card:hover {
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sp-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-feature-icon i {
    font-size: 1.4rem;
    color: #7C3AED;
}

.sp-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.sp-feature-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   SELECT PACKAGE: FINAL CTA
   ============================================ */
.sp-final-cta {
    background: linear-gradient(135deg, #7C3AED 0%, #8b5cf6 50%, #a78bfa 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.sp-final-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.sp-final-cta p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.sp-final-cta-btn {
    background: #fff !important;
    color: #7C3AED !important;
    -webkit-text-fill-color: #7C3AED !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sp-final-cta-btn:hover {
    background: #f5f3ff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.sp-final-cta-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.sp-final-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .ip-hero-title {
        font-size: 2.8rem;
    }

    .ip-section-title {
        font-size: 2.1rem;
    }

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

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

    .ip-usecase-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ip-usecase-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .ip-usecase-stat {
        flex: 1;
        min-width: 120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ip-hero {
        padding: 30px 0 16px;
    }

    .ip-hero-stats {
        gap: 16px;
    }

    .ip-hero-stat {
        font-size: 0.85rem;
    }

    .ip-trust-badges {
        gap: 8px;
    }

    .ip-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .ip-hero-title {
        font-size: 2.2rem;
    }

    .ip-hero-subtitle {
        font-size: 1rem;
    }

    .ip-section-title {
        font-size: 1.8rem;
    }

    .ip-section-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    /* Struggling */
    .ip-struggling {
        padding: 60px 0;
    }

    .ip-struggling-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ip-struggling .ip-section-title {
        text-align: center;
    }

    /* Services: horizontal swipeable carousel */
    .ip-services-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ip-services-grid::-webkit-scrollbar { display: none; }

    .ip-service-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
        min-width: 75%;
    }

    /* Why Best: 2-column grid */
    .ip-why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .ip-why-card {
        padding: 20px;
    }

    /* Steps: horizontal swipeable carousel */
    .ip-steps-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ip-steps-grid::-webkit-scrollbar { display: none; }

    .ip-step-card {
        flex: 0 0 calc(100vw - 80px);
        scroll-snap-align: center;
        min-width: calc(100vw - 80px);
        max-width: none !important;
    }

    .ip-step-arrow {
        display: none;
    }

    /* Testimonials: horizontal swipeable carousel */
    .ip-testimonial-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ip-testimonial-grid::-webkit-scrollbar { display: none; }

    .ip-testimonial-card {
        flex: 0 0 calc(100vw - 64px);
        scroll-snap-align: center;
        min-width: calc(100vw - 64px);
    }

    /* Use Cases: horizontal scroll tabs */
    .ip-tab-buttons {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 8px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ip-tab-buttons::-webkit-scrollbar { display: none; }

    .ip-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 50px;
    }

    .ip-usecase-layout {
        padding: 24px;
    }

    /* Rated: 2-column grid */
    .ip-rated-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* FAQ: cleaner accordion */
    .ip-faq-item {
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .ip-faq-item.open {
        border-color: #7C3AED;
    }

    .ip-faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .ip-faq-item.open .ip-faq-answer {
        padding: 0 20px 16px;
    }

    /* CTA */
    .ip-cta h2 {
        font-size: 1.8rem;
    }

    .ip-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ip-cta-buttons .ip-btn-primary {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
        background: linear-gradient(135deg, #ec4899, #f97316) !important;
        box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
    }

    .ip-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Select Package page (sp-*) */
    .sp-product-header {
        flex-direction: column;
        text-align: center;
    }

    .sp-product-name {
        font-size: 1.4rem;
    }

    .sp-hero {
        padding: 25px 0 20px;
    }

    .sp-trust-badges {
        justify-content: center;
    }

    .sp-social-proof {
        justify-content: center;
    }

    .sp-stepper-track {
        gap: 0;
    }

    .sp-step-label {
        font-size: 0.75rem;
    }

    .sp-step-line {
        width: 30px;
        margin: 0 6px;
    }

    .sp-main-section {
        padding: 30px 0 50px;
    }

    /* Package grid: 3-column compact (InstaPulse-style) */
    .sp-package-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .sp-package-card {
        padding: 14px 8px 12px;
        border-radius: 14px;
    }

    .sp-card-quantity {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 2px;
    }

    .sp-card-price {
        font-size: 0.85rem;
    }

    /* Hide detail lines on mobile for compactness */
    .sp-card-per-unit,
    .sp-card-delivery {
        display: none;
    }

    .sp-card-savings {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-top: 6px;
    }

    .sp-card-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        top: -8px;
        letter-spacing: 0.3px;
    }

    .sp-card-check {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: 6px;
        right: 6px;
    }

    /* Action buttons: stack on mobile */
    .sp-action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .sp-add-to-cart-btn {
        padding: 14px;
        font-size: 0.95rem;
        order: 2;
    }

    /* Checkout button: full-width gradient */
    .sp-checkout-btn {
        background: linear-gradient(135deg, #ec4899, #f97316) !important;
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
        padding: 16px;
        font-size: 1rem;
        order: 1;
    }

    .sp-view-cart-link {
        font-size: 0.85rem;
        padding: 8px;
    }

    /* Guarantees: horizontal scroll */
    .sp-guarantees-grid {
        display: flex !important;
        grid-template-columns: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .sp-guarantees-grid::-webkit-scrollbar { display: none; }

    .sp-guarantee-card {
        flex: 0 0 calc(80vw - 32px);
        scroll-snap-align: start;
        min-width: calc(80vw - 32px);
        border-radius: 16px;
    }

    .sp-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Marketing title */
    .sp-marketing-title {
        font-size: 1.8rem;
    }

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

    .sp-selector-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .sp-indicators-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sp-delivered-count {
        font-size: 2.5rem;
    }

    .sp-struggling-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Compact struggling section text on mobile */
    .sp-struggling-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .ip-struggling p,
    .ip-struggling .ip-struggling-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Prevent URL input icon from being cut off */
    .sp-url-icon {
        flex-shrink: 0;
        min-width: 48px;
        text-align: center;
    }

    /* Prevent step title icon from being clipped */
    .sp-step-title {
        overflow: visible;
        padding-left: 2px;
    }

    .sp-testimonial-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .sp-features-grid {
        justify-content: center;
    }

    .sp-feature-card {
        flex: 0 1 100%;
        min-width: unset;
    }

    .sp-final-cta h2 {
        font-size: 1.8rem;
    }

    .sp-final-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sp-marketing-hero {
        padding: 40px 0 10px;
    }

    .sp-info-card {
        padding: 28px;
    }

    .sp-testimonial-quote {
        padding: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ip-hero-title {
        font-size: 1.8rem;
    }

    .ip-hero-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .ip-section-title {
        font-size: 1.5rem;
    }

    .ip-btn-primary {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .ip-btn-primary.ip-btn-lg {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .ip-usecase-stats {
        flex-direction: column;
    }

    .ip-timeline {
        padding-left: 30px;
    }

    .ip-timeline-dot {
        left: -21px;
        width: 12px;
        height: 12px;
    }

    .ip-timeline::before {
        left: 10px;
    }

    /* Select Package page small mobile - stay 3-column */
    .sp-package-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .sp-package-card {
        padding: 12px 6px 10px;
        border-radius: 12px;
    }

    .sp-card-badge {
        font-size: 0.5rem;
        padding: 1px 5px;
    }

    .sp-card-quantity {
        font-size: 1.05rem;
    }

    .sp-card-price {
        font-size: 0.78rem;
    }

    .sp-card-savings {
        font-size: 0.55rem;
        padding: 2px 5px;
    }

    .sp-checkout-btn {
        padding: 16px;
        font-size: 1rem;
    }

    .sp-faq-heading {
        font-size: 1.3rem;
    }

    .sp-marketing-title {
        font-size: 1.7rem;
    }

    .sp-marketing-subtitle {
        font-size: 0.95rem;
    }

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

    .sp-delivered-count {
        font-size: 2rem;
    }

    .sp-final-cta h2 {
        font-size: 1.5rem;
    }

    /* Info card */
    .sp-info-card {
        padding: 20px;
        border-radius: 14px;
    }

    .sp-info-title {
        font-size: 1.1rem;
    }

    .sp-info-desc {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .sp-info-badge {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    /* Testimonials */
    .sp-testimonial-quote {
        padding: 20px;
    }

    /* Marketing hero */
    .sp-marketing-hero {
        padding: 30px 0 8px;
    }

    /* Features */
    .sp-feature-card {
        padding: 20px;
    }

    .sp-features-grid {
        gap: 16px;
    }

    /* Sections */
    .sp-testimonial-showcase {
        padding: 30px 0;
    }

    .sp-struggling {
        padding: 30px 0;
    }

    .sp-final-cta {
        padding: 40px 0;
    }
}

/* Very Small Mobile (iPhone SE, Galaxy S series, etc.) */
@media (max-width: 360px) {
    /* Stay 3-column but ultra-compact */
    .sp-package-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .sp-package-card {
        padding: 10px 4px 8px;
        border-radius: 10px;
    }

    .sp-card-badge {
        font-size: 0.45rem;
        padding: 1px 4px;
    }

    .sp-card-quantity {
        font-size: 0.95rem;
    }

    .sp-card-price {
        font-size: 0.7rem;
    }

    .sp-card-savings {
        font-size: 0.5rem;
        padding: 1px 4px;
    }

    /* Marketing title */
    .sp-marketing-title {
        font-size: 1.4rem;
    }

    .sp-marketing-subtitle {
        font-size: 0.88rem;
    }

    .sp-marketing-hero {
        padding: 20px 0 6px;
    }

    /* Info card */
    .sp-info-card {
        padding: 16px;
        border-radius: 12px;
    }

    .sp-info-title {
        font-size: 1rem;
    }

    .sp-info-desc {
        font-size: 0.8rem;
    }

    .sp-info-badge {
        padding: 6px 8px;
        font-size: 0.72rem;
        gap: 6px;
    }

    /* Testimonials */
    .sp-testimonial-quote {
        padding: 16px;
    }

    /* Features */
    .sp-feature-card {
        padding: 16px;
    }

    .sp-feature-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto 12px;
    }

    /* Stepper */
    .sp-step-label {
        font-size: 0.65rem;
    }

    .sp-step-line {
        width: 20px;
        margin: 0 3px;
    }

    /* Sections */
    .sp-testimonial-showcase {
        padding: 24px 0;
    }

    .sp-struggling {
        padding: 24px 0;
    }

    .sp-final-cta {
        padding: 30px 0;
    }

    .sp-final-cta h2 {
        font-size: 1.3rem;
    }

    .sp-delivered-count {
        font-size: 1.7rem;
    }

    .sp-product-name {
        font-size: 1.2rem;
    }
}
