/* ===== DARK THEME OVERRIDE FOR AI PRODUCTION ===== */

body.dark-theme {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff2d55;
    --dark-bg: #0a0a0a;
    --light-bg: #111114;
    --text-dark: #ffffff;
    --text-light: #000000;
    --text-gray: rgba(255,255,255,0.4);
    --accent-gradient: linear-gradient(135deg, #ff2d55 0%, #ff6b35 100%);

    background: #0a0a0a;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== NAV SWITCHER ===== */
.nav-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}
.nav-switch-btn {
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}
.nav-switch-btn:hover { color: #ffffff; }
.nav-switch-btn.active {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(255, 45, 85, 0.3);
}

/* ===== NAVBAR ===== */
body.dark-theme .navbar {
    background-color: rgba(10, 10, 10, 0.9) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.dark-theme .navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95) !important;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.dark-theme .nav-container {
    grid-template-columns: auto auto 1fr auto;
}
body.dark-theme .logo { color: #ffffff; }
.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.dark-theme .nav-link { color: rgba(255,255,255,0.4); }
body.dark-theme .nav-link:hover { color: #ffffff; opacity: 1; }
body.dark-theme .nav-link::after { background: var(--accent-gradient); }
body.dark-theme .hamburger span { background: #ffffff; }

body.dark-theme .btn-primary {
    background: var(--accent-gradient);
    box-shadow: 0 4px 20px rgba(255, 45, 85, 0.2);
}
body.dark-theme .btn-primary:hover {
    background: linear-gradient(135deg, #ff4d6d 0%, #ff8c5a 100%);
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.35);
}

/* ===== HERO ===== */
body.dark-theme .hero {
    background: #0a0a0a;
}
body.dark-theme .hero-overlay {
    background: radial-gradient(ellipse at 30% 40%, rgba(255, 45, 85, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
                rgba(0, 0, 0, 0.3);
}
body.dark-theme .hero-title { color: #ffffff; }
body.dark-theme .hero-description { color: rgba(255,255,255,0.6); }

/* ===== TEXT INSERT ===== */
body.dark-theme .text-insert-section {
    background: #0a0a0a;
}
body.dark-theme .text-insert-content {
    color: rgba(255,255,255,0.5);
}

/* ===== ACCORDION BG IMAGES ===== */
.accordion-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.dark-theme .accordion-overlay {
    background: rgba(0, 0, 0, 0.55);
}

body.dark-theme .services-accordion-section {
    background: #0a0a0a;
}

body.dark-theme .accordion-title {
    color: #ffffff;
}
body.dark-theme .accordion-desc {
    color: rgba(255,255,255,0.6);
}
body.dark-theme .accordion-dot {
    background: var(--accent-color);
}

/* ===== PORTFOLIO ===== */
body.dark-theme .portfolio {
    background: #0a0a0a;
}
body.dark-theme .portfolio-title { color: #ffffff; }
body.dark-theme .portfolio-card {
    background: #111114;
}
body.dark-theme .portfolio-info h3 { color: #ffffff; }

/* ===== BRANDS / TECH STACK ===== */
body.dark-theme .brands-section-redesigned {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
}
body.dark-theme .brands-top h2 { color: #ffffff; }
body.dark-theme .brands-top p { color: rgba(255,255,255,0.4); }
body.dark-theme .work-label { color: var(--accent-color); }
body.dark-theme .brand-text {
    color: rgba(255,255,255,0.12);
    -webkit-text-stroke-color: rgba(255,255,255,0.12);
}
body.dark-theme .brand-item:hover .brand-text {
    color: rgba(255, 45, 85, 0.3);
    -webkit-text-stroke-color: rgba(255, 45, 85, 0.3);
}

/* ===== CONTACT ===== */
body.dark-theme .contact-page-section {
    background: #111114;
}
body.dark-theme .contact-page-title { color: #ffffff; }
body.dark-theme .contact-page-subtitle { color: rgba(255,255,255,0.4); }

body.dark-theme .contact-form-dark {
    background: transparent;
}
body.dark-theme .contact-form-dark label {
    color: rgba(255,255,255,0.4);
}
body.dark-theme .contact-form-dark input,
body.dark-theme .contact-form-dark textarea,
body.dark-theme .contact-form-dark select {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #ffffff;
}
body.dark-theme .contact-form-dark input:focus,
body.dark-theme .contact-form-dark textarea:focus,
body.dark-theme .contact-form-dark select:focus {
    border-color: rgba(255, 45, 85, 0.3);
}
body.dark-theme .contact-form-dark input::placeholder,
body.dark-theme .contact-form-dark textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

body.dark-theme .submit-btn-dark {
    background: var(--accent-gradient);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 45, 85, 0.2);
}
body.dark-theme .submit-btn-dark:hover {
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.35);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
body.dark-theme .footer-clean {
    background: #050506;
    border-top: 1px solid rgba(255,255,255,0.06);
}
body.dark-theme .footer-icon { color: rgba(255,255,255,0.3); }
body.dark-theme .footer-label { color: rgba(255,255,255,0.25); }
body.dark-theme .footer-link-clean { color: rgba(255,255,255,0.6); }
body.dark-theme .footer-link-clean:hover { color: var(--accent-color); }
body.dark-theme .footer-copyright { color: rgba(255,255,255,0.15); }

/* ===== STATS SECTION ===== */
.ai-stats-section {
    background: #0a0a0a;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.ai-stat-value {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.ai-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}

/* ===== WHY AI SECTION ===== */
.ai-why-section {
    background: #0e0e12;
    padding: 120px 0;
}
.ai-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.ai-why-left h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 16px;
}
.ai-why-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ai-why-col {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.ai-why-old { background: rgba(255,255,255,0.02); }
.ai-why-new { background: rgba(255, 45, 85, 0.03); border-color: rgba(255, 45, 85, 0.1); }
.ai-why-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-why-old h4 { color: rgba(255,255,255,0.3); }
.ai-why-new h4 { color: var(--accent-color); }
.ai-why-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.ai-why-col li { font-size: 14px; color: rgba(255,255,255,0.5); padding-left: 20px; position: relative; line-height: 1.5; }
.ai-why-old li::before { content: '×'; position: absolute; left: 0; color: rgba(255, 68, 68, 0.4); font-weight: 700; }
.ai-why-new li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-color); font-weight: 700; }

/* ===== PROCESS SECTION ===== */
.ai-process-section {
    background: #0a0a0a;
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ai-process-header {
    margin-bottom: 80px;
}
.ai-process-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 16px;
}
.ai-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ai-process-step {
    padding: 48px 36px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: border-color 0.3s;
}
.ai-process-step:hover { border-color: rgba(255, 45, 85, 0.15); }
.ai-process-num {
    font-size: 64px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}
.ai-process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.ai-process-step p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
}

/* ===== PRICING SECTION ===== */
.ai-pricing-section {
    background: #0e0e12;
    padding: 120px 0;
}
.ai-pricing-header {
    text-align: center;
    margin-bottom: 80px;
}
.ai-pricing-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 16px;
    margin-bottom: 20px;
}
.ai-pricing-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.ai-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}
.ai-pricing-card {
    padding: 48px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: border-color 0.3s;
    position: relative;
}
.ai-pricing-card:hover { border-color: rgba(255,255,255,0.12); }
.ai-pricing-featured {
    border-color: rgba(255, 45, 85, 0.12);
    background: rgba(255, 45, 85, 0.02);
}
.ai-pricing-featured:hover { border-color: rgba(255, 45, 85, 0.25); }
.ai-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}
.ai-pricing-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.ai-pricing-price {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.ai-pricing-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 36px;
}
.ai-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ai-pricing-card li {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.ai-pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 12px;
}
.ai-pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}
.ai-pricing-btn:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}
.ai-pricing-btn-primary {
    background: var(--accent-gradient);
    border: none;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 45, 85, 0.2);
}
.ai-pricing-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 45, 85, 0.35);
    transform: translateY(-2px);
}

/* ===== FAQ SECTION ===== */
.ai-faq-section {
    background: #0a0a0a;
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ai-faq-header {
    margin-bottom: 60px;
}
.ai-faq-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 16px;
}
.ai-faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ai-faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: rgba(255,255,255,0.02);
}
.ai-faq-item:hover { border-color: rgba(255,255,255,0.1); }
.ai-faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}
.ai-faq-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.2);
    transition: transform 0.3s ease, color 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.ai-faq-item.open .ai-faq-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}
