* { box-sizing: border-box; }

:root {
    --orange: #E85A0C;
    --orange-glow: rgba(232, 90, 12, 0.18);
    --orange-dim: rgba(232, 90, 12, 0.08);
    --black: #080808;
    --dark: #101010;
    --dark2: #141414;
    --card: #181818;
    --card2: #1f1f1f;
    --white: #ffffff;
    --off-white: #ededed;
    --gray: #777777;
    --light-gray: #bbbbbb;
    --border: #242424;
    --border2: #303030;
}

/* Home: Por Que Guayama FC */
.why-guayama-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(232, 90, 12, 0.18), transparent 34%),
        linear-gradient(180deg, #070707 0%, #101010 56%, #070707 100%);
    padding: clamp(76px, 8vw, 118px) clamp(22px, 6vw, 80px);
}

.why-guayama-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
    pointer-events: none;
}

.why-guayama-section::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(860px, 86vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 90, 12, 0.9), transparent);
    transform: translateX(-50%);
}

.why-guayama-section > * {
    position: relative;
    z-index: 1;
}

.why-guayama-header {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.why-guayama-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 5px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.why-guayama-header h2 {
    display: block;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.1rem, 8vw, 6.4rem);
    letter-spacing: 0;
    line-height: 0.9;
    margin: 0 0 20px;
    text-transform: uppercase;
    text-wrap: balance;
}

.why-guayama-header h2::before {
    display: none;
}

.why-guayama-header p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 710px;
    margin: 0 auto;
    font-size: clamp(0.96rem, 1.3vw, 1.08rem);
    font-weight: 300;
    line-height: 1.8;
}

.why-guayama-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.why-guayama-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(232, 90, 12, 0.13), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
        #111;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-top: 3px solid rgba(232, 90, 12, 0.92);
    padding: clamp(26px, 3vw, 34px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    isolation: isolate;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.why-guayama-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 4%, rgba(232, 90, 12, 0.18), transparent 32%),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 34px);
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.why-guayama-card::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 190px;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 90, 12, 0.85), transparent);
    opacity: 0.8;
}

.why-guayama-card:hover {
    transform: translateY(-7px);
    border-color: rgba(232, 90, 12, 0.72);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.46),
        0 0 34px rgba(232, 90, 12, 0.14);
    background:
        linear-gradient(145deg, rgba(232, 90, 12, 0.18), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        #141414;
}

.why-guayama-number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(232, 90, 12, 0.2);
    font-family: "Bebas Neue", sans-serif;
    font-size: 4.3rem;
    line-height: 1;
    letter-spacing: 0;
}

.why-guayama-logo {
    width: 150px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border: 1px solid rgba(232, 90, 12, 0.28);
    padding: 14px;
    margin-bottom: 34px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.why-guayama-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-guayama-card h3 {
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.85rem, 2.6vw, 2.55rem);
    letter-spacing: 0;
    line-height: 0.96;
    margin: 0 0 22px;
    max-width: 360px;
    text-transform: uppercase;
}

.why-guayama-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    margin: 0;
}

.why-guayama-actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(30px, 4vw, 46px);
}

.why-guayama-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    color: #fff;
    background:
        linear-gradient(135deg, #c84b08 0%, var(--orange) 52%, #ff7a1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(232, 90, 12, 0.22);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.why-guayama-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 62px rgba(232, 90, 12, 0.32);
    filter: saturate(1.12);
}

.pathway-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding: 120px clamp(24px, 6vw, 80px) 86px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.96) 100%),
        radial-gradient(ellipse 80% 80% at 78% 28%, rgba(232, 90, 12, 0.2), transparent 62%),
        url("../assets/pathway/college-soccer.jpg") center / cover no-repeat,
        #000;
}

.pathway-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.025) 0,
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px,
        transparent 34px
    );
    pointer-events: none;
}

.pathway-hero-inner {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
}

.pathway-eyebrow,
.pathway-label {
    color: var(--orange);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.pathway-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pathway-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--orange);
}

