/*
Theme Name: EDA Theme
Theme URI: https://edaanalytics.com
Author: EDA - Eliot Data Analytics
Author URI: https://edaanalytics.com
Description: Custom theme for EDA - Eliot Data Analytics.
Version: 1.0
License: GPL v2 or later
Text Domain: eda-theme
*/

:root {
    --bg: #08090d;
    --bg-soft: #0e1017;
    --text: #f5f7fa;
    --muted: #9298a5;
    --border: rgba(255, 255, 255, 0.10);
    --accent: #7c5cff;
    --accent-2: #27d3a2;
    --max-width: 1180px;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.eda-container {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
}


/* =========================
   LANGUAGE SYSTEM
========================= */

.lang-en {
    display: none;
}


/* =========================
   HEADER
========================= */

.eda-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 22px 0;

    background: rgba(8, 9, 13, 0.75);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);
}

.eda-header .eda-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eda-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.eda-logo span {
    color: var(--accent);
}


/* NAVIGATION */

.eda-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.eda-nav a {
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

.eda-nav a:hover {
    color: var(--text);
}


/* HEADER RIGHT */

.eda-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* LANGUAGE SWITCHER */

.eda-language {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.eda-language button {
    border: none;
    background: transparent;

    color: var(--muted);

    padding: 4px;

    cursor: pointer;

    font-size: 12px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.eda-language button:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.eda-language button.active {
    color: var(--accent);
}

.eda-language > span {
    color: rgba(255, 255, 255, 0.25);
}


/* HEADER BUTTON */

.eda-header-button {
    padding: 10px 18px;

    border: 1px solid var(--border);
    border-radius: 8px;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.eda-header-button:hover {
    background: white;
    color: black;
    transform: translateY(-1px);
}


/* =========================
   HERO
========================= */

.eda-hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 0 100px;

    position: relative;
    overflow: hidden;
}

.eda-hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background: var(--accent);

    opacity: 0.08;

    filter: blur(140px);

    border-radius: 50%;

    top: -250px;
    right: -200px;

    pointer-events: none;
}

.eda-hero-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.eda-eyebrow {
    color: var(--accent-2);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.eda-hero h1 {
    font-size: clamp(52px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -4px;

    max-width: 720px;
}

.eda-hero h1 > span {
    display: block;
}

.eda-hero h1 span span {
    display: block;
    color: var(--accent);
}

.eda-hero p {
    color: var(--muted);

    font-size: 18px;

    max-width: 580px;

    margin-top: 30px;
}

.eda-hero-actions {
    display: flex;

    gap: 16px;

    margin-top: 40px;

    align-items: center;
}


/* BUTTONS */

.eda-button-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: var(--text);
    color: #08090d;

    padding: 14px 24px;

    border-radius: 8px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.eda-button-primary:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

.eda-button-secondary {
    color: var(--muted);

    padding: 14px 10px;

    transition: color 0.2s ease;
}

.eda-button-secondary:hover {
    color: var(--text);
}


/* =========================
   DASHBOARD VISUAL
========================= */

.eda-hero-visual {
    position: relative;
}

.eda-dashboard-card {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 26px;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4);
}

.eda-card-header {
    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: 13px;
}

.eda-status {
    color: var(--accent-2);
}


/* CHART */

.eda-chart {
    height: 240px;

    margin-top: 30px;

    position: relative;

    overflow: hidden;

    border-bottom: 1px solid var(--border);
}

.eda-chart::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.eda-chart-line {
    position: absolute;

    width: 100%;
    height: 100%;
}

.eda-chart-line::after {
    content: "";

    position: absolute;

    left: 0;
    top: 45%;

    width: 100%;
    height: 3px;

    background: var(--accent);

    transform: rotate(-7deg);

    box-shadow:
        0 0 20px rgba(124, 92, 255, 0.7);
}


/* METRICS */

.eda-metrics {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 25px;
}

.eda-metrics strong {
    display: block;

    font-size: 22px;
}

.eda-metrics small {
    display: block;

    color: var(--muted);
}


/* =========================
   SECTIONS
========================= */

.eda-section {
    padding: 130px 0;

    border-top: 1px solid var(--border);
}

.eda-section-heading {
    max-width: 650px;

    margin-bottom: 70px;
}

.eda-section-heading > span,
.eda-label {
    color: var(--accent-2);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.eda-section-heading h2 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -2px;

    margin-top: 20px;
}

.eda-section-heading strong {
    color: var(--accent);
}


/* =========================
   SERVICES
========================= */

.eda-services {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
}

.eda-service {
    padding: 35px 25px;

    border-right: 1px solid var(--border);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.eda-service:first-child {
    border-left: 1px solid var(--border);
}

.eda-service:hover {
    background: rgba(255, 255, 255, 0.025);
}

.eda-service-number {
    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}

.eda-service h3 {
    margin-top: 45px;

    font-size: 21px;

    line-height: 1.2;
}

.eda-service p {
    color: var(--muted);

    margin-top: 15px;

    font-size: 14px;
}


/* =========================
   WORK
========================= */

.eda-work {
    background: var(--bg-soft);
}

.eda-work-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.eda-work-card {
    min-height: 300px;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.eda-work-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.025);

    border-color: rgba(124, 92, 255, 0.35);
}

.eda-work-card span {
    color: var(--accent-2);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.eda-work-card h3 {
    font-size: 27px;

    line-height: 1.15;

    margin-top: 15px;
}

.eda-work-card p {
    color: var(--muted);

    margin-top: 12px;
}


/* =========================
   ABOUT
========================= */

.eda-about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.eda-about h2 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    margin-top: 20px;

    letter-spacing: -2px;
}

.eda-about h2 strong {
    color: var(--accent);
}

.eda-about p {
    color: var(--muted);

    font-size: 20px;

    line-height: 1.7;
}


/* =========================
   CONTACT
========================= */

.eda-contact {
    padding: 160px 0;

    text-align: center;

    border-top: 1px solid var(--border);
}

.eda-contact > .eda-container > span {
    color: var(--accent-2);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.eda-contact h2 {
    font-size: clamp(48px, 7vw, 90px);

    line-height: 0.95;

    letter-spacing: -4px;

    max-width: 900px;

    margin: 25px auto 45px;
}

.eda-contact h2 strong {
    color: var(--accent);
}


/* =========================
   FOOTER
========================= */

.eda-footer {
    padding: 30px 0;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;
}

.eda-footer .eda-container {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}


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

@media (max-width: 1000px) {

    .eda-nav {
        gap: 18px;
    }

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

    .eda-service:nth-child(3) {
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
    }

    .eda-service:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .eda-work-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {

    .eda-nav {
        display: none;
    }

    .eda-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .eda-hero {
        padding-top: 140px;
    }

    .eda-about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }
}


@media (max-width: 600px) {

    .eda-container {
        width: min(100% - 32px, var(--max-width));
    }

    .eda-header {
        padding: 18px 0;
    }

    .eda-header-right {
        gap: 10px;
    }

    .eda-header-button {
        display: none;
    }

    .eda-language {
        margin-right: 5px;
    }

    .eda-hero {
        padding-top: 125px;

        padding-bottom: 80px;
    }

    .eda-hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .eda-hero p {
        font-size: 16px;
    }

    .eda-hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .eda-dashboard-card {
        padding: 20px;
    }

    .eda-chart {
        height: 190px;
    }

    .eda-metrics {
        gap: 10px;
    }

    .eda-metrics strong {
        font-size: 18px;
    }

    .eda-metrics small {
        font-size: 11px;
    }

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

    .eda-service,
    .eda-service:nth-child(3),
    .eda-service:nth-child(4) {
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-top: none;
    }

    .eda-service:first-child {
        border-top: 1px solid var(--border);
    }

    .eda-service h3 {
        margin-top: 30px;
    }

    .eda-section {
        padding: 90px 0;
    }

    .eda-section-heading {
        margin-bottom: 50px;
    }

    .eda-section-heading h2 {
        font-size: 42px;
    }

    .eda-work-card {
        min-height: 260px;
    }

    .eda-about h2 {
        font-size: 44px;
    }

    .eda-about p {
        font-size: 17px;
    }

    .eda-contact {
        padding: 110px 0;
    }

    .eda-contact h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .eda-footer .eda-container {
        flex-direction: column;

        gap: 10px;
    }
}
/* =========================
   LANGUAGE VISIBILITY
========================= */

body.language-es .lang-es {
    display: inline;
}

body.language-es .lang-en {
    display: none;
}

body.language-en .lang-es {
    display: none;
}

body.language-en .lang-en {
    display: inline;
}
/* ================================
   REDES SOCIALES - FOOTER
================================ */

.eda-footer-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eda-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.eda-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.eda-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.eda-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
}

.eda-facebook-icon {
    font-family: Arial, sans-serif;
}

.eda-instagram-icon {
    font-size: 23px;
}

@media (max-width: 768px) {

    .eda-social {
        margin-top: 20px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .eda-social-link {
        font-size: 14px;
    }

    .eda-social-icon {
        width: 36px;
        height: 36px;
    }

}
/* =========================================
   POWER BI PROJECTS
========================================= */

.eda-powerbi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.eda-powerbi-card {
    overflow: hidden;
    padding: 0;
}

.eda-powerbi-frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0b0f19;
    border-radius: 14px 14px 0 0;
}

.eda-powerbi-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.eda-project-content {
    padding: 28px;
}

.eda-project-category {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}

.eda-project-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
}

.eda-project-content p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.75;
}


/* =========================================
   POWER BI - DESKTOP
========================================= */

@media (min-width: 1100px) {

    .eda-powerbi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   POWER BI - TABLET
========================================= */

@media (max-width: 900px) {

    .eda-powerbi-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eda-powerbi-frame {
        aspect-ratio: 16 / 10;
    }

}


/* =========================================
   POWER BI - MOBILE
========================================= */

@media (max-width: 600px) {

    .eda-powerbi-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .eda-powerbi-frame {
        aspect-ratio: 16 / 11;
    }

    .eda-project-content {
        padding: 22px;
    }

    .eda-project-content h3 {
        font-size: 21px;
    }

    .eda-project-content p {
        font-size: 14px;
        line-height: 1.6;
    }

}
/* =========================================
   MOBILE VIEWPORT FIX
========================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img,
iframe,
video {
    max-width: 100%;
}

@media (max-width: 600px) {

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .eda-container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .eda-hero,
    .eda-section,
    .eda-about,
    .eda-contact,
    .eda-footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

}
/* =========================================
   SERVICES - 5 ITEMS
========================================= */

.eda-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.eda-service:nth-child(4),
.eda-service:nth-child(5) {
    grid-column: span 1;
}


/* =========================================
   SERVICES - TABLET
========================================= */

@media (max-width: 900px) {

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

}


/* =========================================
   SERVICES - MOBILE
========================================= */

@media (max-width: 600px) {

    .eda-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .eda-service {
        width: 100%;
    }

}
/* =========================================
   CONTACT V2
========================================= */

.eda-contact-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.eda-contact-heading > span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 18px;
    opacity: 0.55;
}

.eda-contact-heading h2 {
    margin: 0 0 20px;
}

.eda-contact-heading p {
    max-width: 600px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.65;
}


/* BOTONES */

.eda-contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


.eda-contact-button {
    min-width: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 22px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}


.eda-contact-button:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.04);
}


