/* ===== CONSULTING PAGE — WHAT WE OFFER ===== */

.offer-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.offer-tile {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    cursor: default;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.offer-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.offer-tile__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}
.offer-tile:hover .offer-tile__bg {
    transform: scale(1.06);
}
.offer-tile__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 28px;
    background: linear-gradient(to top, rgba(10,5,20,0.92) 0%, rgba(10,5,20,0.55) 55%, rgba(10,5,20,0.15) 100%);
    flex: 1;
}
.offer-tile__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent, #8455ef);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.offer-tile__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.15);
}
.offer-tile__icon .material-symbols-outlined {
    font-size: 1.3rem;
    color: var(--accent, #8455ef);
}
.offer-tile__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.offer-tile__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.offer-tile__line {
    width: 32px;
    height: 2px;
    background: var(--accent, #8455ef);
    border-radius: 2px;
    margin-top: 14px;
    transition: width 0.3s ease;
}
.offer-tile:hover .offer-tile__line {
    width: 56px;
}

@media (max-width: 1024px) {
    .offer-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .offer-bento { grid-template-columns: 1fr; }
}

/* ===== CONSULTING PAGE — INDUSTRIES SECTION ===== */

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.industry-item {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border: 1.5px solid rgba(186,158,255,0.25);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(132,85,239,0.07);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}
.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(132,85,239,0.15);
    border-color: rgba(132,85,239,0.4);
}
.industry-item-thumb {
    flex: 0 0 200px;
    width: 200px;
    overflow: hidden;
    border-radius: 1rem 0 0 1rem;
}
.industry-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.industry-item:hover .industry-item-thumb img {
    transform: scale(1.06);
}
.industry-item-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 24px 28px;
}
.industry-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.industry-item-icon .material-symbols-outlined {
    font-size: 1.5rem;
}
.industry-item-text {
    flex: 1;
}
.industry-item-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ba9eff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.industry-item-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}
.industry-item-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}
.industry-item-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ba9eff, #3adffa);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.industry-item:hover .industry-item-bar {
    opacity: 1;
}

/* ===== CONSULTING PAGE — WHY CHOOSE GENAI ===== */

#why-genai > .max-w-7xl,
#pro-why-genai > .max-w-7xl {
   /* display: grid;*/
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.why-split-left {
    position: sticky;
    top: 140px;
}
.why-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.why-stat-item {
    text-align: center;
}
.why-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, #ba9eff, #3adffa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.why-stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}
.why-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}
.why-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.why-acc-item {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-acc-item:hover,
.why-acc-item.open {
    border-color: rgba(186,158,255,0.5);
    box-shadow: 0 8px 32px rgba(132,85,239,0.08);
}
.why-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.why-acc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(186,158,255,0.15), rgba(58,223,250,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-acc-icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: #8455ef;
}
.why-acc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    flex: 1;
}
.why-acc-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ba9eff;
    letter-spacing: 0.05em;
}
.why-acc-chevron {
    font-size: 1.25rem;
    color: #9ca3af;
    transition: transform 0.3s ease;
}
.why-acc-item.open .why-acc-chevron {
    transform: rotate(180deg);
}
.why-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}
.why-acc-item.open .why-acc-body {
    max-height: 200px;
    padding: 0 24px 20px;
}
.why-acc-body p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== CONSULTING PAGE — AI CAPABILITIES ===== */

.ai-cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ai-cap-item {
    background: #ffffff;
    border: 1px solid rgba(186,158,255,0.18);
    border-radius: 1.25rem;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(132,85,239,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ai-cap-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(132,85,239,0.12);
    border-color: rgba(132,85,239,0.3);
}
.ai-cap-t {
    grid-column: span 1;
}
.ai-cap-q {
    grid-column: span 1;
}
.ai-cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(132,85,239,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ai-cap-icon .material-symbols-outlined {
    font-size: 1.4rem;
    color: #8455ef;
}
.ai-cap-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}
.ai-cap-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
}

/* ===== CONSULTING PAGE — OUR PROCESS ===== */

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.process-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e5e7eb;
    z-index: 0;
}
.process-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #ba9eff, #3adffa);
    border-radius: 2px;
    transition: height 0.6s ease;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.process-step {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    gap: 20px;
}
.process-step:nth-child(odd) .process-card {
    grid-column: 1;
    justify-self: end;
}
.process-step:nth-child(odd) .process-node {
    grid-column: 2;
}
.process-step:nth-child(odd)::after {
    content: '';
    grid-column: 3;
}
.process-step:nth-child(even)::before {
    content: '';
    grid-column: 1;
}
.process-step:nth-child(even) .process-node {
    grid-column: 2;
}
.process-step:nth-child(even) .process-card {
    grid-column: 3;
    justify-self: start;
}
.process-node {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    grid-row: 1;
}
.process-node-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8455ef, #3adffa);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.process-node-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(186,158,255,0.3);
    animation: pulseDot 2s ease-in-out infinite;
}
.process-card {
    max-width: 380px;
    width: 100%;
    grid-row: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(132,85,239,0.12);
}
.process-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(186,158,255,0.15), rgba(58,223,250,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-icon .material-symbols-outlined {
    font-size: 1.3rem;
    color: #8455ef;
}

/* ===== CONSULTING PAGE — CTA CONTACT ===== */

#cta > .max-w-7xl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    text-decoration: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.cta-contact-item:hover {
    border-color: rgba(186,158,255,0.5);
    box-shadow: 0 8px 24px rgba(132,85,239,0.08);
    transform: translateY(-2px);
}
.cta-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(186,158,255,0.15), rgba(58,223,250,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-contact-icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: #8455ef;
}
.cta-contact-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 2px;
}
.cta-contact-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}
.cta-contact-arrow {
    margin-left: auto;
    font-size: 1.1rem;
    color: #ba9eff;
    transition: transform 0.2s ease;
}
.cta-contact-item:hover .cta-contact-arrow {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .ai-cap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #why-genai > .max-w-7xl,
    #pro-why-genai > .max-w-7xl {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-split-left {
        position: static;
    }
    .why-stats {
        justify-content: center;
    }
    .ai-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step,
    .process-step:nth-child(even),
    .process-step:nth-child(odd) {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }
    .process-step:nth-child(odd) .process-node,
    .process-step:nth-child(even) .process-node {
        grid-column: 1;
    }
    .process-step:nth-child(odd) .process-card,
    .process-step:nth-child(even) .process-card {
        grid-column: 2;
        justify-self: start;
    }
    .process-step:nth-child(odd)::after,
    .process-step:nth-child(even)::before {
        display: none;
    }
    .process-line {
        left: 20px;
        transform: none;
    }
    .process-card {
        max-width: 100%;
    }
    #cta > .max-w-7xl {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .industry-item {
        flex-direction: column;
    }
    .industry-item-thumb {
        flex: 0 0 160px;
        width: 100%;
        height: 160px;
        border-radius: 1.25rem 1.25rem 0 0;
    }
    .industry-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ai-cap-grid {
        grid-template-columns: 1fr;
    }
    .why-stats {
        flex-direction: column;
        gap: 16px;
    }
    .why-stat-divider {
        width: 40px;
        height: 1px;
    }
}