.ai-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.ai-faq-item.open .ai-faq-answer { max-height: 500px; }
.ai-faq-answer p {
    padding: 0 28px 24px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .ai-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ai-why-grid { grid-template-columns: 1fr; gap: 48px; }
    .ai-process-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .ai-stats-section { padding: 60px 0; }
    .ai-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ai-stat-value { font-size: 40px; }
    .ai-why-section { padding: 80px 0; }
    .ai-why-compare { grid-template-columns: 1fr; }
    .ai-process-section { padding: 80px 0; }
    .ai-process-grid { grid-template-columns: 1fr; }
    .ai-pricing-section { padding: 80px 0; }
    .ai-faq-section { padding: 80px 0; }
}

/* ===== SCROLLBAR ===== */
body.dark-theme ::-webkit-scrollbar { width: 4px; }
body.dark-theme ::-webkit-scrollbar-track { background: #0a0a0a; }
body.dark-theme ::-webkit-scrollbar-thumb { background: rgba(255, 45, 85, 0.2); border-radius: 2px; }

/* ===== SELECTION ===== */
body.dark-theme ::selection {
    background: rgba(255, 45, 85, 0.25);
    color: #fff;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
    body.dark-theme .nav-menu.active {
        background: rgba(10, 10, 10, 0.98);
    }
    body.dark-theme .nav-menu.active .nav-link {
        color: rgba(255,255,255,0.6);
    }
}

/* ===== PROGRESS BAR OVERRIDE ===== */
body.dark-theme ~ div[style*="position: fixed"][style*="top: 0"] {
    background: var(--accent-gradient) !important;
}
