/* Relying on global.css variables */

/* =========================================
   INTRO SECTION (Allie Miller Style)
   ========================================= */
#intro-impact.intro-section {
    position: relative;
    min-height: 85vh !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    /* Alinea de nuevo a la izquierda */
    padding: 6rem 10% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    color: var(--white) !important;
    clear: both;
}

#intro-impact.intro-section::before {
    display: none !important;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    /* Alineado a la izquierda */
}

.intro-name {
    font-size: var(--h1-fs);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: -2px;
}

.intro-description {
    font-size: var(--subtitle-fs);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    color: var(--white);
}





@media (max-width: 768px) {
    .intro-name {
        font-size: var(--h1-fs);
    }

    .intro-description {
        font-size: var(--subtitle-fs);
    }

    #intro-impact.intro-section {
        padding: 6rem 5% !important;
        min-height: 60vh !important;
        text-align: center;
    }

    .intro-section::before {
        background: rgba(45, 27, 78, 0.6);
    }

    .intro-content {
        margin: 0 auto;
    }
}

/* =========================================
   HERO SECTION STYLES
   ========================================= */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    text-align: left;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-list-side {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.subtitle {
    font-size: var(--body-fs);
    font-weight: 500;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title {
    font-size: var(--h1-fs);
    font-weight: 800;
    line-height: .95;
    color: var(--secondary-purple);
    margin-bottom: 2.5rem;
}

.hero-description {
    font-size: var(--body-lg-fs);
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 4rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-buttons .btn {
    font-size: var(--btn-fs);
    padding: 1.4rem 3.5rem;
}

/* Hero List Alignment */
.hero-list {
    margin-bottom: 0;
}

.hero-list-title {
    font-weight: 800;
    color: var(--secondary-purple);
    margin-bottom: 2rem;
    font-size: var(--body-lg-fs);
}

.hero-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-list li {
    display: flex;
    align-items: flex-start;
    color: var(--text-dark);
    font-size: var(--body-fs);
    line-height: 1.4;
    font-weight: 500;
}

.hero-list li span {
    color: var(--teal);
    margin-right: 15px;
    font-weight: 900;
}


/* Hero Image & Graphics */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 450px;
    /* Reduced from 600px */
    height: 450px;
    /* Reduced from 600px */
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 233, 129, 0.1) 0%, rgba(45, 27, 78, 0.02) 70%);
    z-index: 1;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    /* Reduced from 10rem */
    color: var(--secondary-purple);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ui-text {
    position: absolute;
    bottom: 0;
    right: -50px;
    font-size: var(--hero-ui-text-fs);
    font-weight: 900;
    color: rgba(45, 27, 78, 0.03);
    /* Subtle watermark */
    z-index: 0;
    user-select: none;
    line-height: 1;
}

/* Social Links positioned absolutely for Hero */
.social-links {
    position: absolute;
    bottom: 100px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 20;
}

.social-text {
    font-size: var(--hero-social-text-fs);
    font-weight: 600;
    transform: rotate(-90deg);
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: var(--body-lg-fs);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-5px);
}

/* =========================================
   OUTCOMES SECTION STYLES
   ========================================= */