.pathway-hero h1 {
    color: var(--white);
    font-family: "Bebas Neue", Arial, sans-serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    letter-spacing: 4px;
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.pathway-hero-sub {
    color: var(--off-white);
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
}

.pathway-hero-kicker {
    color: var(--light-gray);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.pathway-section {
    padding: 76px clamp(24px, 6vw, 80px);
    background: var(--black);
}

.pathway-section.alt {
    background:
        radial-gradient(ellipse 70% 55% at 86% 12%, rgba(232, 90, 12, 0.09), transparent 62%),
        var(--dark);
}

.pathway-section-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.pathway-section h2,
.pathway-card-title,
.pathway-cta h2 {
    font-family: "Bebas Neue", Arial, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pathway-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    margin: 8px 0 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pathway-section h2::before {
    content: "";
    width: 4px;
    height: 30px;
    background: var(--orange);
    flex-shrink: 0;
}

.pathway-section-text,
.pathway-card-text {
    color: var(--light-gray);
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.85;
}

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

.pathway-card {
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(232, 90, 12, 0.09), transparent 48%),
        var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--orange);
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pathway-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 34px);
    opacity: 0.75;
    pointer-events: none;
}

.pathway-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 132px;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 90, 12, 0.75), transparent);
}

.pathway-card:hover {
    background-color: var(--card2);
    border-color: var(--orange);
    box-shadow: 0 18px 48px rgba(232, 90, 12, 0.16);
    transform: translateY(-4px);
}

.pathway-card-title {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1;
    margin: 26px 0 14px;
}

.pathway-card-text {
    position: relative;
    z-index: 1;
    margin: 0;
}

.pathway-logo {
    position: relative;
    z-index: 1;
    width: 138px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(232, 90, 12, 0.22);
    padding: 14px;
    margin: 0;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.pathway-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    display: block;
}

.pathway-feature {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    background: #080808;
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    padding: clamp(26px, 4vw, 40px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.pathway-feature + .pathway-feature {
    margin-top: 18px;
}

.pathway-feature-logo {
    min-height: 160px;
    background: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.pathway-feature-logo img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    display: block;
}

.pathway-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
}

.pathway-bullets li {
    color: var(--off-white);
    background: var(--dark2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    padding: 12px 14px;
    font-size: 0.84rem;
    line-height: 1.45;
}

.pathway-cta {
    padding: 72px clamp(24px, 6vw, 80px);
    background:
        linear-gradient(135deg, #b94408 0%, var(--orange) 52%, #d86011 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pathway-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.055) 0,
        rgba(255, 255, 255, 0.055) 1px,
        transparent 1px,
        transparent 30px
    );
    pointer-events: none;
}

.pathway-cta > * {
    position: relative;
    z-index: 1;
}

.pathway-cta h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.96;
    margin: 0 0 16px;
}

.pathway-cta p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.pathway-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pathway-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    color: var(--orange);
    background: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.pathway-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.pathway-btn.secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}

.pathway-btn.secondary:hover {
    color: var(--orange);
    background: #fff;
    border-color: #fff;
}

@media (max-width: 920px) {
    .why-guayama-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-guayama-card {
        min-height: 410px;
    }

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

    .pathway-feature {
        grid-template-columns: 1fr;
    }

    .pathway-feature-logo {
        min-height: 130px;
    }
}

@media (max-width: 620px) {
    .why-guayama-section {
        padding: 68px 18px;
    }

    .why-guayama-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .why-guayama-label {
        justify-content: flex-start;
        font-size: 0.64rem;
        letter-spacing: 3px;
    }

    .why-guayama-header p {
        margin-left: 0;
    }

    .why-guayama-grid {
        grid-template-columns: 1fr;
    }

    .why-guayama-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .why-guayama-card::after {
        left: 22px;
        right: 22px;
        top: 176px;
    }

    .why-guayama-logo {
        width: 136px;
        height: 84px;
        margin-bottom: 30px;
    }

    .why-guayama-button {
        width: 100%;
        padding-inline: 20px;
        text-align: center;
    }

    .pathway-hero {
        min-height: auto;
        padding: 76px 20px 56px;
    }

    .pathway-section,
    .pathway-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pathway-card,
    .pathway-feature {
        padding: 22px;
    }

    .pathway-bullets {
        grid-template-columns: 1fr;
    }

    .pathway-logo {
        width: 122px;
        height: 78px;
    }

    .pathway-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
