/* ===== PAIN POINTS SECTION ===== */
.pain-section {
    padding: 100px 0 60px;
    background: #FAFBFC;
}

.pain-section .section-label {
    display: inline-block;
    background: rgba(255,107,0,0.08);
    color: #FF6B00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pain-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B1A2F;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pain-section .section-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.pain-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF9A44);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(255,107,0,0.15);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B00, #FF8C33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255,107,0,0.25);
}

.pain-card p {
    color: #555;
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
}

.pain-closing {
    background: linear-gradient(135deg, #0B1A2F, #162D50);
    color: #fff;
    padding: 28px 40px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 500;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.pain-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pain-closing span {
    position: relative;
    z-index: 1;
}

.pain-closing strong {
    color: #FF6B00;
}

/* ===== INTRO / WHAT IS AI SEO ===== */
.ai-intro {
    padding: 90px 0;
    background: #fff;
}

.ai-intro .section-label {
    display: inline-block;
    background: rgba(255,107,0,0.08);
    color: #FF6B00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ai-intro h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0B1A2F;
    margin-bottom: 30px;
    letter-spacing: -0.015em;
}

.ai-intro p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 22px;
}

.ai-intro .highlight-box {
    background: linear-gradient(135deg, #FFF8F2, #FFF1E6);
    border-left: 4px solid #FF6B00;
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.ai-intro .highlight-box p {
    color: #333;
    font-weight: 500;
    margin: 0;
}

.two-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 35px 0;
}

.pillar-card {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #eef0f4;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.pillar-card .pillar-num {
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B00;
    opacity: 0.3;
    margin-bottom: 10px;
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B1A2F;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ===== WORKFLOW SECTION ===== */
.ai-workflow {
    padding: 80px 0 70px;
    background: #0A1428;
    position: relative;
    overflow: hidden;
}

.ai-workflow::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 350px at 15% 40%, rgba(0,245,255,0.02) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0,245,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.015) 1px, transparent 1px);
    background-size: 100%, 50px 50px, 50px 50px;
    pointer-events: none;
}

.ai-workflow::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,98,0,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-workflow .container {
    position: relative;
    z-index: 2;
}

.ai-workflow .section-label {
    display: inline-block;
    background: rgba(255,98,0,0.12);
    color: #FF6200;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,98,0,0.15);
}

.ai-workflow h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.ai-workflow .section-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.48);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.wf-card {
    background: rgba(30,41,55,0.55);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 24px 22px;
    border: 1px solid rgba(0,245,255,0.07);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,245,255,0.18), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wf-card:hover {
    background: rgba(30,41,55,0.8);
    border-color: rgba(0,245,255,0.18);
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.28), 0 0 20px rgba(0,245,255,0.03);
}

.wf-card:hover::before {
    opacity: 1;
}

.wf-card .wf-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6200, #FF8C33);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 5px 16px rgba(255,98,0,0.35), 0 0 20px rgba(0,245,255,0.05);
    transition: all 0.3s ease;
}

.wf-card:hover .wf-icon {
    box-shadow: 0 7px 20px rgba(255,98,0,0.45), 0 0 28px rgba(0,245,255,0.08);
    transform: scale(1.06);
}

.wf-card .wf-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.wf-card h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.wf-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
    margin: 0;
}

.wf-image {
    max-width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.3));
}

.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Section divider */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, #0A1428, rgba(0,245,255,0.08) 30%, rgba(255,98,0,0.06) 70%, #0F172A);
}

/* ===== HUMAN + AI SECTION ===== */
.ai-human {
    padding: 80px 0 70px;
    background: #0F172A;
    position: relative;
    overflow: hidden;
}

.ai-human::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 450px 300px at 80% 50%, rgba(255,98,0,0.02) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0,245,255,0.008) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.008) 1px, transparent 1px);
    background-size: 100%, 50px 50px, 50px 50px;
    pointer-events: none;
}

.ai-human .container {
    position: relative;
    z-index: 2;
}

.ai-human h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.ai-human p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}

.ai-human p strong {
    color: #fff;
}