.outcomes-section {
    padding: 10rem 5%;
    background-size: cover;
    background-position: left center;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.outcomes-content-wrapper {
    max-width: 1000px;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.outcomes-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.outcomes-section .section-title {
    color: var(--secondary-purple);
    font-size: var(--h1-fs);
    margin-bottom: 1.5rem;
}

.outcomes-section .section-subtitle {
    font-size: var(--body-lg-fs);
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 1100px) {
    .outcomes-content-wrapper {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .outcomes-section {
        background-position: center;
        justify-content: center;
        padding: 6rem 5%;
    }

    .outcomes-content-wrapper {
        text-align: center;
    }

    .outcomes-section .section-header {
        text-align: center;
    }

    .outcomes-section .section-subtitle {
        margin: 0 auto;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

.outcome-card {
    background: var(--white);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 480px;
    /* Increased slightly for icon */
    text-align: center;
}

.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 57, 59, 0.1);
    border-color: var(--teal);
}

.outcome-icon {
    width: 85px;
    height: 85px;
    background: var(--bg-light);
    color: var(--primary-pink);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.outcome-card:hover .outcome-icon {
    background: var(--primary-pink);
    color: var(--white);
    transform: rotate(10deg);
}

.outcome-card h3 {
    margin-bottom: 1.5rem;
    font-size: var(--card-title-fs);
    color: var(--secondary-purple);
    font-weight: 700;
    line-height: 1.3;
}

.outcome-card p {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-size: var(--card-body-fs);
    line-height: 1.6;
}

.outcome-card .btn {
    align-self: center;
    width: 100%;
    font-size: var(--outcome-btn-fs);
}

/* =========================================
   CONTRAST SECTION STYLES (Failure/Success)
   ========================================= */
.contrast-section {
    padding: 120px 5%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--secondary-purple);
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.contrast-content {
    max-width: 800px;
    /* Reduced to guarantee clearance for the face on the right */
    margin-left: 0;
    /* Force content to stay on the left */
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contrast-card {
    background: rgba(7, 57, 59, 0.25);
    /* Slightly more opaque for readability */
    backdrop-filter: blur(15px);
    /* Stronger blur for glass effect */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contrast-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
}

.contrast-card h3 {
    font-size: var(--card-title-fs);
    color: var(--teal);
    /* Color más claro para contraste sobre fondo oscuro */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contrast-card p,
.contrast-card li {
    font-size: var(--card-body-fs);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.97);
    /* Casi blanco sólido para máxima legibilidad */
    margin-bottom: 1rem;
}

.contrast-card p:last-child {
    margin-bottom: 0;
}

.contrast-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.contrast-card li {
    margin-bottom: 0.5rem;
}



/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 968px) {
    :root {
        --hero-ui-text-fs: 6rem;
    }


    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .contrast-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 0 auto;
    }

    .contrast-card {
        text-align: left;
        /* Keep card text left-aligned even on mobile for readability, or center if preferred */
    }

    .hero-buttons {
        flex: 1;
    }

    .subtitle {
        font-size: var(--hero-subtitle-fs);
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .hero-title {
        font-size: var(--hero-title-fs);
        color: var(--secondary-purple);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .hero-name {
        font-size: var(--hero-name-fs);
        color: var(--primary-pink);
        font-weight: bold;
        margin-bottom: 2rem;
    }

    .hero-description {
        color: var(--text-dark);
        font-size: var(--hero-desc-fs);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 900px;
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }



    .btn-video {
        background: var(--primary-pink);
        color: var(--white);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--hero-btn-video-fs);
    }

    .btn-video:hover {
        background: var(--secondary-purple);
        transform: scale(1.1);
    }

    /* =========================================
   PROBLEM SECTION STYLES
   ========================================= */
    .skills-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .skill-item {
        background: var(--bg-light);
        padding: 1.5rem 2rem;
        border-radius: 15px;
        display: flex;
        align-items: center;
        font-size: var(--body-fs);
        color: var(--text-dark);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .skill-item i {
        color: var(--secondary-purple);
        font-size: 1.5rem;
        margin-right: 1.5rem;
    }

    .skill-item:hover {
        background: var(--primary-pink);
        color: var(--white);
        transform: translateY(-5px);
    }

    .skill-item:hover i {
        color: var(--white);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        /* Vertically center stats and text */
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
    }

    .about-text h3 {
        font-size: var(--h3-fs);
        /* Updated to h3 size */
        color: var(--secondary-purple);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    h4.about-list-title {
        color: #2e6a6c !important;
        /* Green color forced */
        font-size: 1.2rem;
        font-weight: 700;
        margin: 2rem 0 1rem;
    }

    .about-list {
        list-style: none;
        padding: 0;
    }

    .about-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        font-size: var(--body-fs);
        color: var(--text-light);
        /* Changed to light/gray */
        line-height: 1.5;
    }

    .about-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--primary-pink);
        font-weight: bold;
    }

    .about-text p {
        font-size: var(--body-fs);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-icon {
        font-size: 2.5rem;
        color: var(--secondary-purple);
        margin-bottom: 1rem;
        background: var(--bg-light);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-number {
        font-size: var(--about-stat-number-fs);
        color: var(--primary-pink);
        font-weight: 800;
    }

    .stat-label {
        font-size: var(--about-stat-label-fs);
        color: var(--text-light);
        text-transform: uppercase;
    }

    .hero-image {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-container {
        position: relative;
        width: 450px;
        height: 450px;
    }

    .circle-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-pink) 0%, var(--teal) 100%);
        border-radius: 50%;
        opacity: 0.2;
    }

    .profile-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-pink), var(--teal));
        font-size: 5rem;
        color: white;
        border: 10px solid var(--white);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .ui-text {
        position: absolute;
        bottom: -20px;
        right: -50px;
        font-size: var(--hero-ui-text-fs);
        font-weight: 900;
        color: var(--secondary-purple);
        z-index: -1;
    }

    .social-links {
        position: absolute;
        bottom: 50px;
        right: -100px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .social-text {
        font-size: var(--hero-social-text-fs);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .social-icon:hover {
        background: var(--primary-pink);
        color: var(--white);
        transform: translateY(-5px);
    }
}

/* =========================================
   ABOUT SECTION STYLES (Problem, Guide, Failure/Success)
   ========================================= */
.about-section {
    padding: 3rem 5%;
    /* Reduced from 4rem */
    background: var(--white);
    min-height: auto;
    /* Removed fixed 100vh for more compact look */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: var(--about-title-fs);
    color: var(--secondary-purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: var(--about-text-fs);
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
}

.skill-item {
    background: var(--white);
    padding: 1.8rem 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    font-size: var(--body-fs);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.skill-item i {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--teal);
}

.skill-item:hover {
    background: var(--primary-pink) !important;
    color: var(--white) !important;
    transform: translateX(10px);
}

.skill-item:hover i {
    color: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 8rem;
    /* Bajarlas más para alinearlas con el final del texto */
}

.stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(100, 186, 189, 0.1);
}

.stat-number {
    font-size: var(--about-stat-number-fs);
    font-weight: bold;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: var(--about-stat-label-fs);
}

/* =========================================
   SERVICES SECTION STYLES (The Plan)
   ========================================= */
.services-section {
    padding: 4rem 5%;
    background: var(--white);
    min-height: calc(100vh - 100px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--primary-pink) !important;
    color: var(--white) !important;
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(233, 124, 158, 0.3);
}

.service-icon {
    font-size: var(--service-icon-fs);
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
    transform: scale(1.2);
}

.service-card h3 {
    font-size: var(--service-card-title-fs);
    margin-bottom: 1rem;
    color: var(--secondary-purple);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
    font-size: var(--service-card-text-fs);
}

.service-card:hover p {
    color: var(--white);
}

/* =========================================
   COMPANIES SECTION STYLES (Ecosystem)
   ========================================= */
.companies-section {
    padding: 4rem 5%;
    background: var(--white);
    min-height: calc(100vh - 100px);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.company-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.company-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 25px 50px rgba(100, 186, 189, 0.15);
}

.company-logo {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--company-logo-fs);
    color: var(--primary-pink);
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-card h3 {
    font-size: var(--company-title-fs);
    color: var(--secondary-purple);
    margin-bottom: 0.5rem;
}

.company-card p {
    color: var(--text-light);
    font-size: var(--company-text-fs);
}

.companies-section .btn {
    font-size: var(--company-btn-fs);
}

/* =========================================
   PORTFOLIO SECTION STYLES (Proof)
   ========================================= */
.portfolio-section {
    padding: 4rem 5%;
    background: var(--white);
    min-height: calc(100vh - 100px);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--bg-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-pink);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-pink), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--portfolio-img-icon-fs);
    color: var(--white);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Portfolio Card Styles (Proof) */
.portfolio-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 25px 50px rgba(100, 186, 189, 0.15);
}

.proof-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.portfolio-card:hover .proof-icon {
    background: var(--primary-pink);
    color: var(--white);
    transform: rotate(10deg);
}

.portfolio-card h3 {
    color: var(--secondary-purple);
    margin-bottom: 1.5rem;
    font-size: var(--card-title-fs);
    font-weight: 700;
}

.portfolio-card p {
    color: var(--text-light);
    font-size: var(--card-body-fs);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-card .btn {
    font-size: var(--btn-fs);
    padding: 1rem 2rem;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.footer-subtitle {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: left;
    display: inline-block;
    font-size: var(--body-lg-fs);
    /* Standardized for readability */
    line-height: 1.6;
}

.footer-subtitle p {
    margin-bottom: 1rem;
}

.footer-subtitle p:last-child {
    margin-bottom: 0;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: var(--btn-fs);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-side {
        align-items: center;
    }

    .hero-list-side {
        padding: 2.5rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-list li {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    @media (max-width: 576px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .companies-grid {
            grid-template-columns: 1fr;
        }

        .portfolio-grid {
            grid-template-columns: 1fr;
        }

        .hero-list ul {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-list li {
            justify-content: center;
        }
    }
}