@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #0ea5e9;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}



/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0; /* Removing main padding to handle inner containers */
}

header .container:last-child {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

header.scrolled .container:last-child {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

header.scrolled {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Info Bar */
.top-info-bar {
    background: #f8fafc;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.info-items {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-weight: 500;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

header .logo {
    /* Styles specific to header logo */
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover i {
    opacity: 1;
    transform: translateY(-2px);
}

.btn-call {
    padding: 0.9rem 2.2rem !important;
    border-radius: 12px !important;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-lg {
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding-top: 80px; /* Adjusting for fixed header */
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap; /* Keep side-by-side */
}

.btn-phone {
    background: #4338ca; /* Slightly darker purple for contrast or same */
}

/* Features */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Brands Repair Section */
.brands-repair {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.brands-repair::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.brands-repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand-card:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.brand-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-card:hover i {
    opacity: 1;
    transform: scale(1.2);
}

.brand-card span {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .brands-repair-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-card {
        padding: 1.5rem 1rem;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h4::before {
    content: '?';
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-img {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid var(--white);
    transition: all 0.5s ease;
}

.about-img:hover {
    transform: rotate(-1deg) scale(1.02);
}

.about-img img {
    width: 100%;
    display: block;
}

/* Testimonials */
.testimonials {
    background: var(--dark);
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem 2.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 0 !important;
    font-style: normal !important;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.author {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
}

.author-info p {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section .btn-white {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: #0f172a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-disclaimer {
    margin: 4rem 0 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
}

.footer-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    opacity: 0.5;
}

.footer-disclaimer strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.problem-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.problem-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.problem-item p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

/* Process Section */
.process-wrapper {
    position: relative;
    padding: 3rem 0;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.2;
    z-index: 0;
    display: none; /* Desktop only */
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
    }
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.step:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
    border: 3px solid var(--white);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #22c55e;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.floating-cta:hover {
    transform: scale(1.05);
    background: #16a34a;
}

.floating-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.floating-cta:hover i {
    transform: rotate(15deg) scale(1.1);
}

.floating-cta span {
    display: none;
}

@media (min-width: 768px) {
    .floating-cta span {
        display: inline;
    }
}

/* Menu Toggle */
.menu-toggle {
    display: none !important;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem !important;
        transition: all 0.4s ease;
        z-index: 999;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: flex !important; /* Force flex display on mobile when we manage visibility via left */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 80%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a.btn {
        border-bottom: none;
        width: auto;
        padding: 1rem 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    .about {
        grid-template-columns: 1fr;
    }
    .hero {
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a,
    .footer-links li {
        justify-content: center !important;
        text-align: center;
    }


    .footer-grid .logo {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-disclaimer {
        margin: 2rem 0;
        padding: 1.5rem;
        text-align: left;
    }

    footer {
        padding-bottom: 8rem; /* Extra padding for floating CTA */
    }
}

/* Stats Section */
.stats { background: #f1f5f9; padding: 4rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
.stat-item { background: var(--white); padding: 2.5rem 1.5rem; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); transition: all 0.3s ease; }
.stat-item:hover { transform: scale(1.05); border-color: var(--secondary); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.95rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
/* FAQ Section V2 */
.faq-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-graphic-box {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 32px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    position: sticky;
    top: 120px;
}

.faq-graphic-box i:first-child {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
    opacity: 0.15;
}

.faq-graphic-box h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.1;
    font-weight: 700;
}

.faq-graphic-box p {
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.faq-contact-tip {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.faq-contact-tip i {
    font-size: 1.75rem;
    color: var(--primary);
}

.faq-contact-tip span {
    font-size: 0.95rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item-v2 {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-v2:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px -10px rgba(79, 70, 229, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-q-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-v2:hover .faq-q-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.faq-question h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    padding-left: 4.5rem;
}

@media (max-width: 1100px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-graphic-box {
        position: static;
        padding: 3rem;
    }
    
    .faq-answer p {
        padding-left: 0;
    }
    
    .faq-question {
        margin-bottom: 1rem;
    }
}
/* Problems Grid V2 */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.problem-card-v2 { background: var(--white); padding: 3rem 2rem; border-radius: 24px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.03); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.problem-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1); border-color: var(--primary); }
.problem-badge { position: absolute; top: 20px; right: 20px; background: #ecfdf5; color: #059669; padding: 0.4rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; border: 1px solid #d1fae5; }
.problem-icon-v2 { width: 60px; height: 60px; background: #f1f5f9; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--primary); margin-bottom: 2rem; transition: all 0.4s ease; }
.problem-card-v2:hover .problem-icon-v2 { background: var(--primary); color: var(--white); transform: scale(1.1); }
.problem-card-v2 h4 { font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700; color: var(--dark); }
.problem-card-v2 p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.problem-action { font-size: 0.85rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.5rem; opacity: 0.7; transition: all 0.3s ease; }
.problem-card-v2:hover .problem-action { opacity: 1; gap: 0.75rem; }
