/* =============================================
   EG GPT PRODUCT PAGE - CLEAN LIGHT
   Private enterprise LLM product page
   ============================================= */

body.page-eg-gpt-clean {
    background: var(--stone-50);
}

/* ---- Intro ---- */
.gpt-intro {
    padding: 12rem 4% 7rem;
    background: white;
    position: relative;
    z-index: 1;
}

.gpt-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gpt-intro h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--stone-800);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gpt-intro-lead {
    font-size: 1.15rem;
    color: var(--stone-500);
    line-height: 1.8;
    font-weight: 300;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Problem / Solution ---- */
.gpt-problem {
    padding: 3rem 4% 6rem;
    background: var(--stone-50);
    position: relative;
    z-index: 1;
}

.gpt-problem-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gpt-problem-header {
    max-width: 600px;
    margin-bottom: 3rem;
}

.gpt-problem-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--stone-800);
    margin-bottom: 1rem;
}

.gpt-problem-header p {
    font-size: 1.05rem;
    color: var(--stone-500);
    line-height: 1.8;
    font-weight: 300;
}

.gpt-problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gpt-problem-card {
    border-radius: 16px;
    padding: 2.5rem;
}

.gpt-problem-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

.gpt-problem-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gpt-problem-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.gpt-problem-risk {
    background: var(--stone-100);
    border: 1px solid var(--stone-200);
}

.gpt-problem-risk h3 {
    color: var(--stone-500);
}

.gpt-problem-risk li {
    color: var(--stone-600);
}

.gpt-problem-risk svg {
    color: var(--stone-400);
    flex-shrink: 0;
}

.gpt-problem-solution {
    background: var(--eg-green-light);
    border: 1px solid rgba(61, 155, 107, 0.2);
}

.gpt-problem-solution h3 {
    color: var(--eg-green);
}

.gpt-problem-solution li {
    color: var(--stone-800);
}

.gpt-problem-solution svg {
    color: var(--eg-green);
    flex-shrink: 0;
}

/* ---- Capabilities ---- */
.gpt-capabilities {
    padding: 6rem 4%;
    background: white;
}

.gpt-capabilities-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gpt-capabilities-header {
    max-width: 560px;
    margin-bottom: 3rem;
}

.gpt-capabilities-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--stone-800);
    margin-bottom: 1rem;
}

.gpt-capabilities-header p {
    font-size: 1.05rem;
    color: var(--stone-500);
    line-height: 1.8;
    font-weight: 300;
}

.gpt-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gpt-capability-card {
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.gpt-capability-card:hover {
    border-color: var(--eg-green);
}

.gpt-capability-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--eg-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.gpt-capability-icon svg {
    color: var(--eg-green);
}

.gpt-capability-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.6rem;
    letter-spacing: 0;
}

.gpt-capability-card p {
    font-size: 0.92rem;
    color: var(--stone-500);
    line-height: 1.7;
    font-weight: 300;
}

/* ---- Compliance (Dark Inset) ---- */
.gpt-compliance {
    padding: 6rem 4%;
    background: var(--stone-50);
}

.gpt-compliance-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--stone-950);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.gpt-compliance-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.gpt-compliance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gpt-compliance-text {
    padding: 3rem 3rem 0;
}

.gpt-compliance-text .eyebrow {
    color: var(--eg-green);
}

.gpt-compliance-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.gpt-compliance-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 680px;
}

.gpt-compliance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
}

.gpt-compliance-stat {
    text-align: center;
}

.gpt-compliance-stat-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.gpt-compliance-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.4;
}

/* ---- Industries ---- */
.gpt-industries {
    padding: 6rem 4%;
    background: white;
    position: relative;
    z-index: 1;
}

.gpt-industries-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gpt-industries-images {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gpt-industries-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.gpt-industries-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gpt-industries-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--stone-800);
    margin-bottom: 1rem;
}

.gpt-industries-content > p {
    font-size: 1.05rem;
    color: var(--stone-500);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.gpt-industries-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gpt-industries-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.gpt-industries-list li svg {
    color: var(--eg-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.gpt-industries-list li div {
    display: flex;
    flex-direction: column;
}

.gpt-industries-list li strong {
    font-weight: 600;
    color: var(--stone-800);
    font-size: 0.95rem;
}

.gpt-industries-list li span {
    font-size: 0.88rem;
    color: var(--stone-500);
    font-weight: 300;
    line-height: 1.5;
}

/* ---- Technical Specs ---- */
.gpt-specs {
    padding: 6rem 4%;
    background: var(--stone-50);
}

.gpt-specs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gpt-specs-header {
    max-width: 560px;
    margin-bottom: 3rem;
}

.gpt-specs-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--stone-800);
}

.gpt-specs-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.gpt-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gpt-spec-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--stone-200);
}

