/* ================= ABOUT PAGE STYLES ================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Hero Section */
.about-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 30%, #2a0a05 60%, #3a130d 100%),
                radial-gradient(circle at 20% 50%, rgba(241, 56, 17, 0.25), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(47, 128, 255, 0.12), transparent 50%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 56, 17, 0.15), transparent 70%);
    top: -250px;
    left: 5%;
    filter: blur(100px);
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 128, 255, 0.08), transparent 70%);
    bottom: -150px;
    right: 10%;
    filter: blur(80px);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeInUp 1s ease;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 8px 30px rgba(241, 56, 17, 0.25);
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 120px 40px;
    background: var(--brand-black);
    position: relative;
}

.mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 56, 17, 0.3), transparent);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-vision .container .mission-card p, .mission-vision .container .vision-card p{
    text-align: justify;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(241, 56, 17, 0.08), rgba(47, 128, 255, 0.04));
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(241, 56, 17, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 56, 17, 0.05), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover, .vision-card:hover {
    border-color: rgba(241, 56, 17, 0.5);
    box-shadow: 0 20px 60px rgba(241, 56, 17, 0.15);
    transform: translateY(-8px);
}

.mission-card:hover::before, .vision-card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.mission-card h2, .vision-card h2 {
    font-size: 32px;
    color: var(--brand-red-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p, .vision-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-weight: 300;
}

/* Values Section */
.values-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--brand-black) 0%, var(--brand-gray) 50%, var(--brand-black) 100%);
    position: relative;
}

.values-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 56, 17, 0.3), transparent);
}

.values-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.value-item {
    background: rgba(241, 56, 17, 0.06);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(241, 56, 17, 0.12);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.value-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-red-light), transparent);
    transition: width 0.4s ease;
}

.value-item:hover {
    background: rgba(241, 56, 17, 0.12);
    border-color: rgba(241, 56, 17, 0.35);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(241, 56, 17, 0.15);
}

.value-item:hover::before {
    width: 100%;
}

.value-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
    animation: bounce 2s infinite;
}

.value-item:hover .value-icon {
    animation: bounce 1.5s infinite;
}

.value-item h3 {
    font-size: 24px;
    color: var(--brand-red-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    padding: 120px 40px;
    background: var(--brand-black);
    position: relative;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 56, 17, 0.3), transparent);
}

.stats-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(47, 128, 255, 0.08), rgba(241, 56, 17, 0.08));
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(241, 56, 17, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(241, 56, 17, 0.1), transparent);
    transition: all 0.6s ease;
}

.stat-card:hover {
    border-color: var(--brand-red-light);
    box-shadow: 0 0 40px rgba(241, 56, 17, 0.25);
    transform: scale(1.08);
}

.stat-card:hover::before {
    top: 50%;
    right: 0;
}

.stat-number {
    font-size: 56px;
    color: var(--brand-red-light);
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 4px 20px rgba(241, 56, 17, 0.2);
}

.stat-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--brand-gray) 0%, var(--brand-black) 100%);
    position: relative;
}

.features-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 56, 17, 0.3), transparent);
}

.features-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.feature-card {
    background: rgba(241, 56, 17, 0.06);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(241, 56, 17, 0.12);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.feature-card:hover {
    background: rgba(241, 56, 17, 0.12);
    border-color: rgba(241, 56, 17, 0.35);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(241, 56, 17, 0.15);
}

.feature-number {
    font-size: 48px;
    color: var(--brand-red-light);
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0.6;
}

.feature-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
}

/* Team Section */
.team-section {
    padding: 120px 40px;
    background: var(--brand-black);
    position: relative;
}

.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 56, 17, 0.3), transparent);
}

.team-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -1px;
}

.team-container {
    max-width: min(1600px, 100vw - 48px);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--brand-red-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: rgba(241, 56, 17, 0.1);
    border: 1px solid rgba(241, 56, 17, 0.2);
}

.section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.team-member {
    min-height: 100%;
    padding: 24px 24px 28px;
    border-radius: 26px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    background:
        radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 85% 18%, rgba(241, 56, 17, 0.12), transparent 26%),
        linear-gradient(165deg, rgba(20, 24, 30, 0.98) 0%, rgba(11, 14, 19, 0.98) 48%, rgba(5, 7, 12, 1) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 22px 55px rgba(0, 0, 0, 0.35);
}

.team-member::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, transparent 0 14px, rgba(255, 255, 255, 0.08) 14px 15px, transparent 15px 100%),
        linear-gradient(-145deg, transparent 0 14px, rgba(255, 255, 255, 0.08) 14px 15px, transparent 15px 100%);
    pointer-events: none;
    opacity: 0.9;
}

.team-member::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.team-member:hover {
    border-color: rgba(255, 106, 69, 0.55);
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 28px 65px rgba(241, 56, 17, 0.18);
}

.member-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.member-topline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 92px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 106, 69, 0.95), transparent);
}

.member-brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
}

.logo-tarjeta{
    width: 160px;
    padding: 10px 5px 0 10px;
}

.member-chip {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
}

.member-corner {
    position: absolute;
    width: 54px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.18);
    z-index: 0;
}

