/* ===========================================
   E-COMMERCE SOLUTIONS PAGE - PREMIUM CSS
   Siva Designer - ThinkPulse Design System
   E-commerce Specific Premium Aesthetic
   =========================================== */

/* CSS Variables - ThinkPulse Colors + E-commerce Accents */
:root {
    --deep-blue: #0A1F44;
    --electric-blue: #2563EB;
    --cyan-glow: #06B6D4;
    --navy: #1E3A8A;
    --warm-orange: #F59E0B;
    --emerald: #10B981;
    --slate-dark: #0A1F44;
    --slate-text: #64748B;
    /* E-commerce Specific Colors */
    --purple-accent: #8B5CF6;
    --pink-accent: #EC4899;
    --hero-gradient: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%);
    --ecommerce-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --accent-gradient: linear-gradient(90deg, #06B6D4 0%, #2563EB 100%);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Wave Divider Dark */
.wave-divider-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.wave-divider-dark svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(0, -40px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(5deg);
    }
}

@keyframes elementPulse {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb-nav {
    background: var(--deep-blue);
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--cyan-glow);
}

.breadcrumb-item::after {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item.active span {
    color: var(--cyan-glow);
    font-weight: 500;
}

/* ===== HERO SECTION ===== */
.service-hero.ecommerce-hero {
    padding: 100px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Shopping Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: iconFloat 15s ease-in-out infinite;
}

.icon-cart {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-card {
    top: 20%;
    right: 15%;
    animation-delay: -3s;
}

.icon-box {
    bottom: 25%;
    left: 15%;
    animation-delay: -6s;
}

.icon-truck {
    bottom: 15%;
    right: 10%;
    animation-delay: -9s;
}

.float-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.25);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Tag Badge */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.tag-icon {
    font-size: 1.25rem;
}

/* Hero Content */
.service-hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text-animated {
    background: linear-gradient(90deg, var(--purple-accent), var(--pink-accent), var(--cyan-glow), var(--purple-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Hero Benefits List */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    stroke: var(--cyan-glow);
    stroke-width: 2;
    fill: none;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--ecommerce-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
    color: white;
}

.btn-primary svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--cyan-glow);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Image */
.service-hero-image {
    position: relative;
}

.ecommerce-visual-wrapper {
    position: relative;
}

.visual-glow {
    position: absolute;
    inset: -20px;
    background: var(--ecommerce-gradient);
    filter: blur(60px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.service-hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: badgeFloat 6s ease-in-out infinite;
}

/* Animated Shopping Elements */
.shopping-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: var(--deep-blue);
    animation: elementPulse 3s ease-in-out infinite;
    z-index: 10;
}

.cart-badge {
    top: 15%;
    right: 5%;
    background: var(--ecommerce-gradient);
    color: white;
}

.payment-badge {
    bottom: 30%;
    left: -5%;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    color: white;
    animation-delay: -1s;
}

.delivery-badge {
    bottom: 10%;
    right: 10%;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    animation-delay: -2s;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--purple-accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--ecommerce-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--slate-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== E-COMMERCE FEATURES SECTION ===== */
.ecommerce-features {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card.ecommerce-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.ecommerce-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 0 0 0 100%;
}

.feature-card.ecommerce-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.ecommerce-card:hover .feature-icon {
    background: var(--ecommerce-gradient);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--purple-accent);
    transition: all 0.4s ease;
}

.ecommerce-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    inset: -8px;
    background: var(--ecommerce-gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.ecommerce-card:hover .icon-glow {
    opacity: 0.4;
}

.feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--slate-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tags .tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
    color: var(--purple-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
}

.ecommerce-card:hover .tag {
    background: var(--ecommerce-gradient);
    color: white;
    border-color: transparent;
}

/* ===== E-COMMERCE PLATFORMS SECTION ===== */
.ecommerce-platforms {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.ecommerce-platforms::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
}

.ecommerce-platforms .section-title,
.ecommerce-platforms .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.ecommerce-platforms .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.ecommerce-platforms .section-tag {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    color: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--ecommerce-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon i {
    font-size: 2.5rem;
    color: white;
}

.platform-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.platform-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-features li:last-child {
    border-bottom: none;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ecommerce-gradient);
    border-radius: 3px;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--ecommerce-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    z-index: 1;
    position: relative;
}

.process-content {
    background: white;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.process-content:hover {
    transform: translateX(8px);
    box-shadow: var(--hover-shadow);
}

.process-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--slate-text);
    line-height: 1.6;
    margin: 0;
}

/* ===== TECH SECTION ===== */
.tech-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%) !important;
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}

.tech-section .section-header.centered {
    position: relative;
    z-index: 2;
}

.tech-section .section-tag {
    background: rgba(6, 182, 212, 0.2) !important;
    border-color: rgba(6, 182, 212, 0.4) !important;
    color: white !important;
}

.tech-section .section-title {
    color: white !important;
    position: relative;
    z-index: 1;
}

.tech-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
    z-index: 1;
}

