:root {
    /* Color Palette base on Lime Green and Premium Dark Theme */
    --clr-background: #090B09;
    --clr-surface: #121511;
    --clr-surface-light: #1A1F18;
    --clr-accent: #A2F800;
    /* Lime Green exactly like prompt */
    --clr-accent-hover: #b4fd2c;
    --clr-accent-dim: rgba(162, 248, 0, 0.1);

    --clr-text-main: #FFFFFF;
    --clr-text-muted: #94A3B8;
    --clr-text-dark: #090B09;

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Effects and borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-glow: 0 0 30px rgba(162, 248, 0, 0.15);
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-background);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 700;
}

.text-accent {
    color: var(--clr-accent);
}

.text-white {
    color: #FFFFFF;
}

.text-gray {
    color: var(--clr-text-muted);
}

.highlight {
    color: var(--clr-accent);
    position: relative;
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-6 {
    margin-top: 2.5rem;
}

.mt-8 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(26, 31, 24, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
}

/* Layout Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--clr-accent);
    color: var(--clr-text-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid var(--clr-accent);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(162, 248, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--clr-text-main);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--clr-accent);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid var(--clr-accent);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-outline:hover {
    background-color: var(--clr-accent);
    color: var(--clr-text-dark);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-outline.sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}


/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(9, 11, 9, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text-main);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--clr-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(9, 11, 9, 0.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--clr-text-main);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--clr-accent-dim) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--clr-text-muted);
}

.badge .dot {
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-accent);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}





/* Animations Helper */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* --- SECTION COMMON --- */
section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
}

.section-title.flex-column span {
    display: block;
    margin-bottom: 0.5rem;
}

.section-title:not(.flex-column) {
    display: block;
    white-space: normal;
}

.section-title span {
    /* Color controlled by utility classes or .accent */
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.section-logo {
    max-height: 220px;
    width: auto;
    opacity: 1;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.layout-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- ABOUT SECTION --- */
.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 31, 24, 0.95);
    z-index: 2;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(162, 248, 0, 0.2);
}

.badge-1 {
    width: 140px;
    height: 140px;
    bottom: 5%;
    right: -5%;
}

.badge-1 span:first-child {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.badge-1 span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-2 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: -5%;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem;
}

.badge2-since {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-weight: 500;
}

.badge2-year {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 1px;
    line-height: 1.2;
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.bounce-slow {
    animation: floatBounce 4s ease-in-out infinite;
}

.bounce-slower {
    animation: floatBounce 5s ease-in-out infinite 1s;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(43, 89, 21, 0.4);
    color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-list h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-list p {
    color: var(--clr-text-muted);
}

/* --- CEO SECTION --- */
.ceo-section {
    background: var(--clr-surface-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ceo-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ceo-img-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.ceo-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(162, 248, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: block;
}

.ceo-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.ceo-badge i {
    font-size: 1.5rem;
}

.flex {
    display: flex;
}

/* --- SERVICES SECTION --- */
.services-section {
    background: var(--clr-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.service-card {
    padding: 2rem 1.75rem;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--clr-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(162, 248, 0, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(162, 248, 0, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* --- TALENTS SECTION --- */
.talents-section {
    position: relative;
}

.talents-bg-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--clr-accent-dim) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.talents-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.talent-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border-glass);
    transition: var(--transition-slow);
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.talent-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.talent-img-wrapper .img-content {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.talent-card:hover .img-content {
    transform: scale(1.05);
}

.talent-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(9, 11, 9, 0.95) 0%, rgba(9, 11, 9, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100%;
}

.categories li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.talent-info {
    padding: 1.25rem 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.talent-info h3 {
    font-size: 1.8rem;
}

.talent-info h3 span {
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    font-weight: 400;
}

.talent-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: nowrap;
}

.t-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--clr-accent);
    white-space: nowrap;
}

.talent-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    min-height: 45px;
}


/* --- CTA BANNER --- */
.cta-banner {
    padding: 4rem 0 8rem;
}

.glass-banner {
    background: linear-gradient(135deg, rgba(26, 31, 24, 0.8) 0%, rgba(18, 21, 17, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(162, 248, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.cta-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-points li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-action {
    background: rgba(9, 11, 9, 0.6);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 280px;
    width: 100%;
    max-width: 400px;
}

.adviser-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.adviser-avatar {
    width: 60px;
    height: 60px;
    background: var(--clr-surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--clr-accent);
}

.adviser-card h4 {
    font-size: 1.2rem;
}

.adviser-card span {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}


/* --- FOOTER --- */
.footer {
    background: var(--clr-surface);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col .logo-text {
    font-size: 2rem;
}

.hashtag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(162, 248, 0, 0.1);
    color: var(--clr-accent);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.links-col h4,
.contact-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links-col a,
.contact-col li {
    color: var(--clr-text-muted);
    transition: var(--transition);
}

.links-col a:hover {
    color: var(--clr-accent);
}

.contact-col li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-container {
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        justify-content: center;
    }

    .layout-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: 2;
        margin-top: 2rem;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-main-img {
        max-width: 100%;
        margin-top: 2rem;
    }

    /* CEO Reordering Mobile Fix */
    .ceo-section .container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .ceo-content {
        display: contents;
    }

    .ceo-section .badge {
        order: 1;
        margin-bottom: 1.5rem;
        align-self: center;
    }

    .ceo-section .section-title {
        order: 2;
        margin-bottom: 1rem;
    }

    .ceo-visual {
        order: 3;
        margin-bottom: 2rem;
        width: 100%;
    }

    .ceo-section .section-subtitle {
        order: 4;
        margin-bottom: 1.5rem;
    }

    .ceo-section .text-body {
        order: 5;
        text-align: center;
        margin-bottom: 1rem;
    }

    .ceo-stats {
        order: 6;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }

    .badge-1 {
        width: 110px;
        height: 110px;
        bottom: 5%;
        right: 0;
    }

    .badge-2 {
        display: none;
    }

    .feature-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .glass-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .cta-points li {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-col li {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 0.5rem auto 0;
        max-width: 90%;
    }

    .section-title:not(.flex-column) {
        white-space: normal;
    }

    .section-title.flex-column span {
        display: block;
        margin-bottom: 0.2rem;
    }

    .talents-slider {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 2rem;
    }

    .talent-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .categories {
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        list-style: none !important;
        text-align: center;
    }

    .talent-overlay {
        padding: 2rem 0;
        /* No horizontal padding to ensure labels center 100% */
        width: 100%;
        left: 0;
        justify-content: center;
    }

    .main-stats {
        padding: 2rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .image-stack {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        text-align: center;
        align-items: center;
    }

    .talents-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        width: 100%;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .btn-primary.large,
    .btn-secondary.large {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .adviser-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-action {
        width: 100%;
        min-width: 0;
        padding: 2rem 1.5rem;
    }

    .cta-action .btn-primary {
        width: 100%;
    }

    .section-logo {
        max-height: 150px;
    }

    .categories {
        gap: 0.3rem;
    }

    .categories li {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}