.member-corner-left {
    top: 16px;
    left: 16px;
    border-top: 2px solid;
    border-left: 2px solid;
    clip-path: polygon(0 0, 100% 0, 100% 8%, 8% 8%, 8% 100%, 0 100%);
}

.member-corner-right {
    right: 16px;
    bottom: 16px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    clip-path: polygon(92% 0, 100% 0, 100% 100%, 0 100%, 0 92%, 92% 92%);
}

.member-orbit {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    transform: rotate(45deg);
    z-index: 0;
}

.member-orbit::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 2px;
    background: rgba(255, 106, 69, 0.75);
}

.member-orbit-top {
    top: 88px;
    right: 24px;
}

.member-orbit-bottom {
    left: 24px;
    bottom: 92px;
}

.member-avatar {
    width: 182px;
    height: 198px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    clip-path: polygon(25% 4%, 75% 4%, 96% 25%, 96% 75%, 75% 96%, 25% 96%, 4% 75%, 4% 25%);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.36),
        0 0 0 8px rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(135deg, rgba(241, 56, 17, 0.92), rgba(255, 106, 69, 0.75)),
        url("../7475145_3672377.jpg") center/cover no-repeat;
}

.member-avatar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.42)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 35%);
}

.member-avatar::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    clip-path: inherit;
}

.member-avatar span {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-white);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.member-avatar-yu,
.member-avatar-la,
.member-avatar-ve,
.member-avatar-ma {
    background:
        linear-gradient(135deg, rgba(241, 56, 17, 0.96), rgba(255, 106, 69, 0.72)),
        url("../7475145_3672377.jpg") center/cover no-repeat;
}

.member-avatar-pc,
.member-avatar-ga,
.member-avatar-gm {
    background:
        linear-gradient(135deg, rgba(255, 189, 47, 0.92), rgba(241, 56, 17, 0.72)),
        url("../7475145_3672377.jpg") center/cover no-repeat;
}

.member-avatar-ja,
.member-avatar-ds,
.member-avatar-ap,
.member-avatar-eh,
.member-avatar-mv {
    background:
        linear-gradient(135deg, rgba(255, 106, 69, 0.94), rgba(157, 31, 10, 0.82)),
        url("../7475145_3672377.jpg") center/cover no-repeat;
}

.member-avatar-mg {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.18)),
        url("../img/Mateo.jpeg") center 18%/cover no-repeat;
}

.member-avatar-mg::before {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.14)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 35%);
}

.member-avatar-mg span {
    display: none;
}

.member-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.team-member h3 {
    font-size: 29px;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    z-index: 1;
}

.member-title {
    font-size: 17px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.team-member p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.member-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.63);
    font-style: normal;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.member-code {
    display: block;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 54px;
    }

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

    .team-grid {
        gap: 24px;
    }

    .team-member {
        padding: 24px 22px 28px;
    }

    .member-brand {
        font-size: 20px;
    }

    .member-avatar {
        width: 160px;
        height: 176px;
    }

    .member-avatar span {
        font-size: 34px;
    }

    .team-member h3 {
        font-size: 24px;
    }

    .member-title {
        font-size: 15px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(241, 56, 17, 0.15), rgba(47, 128, 255, 0.08), rgba(241, 56, 17, 0.1)),
                linear-gradient(180deg, var(--brand-black) 0%, var(--brand-gray) 100%);
    text-align: center;
    border-top: 1px solid rgba(241, 56, 17, 0.25);
    border-bottom: 1px solid rgba(241, 56, 17, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 56, 17, 0.12), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 44px;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-large {
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--brand-black) 0%, #0a0a0a 100%);
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(241, 56, 17, 0.25);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--brand-red-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--brand-red-light);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(241, 56, 17, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-vision .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        gap: 40px;
    }

    .features-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .about-hero {
        min-height: 350px;
        padding: 60px 25px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

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

    .mission-vision {
        padding: 80px 25px;
    }

    .mission-card, .vision-card {
        padding: 35px;
    }

    .values-section,
    .stats-section,
    .features-section,
    .team-section {
        padding: 80px 25px;
    }

    .values-section h2,
    .stats-section h2,
    .features-section h2,
    .team-section h2 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .values-grid,
    .stats-grid,
    .features-grid,
    .team-grid {
        gap: 30px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 300px;
        padding: 40px 20px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .mission-vision,
    .values-section,
    .stats-section,
    .features-section,
    .team-section {
        padding: 60px 20px;
    }

    .mission-card, .vision-card {
        padding: 25px;
    }

    .value-item, .feature-card, .team-member {
        padding: 25px;
    }

    .member-topline {
        margin-bottom: 22px;
        padding-bottom: 12px;
    }

    .member-brand {
        font-size: 18px;
    }

    .member-chip {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .values-section h2,
    .stats-section h2,
    .features-section h2,
    .team-section h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .values-grid,
    .stats-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .value-icon {
        font-size: 44px;
    }

    .member-avatar {
        width: 138px;
        height: 152px;
        margin-bottom: 18px;
    }

    .member-avatar span {
        font-size: 32px;
    }

    .team-member h3 {
        font-size: 22px;
    }

    .member-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .member-code {
        margin-top: 18px;
        padding-top: 14px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .feature-number {
        font-size: 36px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
