/* ===== SERVICES PAGE ===== */
.services-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid var(--border-iron-gray);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-electric-aqua);
    box-shadow: 0 10px 40px rgba(60, 242, 242, 0.2);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--fg-mist-white);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--fg-mist-white);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-neon-lime);
    font-weight: bold;
}

/* ===== CORE PRODUCT SECTION - COMPLETE REDESIGN ===== */
.core-product-section {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.core-product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(77, 184, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 184, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPan 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridPan {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.core-product-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation: orbFloat1 12s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

.core-product-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.core-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4DB8FF, #DC2626);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 25px rgba(77, 184, 255, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 25px rgba(77, 184, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 8px 35px rgba(220, 38, 38, 0.5); }
}

.core-product-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    text-shadow: 0 0 40px rgba(77, 184, 255, 0.3);
}

.core-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.core-product-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: start;
}

.core-features {
    background: linear-gradient(135deg, rgba(77, 184, 255, 0.03), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(77, 184, 255, 0.3);
    border-radius: 24px;
    padding: 2.2rem;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(77, 184, 255, 0.03);
    transform: perspective(1000px) rotateY(-2deg);
    transition: all 0.5s ease;
}

.core-features:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    border-color: #4DB8FF;
    box-shadow: 
        0 40px 100px rgba(77, 184, 255, 0.3),
        inset 0 0 120px rgba(77, 184, 255, 0.05);
}

.core-features h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 1.95rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.core-features h3::before {
    content: '⚡';
    font-size: 1.6rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 1.12rem;
}

.feature-list li {
    padding: 1.08rem 1.32rem;
    padding-left: 3.7rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.62;
    font-size: 0.97rem;
    background: linear-gradient(90deg, rgba(77, 184, 255, 0.05), transparent);
    border-left: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: linear-gradient(90deg, rgba(77, 184, 255, 0.1), rgba(77, 184, 255, 0.02));
    border-left-color: #4DB8FF;
    padding-left: 3.95rem;
    transform: translateX(5px);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #4DB8FF;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(77, 184, 255, 0.8);
    animation: dotPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--item-index) * 0.2s);
}

@keyframes dotPulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}

.core-pricing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

.price-box {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    border: 2px solid rgba(77, 184, 255, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(77, 184, 255, 0.1) 50%,
        transparent 70%
    );
    animation: diagonalShine 4s linear infinite;
}

@keyframes diagonalShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-box:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #4DB8FF;
    box-shadow: 0 25px 60px rgba(77, 184, 255, 0.4);
}

.price-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4DB8FF, #DC2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(77, 184, 255, 0.5);
}

.core-pricing .btn-primary {
    margin-top: 1rem;
    background: linear-gradient(135deg, #4DB8FF, #DC2626);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(77, 184, 255, 0.5);
    z-index: 2;
}

.core-pricing .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #DC2626, #4DB8FF);
    opacity: 0;
    transition: opacity 0.3s;
}

.core-pricing .btn-primary:hover::before {
    opacity: 1;
}

.core-pricing .btn-primary span {
    position: relative;
    z-index: 2;
}

.core-pricing .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.6);
}

/* ===== ADDONS SECTION MAIN - FUTURISTIC REDESIGN ===== */
.addons-section-main {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.addons-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(77, 184, 255, 0.03) 2px, rgba(77, 184, 255, 0.03) 4px);
    animation: digitalRain 3s linear infinite;
    opacity: 0.5;
}

@keyframes digitalRain {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.addon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding-top: 1.5rem;
}

.addon-card-main {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(77, 184, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
    backdrop-filter: blur(10px);
}

.addon-card-main:hover {
    transform: translateY(-8px);
    border-color: #4DB8FF;
    box-shadow: 
        0 15px 50px rgba(77, 184, 255, 0.3),
        inset 0 0 60px rgba(77, 184, 255, 0.05);
}

.addon-card-main.featured-addon {
    border-color: rgba(220, 38, 38, 0.5);
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.05), rgba(10, 10, 10, 0.9));
}

.addon-card-main.featured-addon:hover {
    border-color: #DC2626;
    box-shadow: 
        0 15px 50px rgba(220, 38, 38, 0.4),
        inset 0 0 60px rgba(220, 38, 38, 0.05);
}

.featured-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #DC2626, #FF4444);
    color: var(--fg-mist-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
    animation: tagPulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.addon-card-main .addon-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(77, 184, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.addon-card-main h3 {
    font-size: 1.3rem;
    color: var(--fg-mist-white);
    margin-bottom: 0.85rem;
    min-height: 3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.addon-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.addon-pricing {
    background: linear-gradient(135deg, rgba(77, 184, 255, 0.05), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(77, 184, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.addon-price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    align-items: center;
}

.addon-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.addon-value {
    color: #4DB8FF;
    font-weight: 800;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(77, 184, 255, 0.5);
}

.addon-benefit {
    color: #4DB8FF;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem;
    background: rgba(77, 184, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(77, 184, 255, 0.2);
}

/* ===== GROWTH SYSTEMS SECTION - FUTURISTIC REDESIGN ===== */
.growth-systems-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.growth-systems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(77, 184, 255, 0.1) 0%, transparent 50%);
    animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.growth-systems-section .section-title {
    position: relative;
    z-index: 2;
}

.growth-systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.growth-system-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.growth-system-card::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent,
        rgba(220, 38, 38, 0.2),
        transparent
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.growth-system-card:hover::before {
    opacity: 1;
}

.growth-system-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.growth-system-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #DC2626;
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.4),
        inset 0 0 80px rgba(220, 38, 38, 0.05);
}

/* Featured System Card - Full Width Website */
.featured-system-card {
    grid-column: 1 / -1;
}

.featured-system-card .system-goal {
    color: #DC2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.featured-system-card .system-pricing {
    border-top-color: rgba(220, 38, 38, 0.2);
}

.featured-system-card .system-price strong {
    color: #DC2626;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.system-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.system-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.6));
    animation: systemIconFloat 4s ease-in-out infinite;
}

@keyframes systemIconFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.system-header h3 {
    font-size: 1.5rem;
    color: var(--fg-mist-white);
    margin-bottom: 0.6rem;
    min-height: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
}

.system-goal {
    color: #DC2626;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.system-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.system-pricing {
    display: flex;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(220, 38, 38, 0.2);
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.system-price {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.system-price span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.system-price strong {
    color: #DC2626;
    font-size: 1.25rem;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 6rem 0;
    background: rgba(31, 41, 55, 0.2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-hyper-purple);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fg-mist-white);
}

.process-step p {
    color: var(--text-slate);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .addon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .growth-systems-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .core-product-content {
        grid-template-columns: 1fr;
    }

    .addon-cards-grid {
        grid-template-columns: 1fr;
    }

    .growth-systems-grid {
        grid-template-columns: 1fr;
    }

    .system-pricing {
        flex-direction: column;
        gap: 1rem;
    }
    
    .system-features ul {
        gap: 0.5rem;
    }
    
    .system-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
        padding-left: 2.25rem;
    }
}