.ai-human .human-img {
    max-width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.3));
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.stat-box {
    text-align: center;
    padding: 20px 14px;
    background: rgba(30,41,55,0.5);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(0,245,255,0.07);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(255,98,0,0.2);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.stat-box .stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF6200;
    display: block;
}

.stat-box .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    margin-top: 4px;
    display: block;
}

/* ===== SERVICES SECTION ===== */
.ai-services {
    padding: 80px 0 70px;
    background: #0A1428;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ai-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(0,245,255,0.02) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0,245,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.015) 1px, transparent 1px);
    background-size: 100%, 50px 50px, 50px 50px;
    pointer-events: none;
}

.ai-services::after {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,98,0,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-services .container {
    position: relative;
    z-index: 2;
}

.ai-services .section-label {
    display: inline-block;
    background: rgba(255,98,0,0.12);
    color: #FF6200;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,98,0,0.15);
}

.ai-services h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ai-services .section-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.48);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.svc-card {
    background: rgba(30,41,55,0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,245,255,0.07);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,245,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.svc-card:hover {
    background: rgba(30,41,55,0.8);
    border-color: rgba(0,245,255,0.18);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,245,255,0.03);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card .svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6200, #FF8C33);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 5px 18px rgba(255,98,0,0.35), 0 0 22px rgba(0,245,255,0.05);
    transition: all 0.3s ease;
}

.svc-card:hover .svc-icon {
    box-shadow: 0 7px 22px rgba(255,98,0,0.45), 0 0 30px rgba(0,245,255,0.08);
    transform: scale(1.06);
}

.svc-card .svc-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.svc-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.svc-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.48);
    margin: 0;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.svc-grid .svc-card-wrap:last-child {
    grid-column: 2;
}

/* ===== PROCESS SECTION ===== */
.ai-process {
    padding: 80px 0 80px;
    background: #0F172A;
    position: relative;
    overflow: hidden;
}

.ai-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 80% 60%, rgba(0,245,255,0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0,245,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.01) 1px, transparent 1px);
    background-size: 100%, 50px 50px, 50px 50px;
    pointer-events: none;
}

.ai-process .container {
    position: relative;
    z-index: 2;
}

.ai-process .section-label {
    display: inline-block;
    background: rgba(255,98,0,0.12);
    color: #FF6200;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,98,0,0.15);
}

.ai-process h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 45px;
    letter-spacing: -0.02em;
}

/* Timeline wrapper */
.process-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

/* Vertical glowing line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(0,245,255,0.05) 0%,
        rgba(0,245,255,0.25) 15%,
        rgba(0,245,255,0.25) 85%,
        rgba(0,245,255,0.05) 100%
    );
    z-index: 0;
}

/* Pulsing glow on the line */
.process-timeline::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 32px;
    bottom: 32px;
    width: 10px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0,245,255,0.08) 50%,
        transparent 100%
    );
    filter: blur(4px);
    z-index: 0;
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    padding: 24px 26px;
    background: rgba(30,41,55,0.5);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(0,245,255,0.07);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:hover {
    background: rgba(30,41,55,0.85);
    border-color: rgba(0,245,255,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transform: translateX(6px);
}

.process-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6200, #FF8C33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow:
        0 0 20px rgba(255,98,0,0.35),
        0 0 40px rgba(0,245,255,0.08);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 0;
}

/* ===== WHY CHOOSE SECTION ===== */
.ai-why {
    padding: 90px 0;
    background: #FAFBFC;
}

.ai-why .section-label {
    display: inline-block;
    background: rgba(255,107,0,0.08);
    color: #FF6B00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ai-why h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0B1A2F;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef0f4;
    transition: all 0.3s ease;
}

.why-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transform: translateX(4px);
}

.why-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.why-check svg {
    width: 16px;
    height: 16px;
    color: #FF6B00;
}

.why-item p {
    margin: 0;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
}

/* ===== INDUSTRIES SECTION ===== */
.ai-industries {
    padding: 90px 0;
    background: #fff;
}