.eda-contact-button-label {
    font-size: 15px;
    font-weight: 600;
}


.eda-contact-arrow {
    font-size: 18px;
    opacity: 0.6;
}


/* REDES */

.eda-contact-social-section {
    margin-top: 50px;
}


.eda-contact-social-section > span {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.45;
}


.eda-contact-socials {
    display: flex;
    gap: 25px;
    margin-top: 16px;
}


.eda-contact-social {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}


.eda-contact-social:hover {
    opacity: 1;
}


.eda-contact-social span {
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 768px) {

    .eda-contact-heading {
        margin-bottom: 32px;
    }

    .eda-contact-heading h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .eda-contact-heading p {
        font-size: 15px;
    }

    .eda-contact-actions {
        flex-direction: column;
        width: 100%;
    }

    .eda-contact-button {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .eda-contact-social-section {
        margin-top: 38px;
    }

    .eda-contact-socials {
        gap: 20px;
    }

}
/* =========================================
   CONTACT - SIMPLE VERSION
========================================= */

.eda-contact-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.eda-contact-heading > span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 18px;
    opacity: 0.55;
}

.eda-contact-heading h2 {
    margin: 0 0 20px;
}

.eda-contact-heading p {
    max-width: 560px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.65;
}


/* WHATSAPP */

