/* ========================================
   Sectors Page Styles
   ======================================== */

/* ========================================
   Hero Section
   ======================================== */
.sectors-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.sectors-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #5a328a 100%);
    z-index: 0;
}

.sectors-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(137, 213, 210, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(90, 50, 138, 0.2) 0%, transparent 50%);
}

.sectors-hero-content {
    position: relative;
    z-index: 1;
    padding: 140px 20px 80px;
    max-width: 900px;
}

.sectors-hero h1 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 8px;
    line-height: 1.1;
}

.sectors-hero .hero-headline-secondary {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--color-teal);
    margin-bottom: 24px;
    line-height: 1.2;
}

.sectors-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-white);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ========================================
   Sector Navigation
   ======================================== */
.sector-nav {
    position: sticky;
    top: 70px;
    z-index: 90;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.sector-nav .container {
    max-width: 1200px;
}

.sector-nav-items {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sector-nav-items::-webkit-scrollbar {
    display: none;
}

.sector-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sector-nav-item svg {
    width: 32px;
    height: 32px;
    color: var(--color-purple);
    transition: color 0.3s ease;
}

.sector-nav-item:hover {
    color: var(--color-purple);
    background: rgba(137, 213, 210, 0.1);
}

.sector-nav-item.active {
    color: var(--color-purple);
    border-bottom-color: var(--color-teal);
}

.sector-nav-item.active svg {
    color: var(--color-teal);
}

/* ========================================
   Sector Sections
   ======================================== */
.sector-section {
    padding: 100px 0;
}

.sector-light {
    background: var(--color-white);
}

.sector-grey {
    background: var(--color-light);
}

.sector-header {
    text-align: center;
    margin-bottom: 60px;
}

.sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--color-purple);
}

.sector-icon svg {
    width: 100%;
    height: 100%;
}

.sector-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-purple);
    margin-bottom: 16px;
}

.sector-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Sector Content Grid */
.sector-content {
    display: grid;
    gap: 48px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sector-problem,
.sector-solution,
.sector-capabilities {
    max-width: 800px;
}

.sector-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-purple);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-teal);
    display: inline-block;
}

.sector-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.sector-content p:last-child {
    margin-bottom: 0;
}

.sector-capabilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.sector-capabilities li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-dark);
    padding-left: 28px;
    position: relative;
}

.sector-capabilities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--color-teal);
    border-radius: 50%;
}

.sector-capabilities li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 13px;
    width: 6px;
    height: 3px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg);
}

/* Proof Points */
.sector-proof {
    max-width: 1000px;
    margin: 0 auto 48px;
}

.sector-proof h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-purple);
    margin-bottom: 32px;
    text-align: center;
}

.proof-cards {
    display: grid;
    gap: 24px;
}

.proof-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sector-grey .proof-card {
    background: var(--color-white);
}

.proof-logo {
    margin-bottom: 16px;
}

.proof-logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.proof-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-purple);
    margin-bottom: 12px;
}

.proof-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin: 0;
}

.proof-card-wide {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, var(--color-purple) 0%, #3d2066 100%);
}

.proof-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-white);
    line-height: 1.6;
    margin: 0;
}

/* Sector CTA */
.sector-cta {
    text-align: center;
}

/* ========================================
   Don't See Your Sector Section
   ======================================== */
.dont-see-sector {
    padding: 100px 0;
    background: var(--color-teal);
    text-align: center;
}

.dont-see-sector h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-dark);
    margin-bottom: 24px;
}

.dont-see-sector p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-dark);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.dont-see-sector .btn {
    margin-top: 16px;
}

/* ========================================
   Common Themes Section
   ======================================== */
.common-themes {
    padding: 100px 0;
    background: var(--color-light);
}

.common-themes h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-purple);
    text-align: center;
    margin-bottom: 16px;
}

.common-themes-intro {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.themes-grid {
    display: grid;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.theme-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.theme-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-purple);
}

.theme-icon svg {
    width: 100%;
    height: 100%;
}

.theme-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-purple);
    margin-bottom: 16px;
}

.theme-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin: 0;
}

/* ========================================
   Final CTA Section
   ======================================== */
.sectors-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #5a328a 100%);
    text-align: center;
}

.sectors-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-white);
    margin-bottom: 24px;
}

.sectors-final-cta > .container > p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
    opacity: 0.9;
}

.sectors-final-cta .cta-buttons {
    margin-bottom: 32px;
}

.sectors-final-cta .cta-alternative {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 16px;
    opacity: 0.85;
}

.sectors-final-cta .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.sectors-final-cta .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-purple);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (min-width: 768px) {
    .sector-content {
        grid-template-columns: 1fr 1fr;
    }

    .sector-capabilities {
        grid-column: 1 / -1;
    }

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

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

    .proof-cards:has(.proof-card:nth-child(3)) {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1025px) {
    .sectors-hero {
        min-height: 55vh;
    }

    .sector-nav-item {
        padding: 20px 32px;
        font-size: 0.9rem;
    }

    .sector-nav-item svg {
        width: 40px;
        height: 40px;
    }

    .themes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .theme-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .sectors-hero {
        min-height: 45vh;
    }

    .sectors-hero-content {
        padding: 120px 20px 60px;
    }

    .sector-nav {
        top: 60px;
    }

    .sector-nav-item {
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    .sector-nav-item svg {
        width: 28px;
        height: 28px;
    }

    .sector-nav-item span {
        display: none;
    }

    .sector-section {
        padding: 60px 0;
    }

    .sector-header {
        margin-bottom: 40px;
    }

    .sector-icon {
        width: 60px;
        height: 60px;
    }

    .sector-content {
        gap: 32px;
        margin-bottom: 40px;
    }

    .proof-card {
        padding: 24px;
    }

    .dont-see-sector,
    .common-themes {
        padding: 60px 0;
    }

    .sectors-final-cta {
        padding: 80px 0;
    }

    .theme-card {
        padding: 32px 24px;
    }

    .theme-icon {
        width: 48px;
        height: 48px;
    }
}

/* Mobile: Show only icons in nav */
@media (max-width: 480px) {
    .sector-nav-item {
        padding: 12px;
        min-width: 60px;
    }
}
