/* Home Page Specific Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 123, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 119, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 1s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    animation: slideInRight 1s ease forwards;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.dashboard-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.mockup-screen {
    background: var(--primary-bg);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    background: var(--secondary-bg);
    padding: 1rem;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.mockup-dots span:first-child {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #27ca3f;
}

.mockup-content {
    padding: 1.5rem;
    min-height: 260px;
    max-height: 320px;
}

.project-card {
    background: #000000;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 220px;
    max-height: 280px;
}

.dashboard-logo {
    max-width: 280px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    background-color: #000000;
    padding: 1rem;
    border-radius: 8px;
}

/* Pricing Overlay - positioned outside dashboard */
.pricing-overlay {
    position: absolute;
    top: -30px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.3);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.main-price {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.guarantee-text {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.7;
    white-space: nowrap;
}

.price-tag:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .dashboard-mockup {
        order: 1 !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .pricing-overlay {
        position: static !important;
        order: 2 !important;
        width: 100% !important;
        margin: 0 !important;
        align-items: center !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .price-tag {
        transform: none !important;
        max-width: 280px !important;
        padding: 1rem 1.5rem !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .main-price {
        font-size: 1rem;
    }
    
    .guarantee-text {
        font-size: 0.8rem;
    }
}

.progress-bar {
    background: var(--secondary-bg);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--primary-accent);
    font-weight: 600;
}

/* Stats Section */
.stats {
    background: var(--secondary-bg);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #ff9500 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--heading-font);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-accent);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-accent);
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .certificate-preview {
        position: static;
        margin-top: 2rem;
        animation: none;
    }
    
    .certificate-card {
        transform: none;
        margin: 0 auto;
        max-width: 250px;
    }
    
    .dashboard-mockup {
        transform: none;
        margin: 0 auto;
        max-width: 350px;
        padding: 1rem;
    }
    
    .mockup-content {
        padding: 1rem;
        min-height: 160px;
        max-height: 200px;
    }
    
    .project-card {
        padding: 1rem;
        min-height: 140px;
        max-height: 170px;
    }
    
    .dashboard-logo {
        max-width: 180px;
        max-height: 120px;
        padding: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: none;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .mockup-content {
        padding: 1rem;
    }
    
    .certificate-card {
        padding: 1rem;
        min-width: 180px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: var(--primary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
}

.service-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-accent);
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-accent), var(--secondary-accent));
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technology Stack Section */
.tech-stack {
    padding: 80px 0;
    background: var(--primary-bg);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-align: center;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 123, 0, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-accent);
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* AI Capabilities Section */
.ai-capabilities {
    padding: 80px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.ai-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 123, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 119, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ai-hero-block {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ai-hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.ai-content {
    position: relative;
    z-index: 1;
}

.ai-logo {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.ai-hero-block h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ai-quote {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: relative;
    padding: 0 2rem;
}

.ai-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: Georgia, serif;
}

.ai-quote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    bottom: -2rem;
    right: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: Georgia, serif;
}

.ai-stats-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    flex-wrap: wrap;
}

.ai-stats-simple span:nth-child(even) {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

/* Professional Development Programs Section */
.development-programs {
    padding: 80px 0;
    background: var(--primary-bg);
}

.programs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.programs-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.programs-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.program-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.benefit-item i {
    color: var(--primary-accent);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.programs-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.developer-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    background: var(--card-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 123, 0, 0.2);
    overflow: hidden;
}

.developer-illustration i {
    font-size: 4rem;
    color: var(--primary-accent);
    z-index: 2;
    position: relative;
}

.code-lines {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    opacity: 0.3;
}

.code-line {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    margin-bottom: 10px;
    border-radius: 2px;
    animation: codeWrite 3s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 65%; animation-delay: 0.5s; }
.code-line:nth-child(3) { width: 90%; animation-delay: 1s; }
.code-line:nth-child(4) { width: 55%; animation-delay: 1.5s; }

@keyframes codeWrite {
    0%, 100% { width: 0%; }
    50% { width: var(--target-width, 80%); }
}

/* Affordable Pricing Section */
.affordable-pricing {
    padding: 80px 0;
    background: var(--secondary-bg);
    position: relative;
}

.affordable-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 119, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero {
    position: relative;
    z-index: 1;
}

.pricing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.price-highlight {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,80 M80,20 L20,80" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-guarantee {
    margin-bottom: 3rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff88;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-badge i {
    font-size: 1.2rem;
}

.pricing-guarantee p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.service-scope {
    margin-bottom: 3rem;
}

.service-scope h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scope-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scope-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.scope-item i {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    display: block;
}

.scope-item span {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.scope-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Home Section */
.testimonials-home {
    padding: 80px 0;
    background: var(--primary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--primary-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
}

/* Button Styles */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--button-shadow);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .features-grid,
    .services-grid,
    .tech-categories,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step::after {
        display: none;
    }
    
    .tech-icons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .ai-hero-block {
        padding: 3rem 2rem;
    }
    
    .ai-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .ai-hero-block h2 {
        font-size: 2.5rem;
    }
    
    .ai-quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .ai-stats-simple {
        gap: 1rem;
        font-size: 1rem;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .programs-info h3 {
        font-size: 1.8rem;
    }
    
    .developer-illustration {
        width: 250px;
        height: 250px;
    }
    
    .developer-illustration i {
        font-size: 3rem;
    }
    
    .pricing-content h2 {
        font-size: 2rem;
    }
    
    .price-highlight {
        padding: 1.5rem;
    }
    
    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .scope-item {
        padding: 1rem;
    }
    
    .pricing-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding: 0 0.5rem;
        gap: 2rem;
    }
    
    .hero-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .dashboard-mockup {
        max-width: 300px;
        padding: 0.8rem;
    }
    
    .price-tag {
        max-width: 250px;
        padding: 0.8rem 1.2rem;
    }
    
    .main-price {
        font-size: 0.85rem;
    }
    
    .guarantee-text {
        font-size: 0.7rem;
    }
}