.eda-contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    padding: 18px 25px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.eda-contact-whatsapp:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
}

.eda-contact-arrow {
    opacity: 0.6;
    font-size: 18px;
}


/* REDES */

.eda-contact-social-section {
    margin-top: 45px;
}

.eda-contact-social-section > span {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.45;
}

.eda-contact-socials {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.eda-contact-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.eda-contact-social:hover {
    opacity: 1;
}


/* MOBILE */

@media (max-width: 768px) {

    .eda-contact-heading h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .eda-contact-heading p {
        font-size: 15px;
    }

    .eda-contact-whatsapp {
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }

    .eda-contact-socials {
        gap: 20px;
    }

}
/* =========================================
   SOLUTIONS
========================================= */

.eda-solutions {
    border-top: 1px solid rgba(255,255,255,0.06);
}


.eda-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.10);
    margin-top: 55px;
}


.eda-solution {
    background: #000;
    padding: 38px;
    min-height: 230px;
    transition: background 0.25s ease;
}


.eda-solution:hover {
    background: rgba(255,255,255,0.025);
}


.eda-solution-number {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.45;
    margin-bottom: 28px;
}


.eda-solution h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 16px;
    max-width: 420px;
}


.eda-solution p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.6;
    max-width: 470px;
    margin: 0;
}


