@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Theme variables are centralized in theme.css. */

/* GLOBAL RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.5;
    background-color: var(--bg-dark);
    /* Ensure body base is dark */
    color: var(--text-main);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
}

/* SECTION WRAPPERS */
.hero-section-wrapper {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 75% 50%, #2c1259 0%, #05040a 40%, #05040a 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landscape-section-wrapper {
    background-color: var(--bg-dark-2);
    color: var(--text-main);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.white-section-wrapper {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.white-section-wrapper .section-header p {
    color: var(--text-muted-3);
}

.dark-section-wrapper {
    background-color: var(--bg-dark-2);
    color: var(--text-light);
}

.dark-section-wrapper .section-header p {
    color: var(--text-muted-2);
}

/* 1. HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 64px 64px;
    flex: 1;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
}

.highlight {
    color: var(--purple-light);
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--purple-accent);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.btn-primary:hover {
    background: #7c3aed;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    transition: border-color 0.3s;
    width: fit-content;
}

.btn-secondary:hover {
    border-color: var(--text-main);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}


.image-placeholder {
   height: 400px;
   border-radius: 25px;
}

/* 2. THE SEARCH LANDSCAPE */
.landscape-section {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 40px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.5px;
}

.cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.card {
    flex: 1;
    max-width: 300px;
    border-radius: 16px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid;
    min-height: 280px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-cyan {
    background-color: var(--cyan-bg);
    border-color: var(--cyan-border);
}

.card-cyan .card-icon,
.card-cyan .card-title {
    color: var(--cyan-accent);
}

.card-purple {
    background-color: var(--purple-bg);
    border-color: var(--purple-border);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.05);
}

.card-purple .card-icon,
.card-purple .card-title {
    color: var(--purple-accent);
}

.card-blue {
    background-color: var(--blue-bg);
    border-color: var(--blue-border);
}

.card-blue .card-icon,
.card-blue .card-title {
    color: var(--blue-accent);
}

.card-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-list li {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.landscape-arrow {
    color: var(--text-main);
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.section-footer {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 700px;
    margin-top: 16px;
}

.highlight-purple {
    color: var(--purple-accent);
    font-weight: 500;
}

/* 3. MEET ZYNETRA */
.meet-section {
    display: flex;
    align-items: center;
    gap: 64px;
}

.meet-content {
    flex: 1;
}

.divider {
    width: 40px;
    height: 3px;
    background-color: var(--purple-main);
    margin-bottom: 24px;
}

.meet-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.meet-content p {
    font-size: 16px;
    color: var(--text-muted-3);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-purple {
    display: inline-block;
    background-color: var(--purple-main);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-purple:hover {
    background-color: #6d28d9;
}

.meet-image {
    flex: 1;
    
}
.meet-image img{
    height: 300px;
    border-radius: 25px;
}
/* 4. WORKFLOW & SERVICES */
.bg-light-wrapper {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.step-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    flex: 1;
    min-height: 220px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.color-teal .step-icon {
    
    color: var(--teal-main);
}

.color-teal .step-number {
    background: var(--teal-main);
}

.color-purple .step-icon {
    
    color: var(--purple-main);
}

.color-purple .step-number {
    background: var(--purple-main);
}

.color-blue .step-icon {
   
    color: var(--blue-accent);
}

.color-blue .step-number {
    background: var(--blue-accent);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 13px;
    color: var(--text-muted-3);
    line-height: 1.5;
}

.workflow-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
    font-size: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    
    color: var(--purple-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card:nth-child(1) .service-icon {

    color: var(--teal-main);
}

.service-card:nth-child(3) .service-icon {
    
    color: var(--blue-accent);
}

.service-card:nth-child(4) .service-icon {
   
    color: var(--teal-main);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-muted-3);
    margin-bottom: 12px;
    line-height: 1.4;
}

.learn-more {
    color: var(--purple-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 8px;
}

/* 5. WHAT WE ASSESS */
.assess-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.assess-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.assess-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.assess-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.assess-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.assess-card p {
    font-size: 13px;
    color: var(--text-muted-2);
    line-height: 1.6;
}

.assess-card:nth-child(1) .assess-icon {
    color: var(--cyan-accent);
}

.assess-card:nth-child(2) .assess-icon {
    color: var(--purple-light);
}

.assess-card:nth-child(3) .assess-icon {
    color: var(--blue-accent);
}

.assess-card:nth-child(4) .assess-icon {
    color: var(--text-light);
}

.assess-card:nth-child(5) .assess-icon {
    color: var(--purple-light);
}

.assess-card:nth-child(6) .assess-icon {
    color: var(--pink-accent);
}

/* 6. INDUSTRIES */
.industries-wrapper {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.industries-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.industry-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: center;
}

.industry-icon {
    width: 48px;
    height: 48px;
   
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.industry-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.industry-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.industry-card:nth-child(1) .industry-icon {
    color: var(--blue-accent);
}

.industry-card:nth-child(3) .industry-icon {
    color: var(--purple-main);
}

.industry-card:nth-child(5) .industry-icon {
    color: var(--purple-main);
}

.industry-card:nth-child(7) .industry-icon {
    color: var(--purple-main);
}

.industry-card:nth-child(9) .industry-icon {
    color: #ef4444;
}

.industry-card:nth-child(11) .industry-icon {
    color: var(--orange-accent);
}

.hero-image-wrapper img,
.meet-image img,
.image-placeholder {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 200px;
    }

    .image-placeholder {
        height: 200px;
    }

    /* Middle Sections */
    .workflow-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .step-card {
        min-width: 300px;
        flex: 1;
    }

    .workflow-arrow {
        display: none;
    }

    .meet-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .assess-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 900px) {

    /* Landscape Section */
    .cards-container {
        flex-direction: column;
        gap: 16px;
    }

    .card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        padding: 32px 24px;
    }

    .landscape-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero {
        padding: 110px 16px 40px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: none;
    }

    /* Meet Zynetra & Work */
    .meet-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .divider {
        margin: 0 auto 24px auto;
    }

    .meet-image {
        width: 100%;
        min-height: auto;
    }

    .workflow-container {
        flex-direction: column;
    }

    .step-card {
        width: 100%;
        min-width: 100%;
    }

    .cards-container {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }

    .workflow-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Assess & Industries */
    .assess-grid {
        grid-template-columns: 1fr;
    }

    .industry-arrow {
        display: none;
    }

    .industries-flex {
        justify-content: center;
        flex-direction: column;
    }

    .industry-card {
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .meet-content h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero {
        padding: 110px 24px 32px;
    }

    .assess-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        width: 100%;
    }
    
    .card,
    .service-card,
    .step-card {
        padding: 20px;
    }
}