.gpt-spec-item:first-child {
    padding-top: 0;
}

.gpt-spec-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--eg-green);
    min-width: 28px;
    padding-top: 2px;
}

.gpt-spec-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 0.35rem;
}

.gpt-spec-content p {
    font-size: 0.9rem;
    color: var(--stone-500);
    line-height: 1.7;
    font-weight: 300;
}

.gpt-specs-deploy {
    background: var(--stone-950);
    border-radius: 16px;
    padding: 2.5rem;
    position: sticky;
    top: 120px;
}

.gpt-specs-deploy h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.gpt-specs-deploy > p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.gpt-specs-deploy ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.gpt-specs-deploy li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.gpt-specs-deploy li svg {
    color: var(--eg-green);
    flex-shrink: 0;
}

/* ---- EG Voice Cross-Sell ---- */
.gpt-voice {
    padding: 5rem 4%;
    background: white;
}

.gpt-voice-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.gpt-voice-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--eg-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.gpt-voice-icon svg {
    color: var(--eg-green);
}

.gpt-voice-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--stone-800);
    margin-bottom: 1rem;
}

.gpt-voice-inner p {
    font-size: 1.05rem;
    color: var(--stone-500);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.gpt-voice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--eg-green);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.gpt-voice-link:hover {
    gap: 0.75rem;
}

/* ---- CTA ---- */
.gpt-cta {
    padding: 8rem 4%;
    text-align: center;
    background: var(--stone-50);
}

.gpt-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.gpt-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--stone-800);
    margin-bottom: 1.25rem;
}

.gpt-cta p {
    color: var(--stone-500);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.gpt-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gpt-cta .btn-cta {
    display: inline-block;
    background: var(--eg-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gpt-cta .btn-cta:hover {
    background: var(--stone-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gpt-cta-link {
    color: var(--stone-500);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.gpt-cta-link:hover {
    color: var(--eg-green);
}

/* ---- Wave Dividers ---- */
.gpt-intro::after,
.gpt-problem::after,
.gpt-industries::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 48px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* White → Stone-50 */
.gpt-intro::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0,48 L0,20 C360,-4 720,40 1080,16 C1260,4 1380,12 1440,8 L1440,48 Z' fill='%23fafaf9'/%3E%3C/svg%3E");
}

/* Stone-50 → White */
.gpt-problem::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0,48 L0,28 C180,8 420,40 660,24 C900,8 1140,36 1440,16 L1440,48 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* White → Stone-50 (different curve) */
.gpt-industries::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0,48 L0,12 C240,32 480,4 720,20 C960,36 1200,8 1440,24 L1440,48 Z' fill='%23fafaf9'/%3E%3C/svg%3E");
}

/* ---- Nav overrides (light bg from start) ---- */
body.page-eg-gpt-clean nav:not(.scrolled) .nav-links-list a {
    color: var(--stone-600);
}

body.page-eg-gpt-clean nav:not(.scrolled) .nav-cta {
    background: var(--stone-950);
    color: var(--stone-50);
    border: none;
    backdrop-filter: none;
}

body.page-eg-gpt-clean nav:not(.scrolled) .nav-logo .logo-hero {
    display: none;
}

body.page-eg-gpt-clean nav:not(.scrolled) .nav-logo .logo-scrolled {
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .gpt-problem-cards {
        grid-template-columns: 1fr;
    }

    .gpt-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpt-compliance-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gpt-industries-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gpt-specs-columns {
        grid-template-columns: 1fr;
    }

    .gpt-specs-deploy {
        position: static;
    }
}

@media (max-width: 768px) {
    .gpt-intro {
        padding: 10rem 4% 3rem;
    }

    .gpt-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .gpt-compliance-text {
        padding: 2rem 2rem 0;
    }

    .gpt-compliance-stats {
        padding: 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gpt-compliance-stats {
        grid-template-columns: 1fr;
    }
}