.ai-industries .section-label {
    display: inline-block;
    background: rgba(255,107,0,0.08);
    color: #FF6B00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ai-industries h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0B1A2F;
    margin-bottom: 50px;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ind-item {
    padding: 28px 16px;
    background: #f8f9fb;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    color: #0B1A2F;
    font-size: 0.95rem;
    border: 1px solid #eef0f4;
    transition: all 0.3s ease;
}

.ind-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-color: rgba(255,107,0,0.2);
    transform: translateY(-3px);
}

.ind-item .ind-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ind-item .ind-icon svg {
    width: 22px;
    height: 22px;
    color: #FF6B00;
}

.ind-img {
    max-width: 100%;
    border-radius: 16px;
}

/* ===== FAQ SECTION ===== */
.ai-faq {
    padding: 80px 0;
    background: #0A1428;
    position: relative;
    overflow: hidden;
}

.ai-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 350px at 75% 30%, rgba(0,245,255,0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0,245,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.012) 1px, transparent 1px);
    background-size: 100%, 50px 50px, 50px 50px;
    pointer-events: none;
}

.ai-faq .container {
    position: relative;
    z-index: 2;
}

.ai-faq .section-label {
    display: inline-block;
    background: rgba(255,98,0,0.12);
    color: #FF6200;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,98,0,0.15);
}

.ai-faq h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-faq .accordion-item {
    border: 1px solid rgba(0,245,255,0.07) !important;
    border-radius: 14px !important;
    overflow: hidden;
    background: rgba(30,41,55,0.5) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 0;
}

.ai-faq .accordion-item:hover {
    border-color: rgba(0,245,255,0.18) !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.ai-faq .accordion-button {
    background: transparent !important;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff !important;
    padding: 18px 22px;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.ai-faq .accordion-button:focus {
    box-shadow: none !important;
}

.ai-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #FF6200, #FF8C33) !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 14px 14px 0 0;
}

.ai-faq .accordion-button::after {
    filter: brightness(0) invert(1) !important;
    opacity: 0.4;
    width: 16px;
    height: 16px;
    background-size: 16px;
    flex-shrink: 0;
    margin-left: 12px;
}

.ai-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
    opacity: 1;
}

.ai-faq .accordion-collapse {
    background: rgba(30,41,55,0.3) !important;
}

.ai-faq .accordion-body {
    padding: 18px 22px 20px;
    color: rgba(255,255,255,0.52) !important;
    line-height: 1.8;
    font-size: 0.92rem;
    border-top: 1px solid rgba(0,245,255,0.05);
}

/* ===== AUTHOR ===== */
.ai-author {
    padding: 50px 0;
    background: #0D1E33;
}

.author-box {
    background: rgba(30,41,55,0.5);
    backdrop-filter: blur(8px);
    padding: 30px 34px;
    border-radius: 14px;
    border: 1px solid rgba(0,245,255,0.07);
    border-left: 4px solid #FF6200;
}

.author-box p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin: 0;
}

.author-box strong {
    color: #fff;
}

/* ===== CTA SECTION ===== */
.ai-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B1A2F 0%, #122A4A 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-cta .container {
    position: relative;
    z-index: 2;
}

.ai-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.ai-cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer {
    background: #1D1D1D !important;
    color: #fff;
    padding: 3rem 0 0;
}

footer a {
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    opacity: 1;
}

footer .link-hover {
    font-size: 1rem;
    padding: .2rem 0;
    text-transform: capitalize;
    color: #fff;
    opacity: .75;
}

footer .link-hover:hover {
    opacity: 1;
}

footer .social__list a {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255,255,255,.2);
}

footer .social__list a svg {
    width: 1rem;
    height: 1rem;
}

footer .social__list a svg path {
    fill: #fff;
}

.backTop {
    background-color: #FF6B00;
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
    z-index: 99;
    display: none;
    border-radius: 50%;
}

.backTop.show {
    display: inline-flex;
}

.fs-13 {
    font-size: 13px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .ai-hero::after,
    .hero-searchbar .typing-text,
    .orbit-ring,
    .hero-glow,
    .hero-lines .line-path {
        animation: none !important;
    }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