.tech-section .gradient-text {
    background: linear-gradient(90deg, #06B6D4 0%, #2563EB 50%, #06B6D4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.tech-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.2);
}

.tech-item i {
    font-size: 3rem;
    color: white !important;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
}

.tech-item h4 {
    color: white !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}



/* ===== PRICING SECTION ===== */
.ecommerce-pricing {
    padding: 100px 0;
    background: #F8FAFC;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card.ecommerce-pricing-card {
    background: white;
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.ecommerce-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.ecommerce-pricing-card.featured {
	background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    transform: scale(1.05);
    border-color: var(--cyan-glow);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3), 0 0 0 1px rgba(6, 182, 212, 0.2);
}

.ecommerce-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ecommerce-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.3));
}

.pricing-icon i {
    font-size: 3rem;
    background: var(--ecommerce-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple-accent);
    vertical-align: top;
}

.pricing-price .amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--ecommerce-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--slate-text);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--slate-text);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--deep-blue);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--emerald);
    font-size: 1rem;
}

.featured .pricing-features li i {
    color: var(--purple-accent);
}

.btn-block {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
}

.pricing-note p {
    color: var(--slate-text);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.pricing-note a {
    color: var(--purple-accent);
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* ===== SUCCESS METRICS SECTION ===== */
.success-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 100%);
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.metric-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: inline;
}

.metric-suffix {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan-glow);
    display: inline;
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F1F5F9;
}

.faq-question span {
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--purple-accent);
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 24px 28px;
    background: white;
    color: var(--slate-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.service-cta {
    padding: 100px 0;
    background: var(--ecommerce-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.service-cta .container {
    position: relative;
    z-index: 1;
}

.service-cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta .cta-buttons {
    justify-content: center;
}

.service-cta .btn-primary {
    background: white;
    color: var(--purple-accent);
}

.service-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.service-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

.service-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .ecommerce-pricing-card.featured {
        transform: scale(1);
    }

    .ecommerce-pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero.ecommerce-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .service-hero-content h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-hero-image {
        margin-top: 48px;
    }

    .shopping-element {
        display: none;
    }

    .floating-icons {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-step {
        gap: 20px;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tech-item {
        padding: 24px 16px;
    }

    .tech-item i {
        font-size: 2.5rem;
    }

    .process-content {
        padding: 20px;
    }

    .pricing-card.ecommerce-pricing-card {
        padding: 36px 24px;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .metric-card {
        padding: 30px 16px;
    }

    .metric-number {
        font-size: 2.5rem;
    }
}

/* ===== STORE TYPES SECTION ===== */
.store-types-section {
    padding: 100px 0;
    background: #F8FAFC;
}

/* ===== WHAT'S INCLUDED SECTION ===== */
.whats-included-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    position: relative;
    overflow: hidden;
}

.whats-included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.whats-included-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.whats-included-section .section-title,
.whats-included-section .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.whats-included-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.whats-included-section .gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.included-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.included-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon i {
    font-size: 1.5rem;
    color: white;
}

.included-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.included-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== POWER FEATURES SECTION ===== */
.power-features-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.power-item {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
}

.power-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.power-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.power-icon i {
    font-size: 1.5rem;
    color: var(--purple-accent);
    transition: all 0.4s ease;
}

.power-item:hover .power-icon {
    background: var(--ecommerce-gradient);
}

.power-item:hover .power-icon i {
    color: white;
}

.power-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.power-content p {
    font-size: 0.9rem;
    color: var(--slate-text);
    line-height: 1.6;
    margin: 0;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%) !important;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}

.why-choose-section .section-tag {
    background: rgba(6, 182, 212, 0.2) !important;
    border-color: rgba(6, 182, 212, 0.4) !important;
    color: white !important;
}

.why-choose-section .section-title,
.why-choose-section .section-subtitle {
    color: white !important;
    position: relative;
    z-index: 1;
}

.why-choose-section .gradient-text {
    background: linear-gradient(90deg, #06B6D4 0%, #2563EB 50%, #06B6D4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: 100px 0;
    background: #FEFCF9;
}

.section-padding {
    padding: 100px 0;
}

.industry-subtitle {
    display: inline-block;
    color: var(--purple-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.industry-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.industry-desc {
    font-size: 1.05rem;
    color: var(--slate-text);
    line-height: 1.7;
}

.industry-box {
    padding: 28px 16px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.industry-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.industry-box i {
    font-size: 1.75rem;
    color: rgba(0, 0, 0, 0.65);
    display: block;
    margin-bottom: 12px;
}

.industry-box span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
    display: block;
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 992px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .power-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
    }

    .power-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .industry-title {
        font-size: 2rem;
    }

    .industries-section .row {
        flex-direction: column;
    }

    .power-item {
        flex-direction: column;
        text-align: center;
    }

    .power-item .power-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .included-item {
        padding: 20px 16px;
    }

    .industry-box {
        padding: 20px 12px;
    }

    .industry-box i {
        font-size: 1.5rem;
    }

    .industry-box span {
        font-size: 0.75rem;
    }
}