@media (max-width: 768px) {

    .eda-solutions-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .eda-solution {
        padding: 28px 24px;
        min-height: auto;
    }

    .eda-solution h3 {
        font-size: 20px;
    }

    .eda-solution p {
        font-size: 14px;
    }

}

/* =========================================
   HOW WE WORK
========================================= */

.eda-process {
    border-top: 1px solid rgba(255,255,255,0.06);
}


.eda-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.10);
    margin-top: 55px;
}


.eda-process-item {
    background: #000;
    padding: 35px 28px;
    min-height: 270px;
    transition: background 0.25s ease;
}


.eda-process-item:hover {
    background: rgba(255,255,255,0.025);
}


.eda-process-number {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.45;
    margin-bottom: 40px;
}


.eda-process-item h3 {
    font-size: 22px;
    margin: 0 0 16px;
}


.eda-process-item p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.6;
    margin: 0;
}


@media (max-width: 900px) {

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

}


@media (max-width: 768px) {

    .eda-process-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .eda-process-item {
        min-height: auto;
        padding: 28px 24px;
    }

    .eda-process-number {
        margin-bottom: 25px;
    }

    .eda-process-item h3 {
        font-size: 20px;
    }

}


/* =========================================
   PROJECT DETAILS
========================================= */

.eda-project-content {
    position: relative;
}


.eda-project-number {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.45;
    margin-bottom: 10px;
}


.eda-project-tech {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.45;
}


@media (max-width: 768px) {

    .eda-project-tech {
        margin-top: 20px;
        padding-top: 14px;
    }

}


/* =========================================
   EDA PROJECT CARDS
========================================= */

.eda-powerbi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}


.eda-powerbi-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}


.eda-project-visual {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.eda-project-icon {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -4px;
    color: #ffffff;
}


.eda-project-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
}


.eda-powerbi-card .eda-project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}


.eda-powerbi-card .eda-project-category {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
}


.eda-powerbi-card .eda-project-content h3 {
    margin-bottom: 14px;
}


.eda-powerbi-card .eda-project-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}


.eda-project-tech {
    margin-top: auto;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.55;
}


.eda-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid currentColor;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.eda-project-button:hover {
    transform: translateY(-2px);
    background-color: #111;
    color: #fff;
}


.eda-powerbi-card:hover .eda-project-icon {
    transform: scale(1.04);
}


.eda-project-icon {
    transition: transform 0.25s ease;
}


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

@media (max-width: 1000px) {

    .eda-powerbi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .eda-powerbi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .eda-project-visual {
        min-height: 160px;
    }


    .eda-powerbi-card .eda-project-content {
        padding: 24px;
    }


    .eda-project-button {
        width: 100%;
    }

}

