/* ============================================
   ANIMATION KEYFRAMES (Shared)
   ============================================ */

@keyframes resultsGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   CONSISTENT DARK THEME - BASE VARIABLES
   All dark sections use these exact colors
   ============================================ */

:root {
    --dark-bg-gradient: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    --dark-card-gradient: linear-gradient(145deg, rgba(10, 25, 41, 0.8), rgba(0, 20, 41, 0.6));
    --dark-border-color: rgba(0, 102, 255, 0.3);
    --dark-border-hover: rgba(0, 102, 255, 0.6);
    --dark-text-primary: #ffffff;
    --dark-text-secondary: rgba(255, 255, 255, 0.7);
    --dark-accent-color: #CCE5FF;
    --dark-blue-primary: #0066FF;
    --dark-cyan-light: #00A3FF;
}

/* ============================================
   HERO SECTION - CONSISTENT DARK THEME
   ============================================ */

.home-hero {
    min-height: 90vh;
    padding: 200px 40px 100px;
    background: var(--dark-bg-gradient);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.08) 0%, transparent 50%);
    animation: resultsGlow 18s ease-in-out infinite;
}

.home-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.home-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px;
}

/* Dark section labels - scoped */
.home-hero .section-label,
.why-choose-process .section-label,
.client-results .section-label {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border: 2px solid var(--dark-border-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-accent-color);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.home-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark-text-primary);
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--dark-blue-primary) 0%, var(--dark-cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-description {
    font-size: 20px;
    color: var(--dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 30px;
    background: var(--dark-card-gradient);
    border: 2px solid var(--dark-border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--dark-border-hover);
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        0 0 80px rgba(0, 102, 255, 0.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border-radius: 12px;
    transition: all 0.4s ease;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0066FF;
    transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
    background: linear-gradient(135deg, #0066FF, #0080FF);
    transform: scale(1.1) rotate(-5deg);
}

.stat-box:hover .stat-icon svg {
    stroke: #ffffff;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark-accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--dark-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ============================================
   PLUGINS SECTION - LIGHT THEME
   ============================================ */

.home-plugins {
    padding: 120px 30px;
    background: #fafafa;
}

.home-plugins-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Light section labels */
.home-plugins .section-label {
    font-size: 13px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: inline-block;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #0a1929;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: rgba(10, 25, 41, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plugin-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.plugin-card-featured {
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.plugin-card-featured:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.plugin-card-coming {
    opacity: 0.85;
}

.plugin-badge {
    display: none;
}

.plugin-thumbnail {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.plugin-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.plugin-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.plugin-card:hover .plugin-thumbnail img {
    transform: scale(1.05);
}

.plugin-content {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plugin-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.plugin-cat {
    font-size: 11px;
    font-weight: 700;
    color: #0066FF;
    background: rgba(0, 102, 255, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plugin-title {
    font-size: 24px;
    font-weight: 800;
    color: #0a1929;
    margin-bottom: 12px;
    line-height: 1.3;
}

.plugin-description {
    font-size: 15px;
    color: rgba(10, 25, 41, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
}

.plugin-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}

.plugin-features li {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(10, 25, 41, 0.75);
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.plugin-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
}

.plugin-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.plugin-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-label {
    font-size: 12px;
    color: rgba(10, 25, 41, 0.5);
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: #0066FF;
    line-height: 1;
}

.plugin-btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.plugin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.plugin-btn-primary svg {
    transition: transform 0.3s ease;
}

.plugin-btn-primary:hover svg {
    transform: translateX(4px);
}

.plugin-btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.plugin-card-coming .plugin-footer {
    border-top: none;
    padding-top: 0;
}

/* ============================================
   PROCESS TIMELINE - CONSISTENT DARK THEME
   ============================================ */

.why-choose-process {
    padding: 120px 40px;
    background: var(--dark-bg-gradient);
    position: relative;
    overflow: hidden;
}

.why-choose-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.08) 0%, transparent 50%);
    animation: resultsGlow 18s ease-in-out infinite;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-process .section-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--dark-text-primary);
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.why-choose-process .section-description {
    font-size: 20px;
    color: var(--dark-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    margin: 80px 0 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--dark-border-color) 10%,
        var(--dark-border-color) 90%,
        transparent 100%
    );
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border: 2px solid var(--dark-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-cyan-light);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:hover .timeline-number {
    background: linear-gradient(135deg, var(--dark-blue-primary), var(--dark-cyan-light));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
}

.timeline-content {
    background: var(--dark-card-gradient);
    backdrop-filter: blur(20px);
    padding: 45px 40px;
    border-radius: 24px;
    border: 2px solid var(--dark-border-color);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item:hover .timeline-content {
    border-color: var(--dark-border-hover);
    transform: translateX(10px);
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        0 0 80px rgba(0, 102, 255, 0.2);
}

.timeline-item:hover .timeline-content::after {
    opacity: 1;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 163, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-cyan-light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.timeline-item:hover .timeline-icon {
    background: linear-gradient(135deg, var(--dark-blue-primary), var(--dark-cyan-light));
    color: white;
    transform: rotate(-5deg);
}

.timeline-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-text-primary);
    margin-bottom: 18px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.timeline-content p {
    font-size: 17px;
    color: var(--dark-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.timeline-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.timeline-highlights li {
    font-size: 13px;
    color: var(--dark-cyan-light);
    background: rgba(0, 102, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--dark-border-color);
}

.timeline-highlights li a {
    color: var(--dark-cyan-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.timeline-highlights li a:hover {
    color: var(--dark-text-primary);
    text-decoration: underline;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.process-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-card-gradient);
    border: 2px solid var(--dark-border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

.process-stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--dark-border-hover);
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        0 0 80px rgba(0, 102, 255, 0.2);
}

.process-stat-item .stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 163, 255, 0.1));
    border-radius: 14px;
    transition: all 0.3s ease;
}

.process-stat-item .stat-icon svg {
    stroke: #0066FF;
    transition: all 0.3s ease;
}

.process-stat-item:hover .stat-icon {
    background: linear-gradient(135deg, #0066FF, #0080FF);
    transform: scale(1.05);
}

.process-stat-item:hover .stat-icon svg {
    stroke: #ffffff;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-accent-color);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.process-stat-item .stat-label {
    font-size: 14px;
    color: var(--dark-text-secondary);
    font-weight: 600;
}

/* ============================================
   CUSTOM SERVICES HOMEPAGE - LIGHT THEME
   ============================================ */

.custom-services-homepage {
    padding: 100px 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-services-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 163, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.custom-services-container-home {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-home-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease;
}

.section-label-home {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 163, 255, 0.05));
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.services-home-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gradient-text-home {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.services-home-description {
    font-size: 19px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.services-home-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
    align-items: stretch;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    height: 100%;
}

.service-preview-card {
    background: #0066FF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 16px 40px rgba(0, 102, 255, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-preview-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    background: #0066FF;
    box-shadow: 
        0 8px 24px rgba(0, 102, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.preview-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    color: #0066FF;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.preview-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.preview-icon svg {
    color: #ffffff;
    transition: transform 0.4s ease;
}

.service-preview-card:hover .preview-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.service-preview-card:hover .preview-icon svg {
    color: #ffffff;
    transform: scale(1.1);
}

.service-preview-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-preview-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-features span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.services-cta-card {
    background: linear-gradient(145deg, #0066FF 0%, #0052CC 100%);
    border-radius: 30px;
    padding: 50px 45px;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 0.8s ease;
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.cta-why-section h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-benefits svg {
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat {
    text-align: center;
}

.stat-num {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-teaser {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.pricing-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.pricing-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.pricing-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.btn-services-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: #ffffff;
    border-radius: 50px;
    color: #0066FF;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-services-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.btn-services-main svg {
    transition: transform 0.3s ease;
}

.btn-services-main:hover svg {
    transform: translateX(5px);
}

.link-contact-instead {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.link-contact-instead:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* About CTA Button */
.about-cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

.btn-about-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 38px;
    background: #0066FF;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    border: 2px solid #0066FF;
}

.btn-about-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.4);
    background: #0080FF;
    border-color: #0080FF;
}

.btn-about-main svg {
    transition: transform 0.3s ease;
}

.btn-about-main:hover svg {
    transform: translateX(5px);
}

.services-process-preview {
    background: #0066FF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 45px 50px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.process-preview-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
}

.process-preview-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.process-preview-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.step-arrow {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 900;
    margin: 0 10px;
    align-self: center;
}

/* ============================================
   CLIENT RESULTS - CONSISTENT DARK THEME (REFERENCE)
   ============================================ */

.client-results {
    padding: 120px 40px;
    background: var(--dark-bg-gradient);
    position: relative;
    overflow: hidden;
}

.client-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 163, 255, 0.08) 0%, transparent 50%);
    animation: resultsGlow 18s ease-in-out infinite;
}

.client-results-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.client-results .section-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--dark-text-primary);
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.client-results .section-description {
    font-size: 20px;
    color: var(--dark-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 80px;
}

.result-card {
    background: var(--dark-card-gradient);
    backdrop-filter: blur(20px);
    border: 2px solid var(--dark-border-color);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

.result-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.result-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        0 0 80px rgba(0, 102, 255, 0.2);
}

.result-card:hover::after {
    opacity: 1;
}

.result-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.05));
    border-radius: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.result-icon svg {
    width: 32px;
    height: 32px;
    stroke: #0066FF;
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    background: linear-gradient(135deg, #0066FF, #0080FF);
    transform: translateY(-4px) rotate(-5deg);
}

.result-card:hover .result-icon svg {
    stroke: #ffffff;
    transform: scale(1.1);
}

.result-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.result-card p {
    font-size: 15px;
    color: var(--dark-text-secondary);
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.final-cta-container {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: #0066FF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-secondary-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary-dark {
    background: transparent;
    color: #0a1929;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(10, 25, 41, 0.2);
}

.btn-secondary-dark:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: #0066FF;
    color: #0066FF;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-home-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-cta-card {
        position: static;
        max-width: 700px;
        margin: 0 auto;
    }

    .services-preview-grid {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .home-hero-title {
        font-size: 42px;
    }
    
    .home-hero-description {
        font-size: 17px;
    }
    
    .home-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .plugins-grid {
        grid-template-columns: 1fr;
    }
    
    /* FIX 1: Plugin Images - Full Width */
    .plugin-thumbnail {
        min-height: 200px;
        max-height: 300px;
    }
    
    .plugin-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .plugin-features {
        grid-template-columns: 1fr;
    }
    
    .plugin-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .plugin-price {
        justify-content: center;
    }
    
    .plugin-btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* FIX 2: Process Timeline - Better Mobile Layout */
    .why-choose-process {
        padding: 80px 20px;
    }
    
    .why-choose-process .section-title {
        font-size: 36px;
    }
    
    .why-choose-process .section-description {
        font-size: 17px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .timeline-number {
        position: static;
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin: 0 auto 20px;
    }
    
    .timeline-content {
        padding: 30px 25px;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .timeline-content p {
        font-size: 15px;
    }

    .process-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        padding: 40px 30px;
    }
    
    .custom-services-homepage {
        padding: 80px 20px;
    }
    
    .services-home-title {
        font-size: 40px;
    }

    .services-home-description {
        font-size: 17px;
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-preview-card {
        padding: 30px 25px;
    }

    .services-cta-card {
        padding: 40px 30px;
    }

    .cta-stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* FIX 3: Simple Process - 2 Column Grid WITH Arrows */
    .process-preview-steps {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px 10px;
        align-items: center;
        justify-items: center;
    }
    
    /* Step 1 */
    .process-preview-step:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    /* Arrow after Step 1 */
    .step-arrow:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* Step 2 */
    .process-preview-step:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }
    
    /* Arrow after Step 2 - Point downward */
    .step-arrow:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        transform: rotate(90deg);
    }
    
    /* Step 3 */
    .process-preview-step:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
    }
    
    /* Arrow after Step 3 */
    .step-arrow:nth-child(6) {
        grid-column: 2;
        grid-row: 3;
    }
    
    /* Step 4 */
    .process-preview-step:nth-child(7) {
        grid-column: 3;
        grid-row: 3;
    }
    
    .process-preview-step {
        text-align: center;
    }

    .services-process-preview {
        padding: 35px 25px;
    }
    
    .client-results {
        padding: 80px 20px;
    }
    
    .client-results .section-title {
        font-size: 36px;
    }
    
    .client-results .section-description {
        font-size: 17px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-secondary-dark {
        width: 100%;
        justify-content: center;
    }
    
    .final-cta {
        padding: 80px 20px;
    }
    
    .final-cta .cta-content h2 {
        font-size: 36px;
    }
    
    .final-cta .cta-content p {
        font-size: 18px;
    }
    
    .home-hero-buttons {
        flex-direction: column;
    }
    
    .home-hero-buttons .btn-primary,
    .home-hero-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home-hero-title {
        font-size: 32px;
    }
    
    /* Plugin images remain full width on small screens */
    .plugin-thumbnail {
        min-height: 180px;
        max-height: 300px;
    }
    
    .plugin-thumbnail img {
        object-fit: cover;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }

    .services-home-title {
        font-size: 32px;
    }

    .service-preview-card {
        padding: 25px 20px;
    }

    .service-preview-card h3 {
        font-size: 19px;
    }

    .services-cta-card {
        padding: 35px 25px;
    }

    .cta-why-section h3 {
        font-size: 20px;
    }

    .btn-services-main {
        padding: 18px 32px;
        font-size: 16px;
    }

    .process-preview-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    /* Adjust the 2-column grid for very small screens */
    .process-preview-steps {
        gap: 15px 8px;
    }
    
    .step-arrow {
        font-size: 20px;
        margin: 0 5px;
    }

    .step-num {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-label {
        font-size: 12px;
    }
}

/* Final CTA Section Button Override - HIGHEST SPECIFICITY */
.final-cta .btn-primary,
.final-cta a.btn-primary,
body .final-cta .btn-primary,
body .final-cta a.btn-primary {
    background: #ffffff !important;
    color: #0066FF !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.final-cta .btn-primary:hover,
.final-cta a.btn-primary:hover,
body .final-cta .btn-primary:hover,
body .final-cta a.btn-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
    background: #ffffff !important;
    color: #0066FF !important;
}