/* ===== GLOBAL & RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background: #000000;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.glass-section {
    position: relative;
    min-height: 100vh;
    background: #000000;
    overflow: hidden;
    font-family: 'Futura PT Medium';
    font-size: large;
}

.green-light {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(53, 232, 158, 0.5) 0%, transparent 70%);
    top: 0%;
    left: 0%;
    transform: translateY(-50%);
    animation: floatLeftRight 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.glass-section-down {
    position: relative;
    height: 60vh;
    background: #000000;
    overflow: hidden;
    font-family: 'Futura PT Medium';
    font-size: large;
}

.green-light-down {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(53, 232, 158, 0.5) 0%, transparent 70%);
    bottom: 0%;
    left: 0%;
    transform: translateY(50%);
    animation: floatLeftRight 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.image-container-down {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    overflow: hidden;
    flex-direction: column;
}

.position-absolutes {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0px;
    font-family: 'Futura PT Light';
    font-size: 1rem;
    color: white;
    width: 100%;
}

@keyframes floatLeftRight {
    0% { left: 0%; }
    50% { left: calc(100% - 700px); }
    100% { left: 0%; }
}

/* ===== NAVBAR ===== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    padding-top: 12px;
    padding-bottom: 12px;
}

#main-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(181, 235, 185, 0.1);
}

.text-green {
    color: #b5ebb9 !important;
    font-size: x-large !important;
    font-weight: bold !important;
}

.logo-brand-l {
    display: none !important;
}

.logo-brand-l img,
.logo-brand-m img {
    min-width: 30px;
    min-height: 30px;
    max-width: 35px;
}

.links {
    margin: 0 auto;
}

.nav-link {
    font-size: 1rem !important;
    position: relative;
    text-decoration: none !important;
    padding: 8px 0px !important;
    margin: 0px 30px !important;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: #b5ebb9;
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    pointer-events: none;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    transform: scaleX(1);
}

.nav-link.active-link {
    color: #b5ebb9 !important;
}

/* ===== HERO IMAGE ===== */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    overflow: hidden;
    perspective: 1000px;
    margin-top: 60px;
}

.dynamic-image {
    width: 250px;
    height: auto;
    transition: transform 0.1s ease-out;
    will-change: transform;
    transform: rotateY(-25deg);
    border-radius: 4px;
}

.dynamic-image-wrapper {
    padding-top: 30px;
    width: 280px;
    perspective: 1000px;
}

.rotating-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #0f754a;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Futura PT Medium';
    font-size: 0.8rem;
    top: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.rotating-circle:hover {
    transform: scale(1.1);
    background-color: #12915d;
}

.rotating-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('getintouchline.svg');
    background-size: 85px 85px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 8s linear infinite;
}

.rotating-circle span {
    position: relative;
    z-index: 2;
    color: white;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== MARQUEES ===== */
.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: max-content;
    position: absolute;
    bottom: 5%;
    z-index: 2;
    color: #b5ebb9;
    font-size: 130px;
    font-family: 'Syncopate Bold';
    opacity: 0.9;
}

.marquee-2 {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: max-content;
    position: absolute;
    bottom: 2%;
    z-index: 2;
    color: #b5ebb9;
    font-size: 30px;
    font-family: 'Syncopate Regular';
    opacity: 0.6;
}

.marquee__item {
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-name: marquee-content;
    animation-timing-function: linear;
    padding: 5px 15px;
}

.marquee-item-2 {
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: marquee-content-2;
    animation-timing-function: linear;
    padding: 5px 15px;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-wrapper a, .marquee-wrapper p {
    text-decoration: none;
    color: #b5ebb9;
    font-size: 5rem;
    font-family: 'Syncopate Bold';
    display: inline-block;
    padding: 5px 15px;
}

.marquee-wrapper a:hover {
    text-decoration: underline;
    text-underline-offset: 10px;
}

@keyframes marquee-content {
    from { transform: translateX(0%); }
    to { transform: translateX(-100%); }
}

@keyframes marquee-content-2 {
    from { transform: translateX(0%); }
    to { transform: translateX(100%); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.scroll-indicator span {
    font-family: 'Futura PT Medium';
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(181, 235, 185, 0.6);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #b5ebb9);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS COMMON ===== */
.about-section {
    background-color: #000000;
    padding: 80px 0px 60px 0px;
}

.section-title {
    color: #b5ebb9;
    font-size: 1.6rem;
    font-family: 'Syncopate Bold';
}

.section-line {
    height: 7px;
    width: 50px;
    background-color: #b5ebb933;
    margin-right: 7px;
}

.section-count {
    width: 0.3rem;
    height: 1.2rem;
    margin: 2px;
    background-color: #b5ebb9;
}

.content-section {
    background-color: #000000;
}

.content-section .intro {
    color: white;
    font-size: 1.4rem;
    font-family: 'Futura PT Book';
    max-width: 600px;
    text-align: center;
}

.content-section .desc {
    color: rgba(255, 255, 255, 0.676);
    font-size: 1.15rem;
    font-family: 'Futura PT Book';
    max-width: 600px;
    text-align: center;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.about-btn {
    background-color: #b5ebb9;
    color: #000000;
    font-family: 'Futura PT Demi';
    border-radius: 20px;
    padding: 8px 20px;
    margin: 20px;
    font-size: 0.8rem;
    transition: all 0.5s ease-in-out;
    border: none;
    cursor: pointer;
}

.about-btn:hover {
    background-color: #a1f1a6;
    transform: scale(1.05);
    color: #000000;
}

.rounded-circle {
    width: 35px;
    height: 35px;
    background-color: #b5ebb9 !important;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease-in-out !important;
}

.rounded-circle:hover {
    background-color: #a1f1a6 !important;
    transform: scale(1.05) !important;
}

.icon-right {
    transform: rotate(-45deg);
    transition: all 0.4s ease;
    font-size: 14px;
}

.arrow-out {
    opacity: 1;
    transform: rotate(-45deg) translate(0);
}

.arrow-in {
    opacity: 0;
    transform: rotate(-45deg) translate(-100%);
}

.arrow-btn:hover .arrow-out {
    opacity: 0;
    transform: rotate(-45deg) translate(100%);
}

.arrow-btn:hover .arrow-in {
    opacity: 1;
    transform: rotate(-45deg) translate(0);
}

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 20px 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Syncopate Bold';
    font-size: 3rem;
    color: #b5ebb9;
    line-height: 1;
}

.stat-label {
    font-family: 'Futura PT Book';
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #b5ebb933, transparent);
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
    max-width: 900px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

.app-showcase-inner {
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.04), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(181, 235, 185, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.app-showcase-inner:hover {
    border-color: rgba(181, 235, 185, 0.25);
    transform: translateY(-4px);
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 235, 185, 0.1);
    color: #b5ebb9;
    font-family: 'Futura PT Medium';
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    margin: 24px 0 0 24px;
    letter-spacing: 0.5px;
}

.app-thumbnail-wrapper {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.app-thumbnail {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.app-thumbnail:hover {
    transform: scale(1.02);
}

.app-info {
    padding: 0 30px 20px;
}

.app-name {
    font-family: 'Syncopate Bold';
    color: #b5ebb9;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.app-desc {
    font-family: 'Futura PT Book';
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.app-tag {
    background: rgba(181, 235, 185, 0.08);
    color: #b5ebb9;
    font-family: 'Futura PT Medium';
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 15px;
    border: 1px solid rgba(181, 235, 185, 0.15);
    transition: all 0.3s ease;
}

.app-tag:hover {
    background: rgba(181, 235, 185, 0.15);
    border-color: rgba(181, 235, 185, 0.3);
}

/* ===== SCREENSHOTS GALLERY ===== */
.app-screenshots-gallery {
    padding: 20px 0 30px;
}

.screenshots-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 30px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #b5ebb933 transparent;
}

.screenshots-scroll::-webkit-scrollbar {
    height: 4px;
}

.screenshots-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
    background: #b5ebb933;
    border-radius: 4px;
}

.screenshots-scroll::-webkit-scrollbar-thumb:hover {
    background: #b5ebb966;
}

.screenshot-img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 1px solid rgba(181, 235, 185, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.screenshot-img:hover {
    transform: scale(1.04);
    border-color: rgba(181, 235, 185, 0.3);
}

/* ===== SKILLS GRID ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 20px auto 40px;
    padding: 0 24px;
}

.skill-card {
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.04), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(181, 235, 185, 0.08);
    border-radius: 14px;
    padding: 24px 12px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.skill-card:hover {
    border-color: rgba(181, 235, 185, 0.3);
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.08), rgba(0, 0, 0, 0.5));
    box-shadow: 0 8px 32px rgba(181, 235, 185, 0.08);
}

.skill-icon {
    font-size: 1.8rem;
    color: #b5ebb9;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.15);
}

.skill-name {
    font-family: 'Futura PT Medium';
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 30px auto 20px;
    padding: 0 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.04), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(181, 235, 185, 0.08);
    border-radius: 14px;
    padding: 28px 16px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: rgba(181, 235, 185, 0.3);
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.08), rgba(0, 0, 0, 0.5));
    box-shadow: 0 8px 32px rgba(181, 235, 185, 0.08);
    text-decoration: none;
}

.contact-card i {
    font-size: 1.6rem;
    color: #b5ebb9;
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.2);
}

.contact-label {
    font-family: 'Futura PT Medium';
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-value {
    font-family: 'Futura PT Book';
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* ===== TECHNOLOGIES MARQUEE ===== */
.marquee-track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 40px;
}

.logo-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.logo-item:hover img {
    transform: scale(1.1);
}

.logo-name {
    margin-top: 12px;
    font-size: 1.4rem;
    font-family: 'Futura PT Demi';
    color: white;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCREENSHOT LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay img {
    max-height: 85vh;
    max-width: 90vw;
    border-radius: 16px;
    border: 1px solid rgba(181, 235, 185, 0.15);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #b5ebb9;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    font-family: 'Futura PT Medium';
}

.lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .logo-brand-l {
        display: block !important;
    }

    .icons {
        justify-content: center;
    }

    .logo-brand-m {
        display: none;
    }

    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh;
        overflow: hidden;
        perspective: none;
    }

    .image-container-down {
        height: 40vh;
    }

    .glass-section-down {
        height: 40vh;
    }

    .green-light-down {
        height: 400px;
        width: 400px;
    }

    .dynamic-image {
        width: 200px;
        height: auto;
        transition: none;
        will-change: auto;
        transform: rotateY(-25deg);
    }

    .green-light {
        width: 400px;
        height: 400px;
        top: 20%;
        animation: floatLeftRight 5s ease-in-out infinite;
    }

    .marquee {
        font-size: 80px;
    }

    .marquee-2 {
        font-size: 20px;
    }

    @keyframes floatLeftRight {
        0% { left: 0%; }
        50% { left: calc(100% - 400px); }
        100% { left: 0%; }
    }

    .rotating-circle {
        width: 80px !important;
        height: 80px !important;
        transform: translateX(-40px);
        font-size: 0.6rem !important;
    }

    .rotating-circle::before {
        background-size: 65px 65px !important;
    }

    .dynamic-image-wrapper {
        padding-top: 20px;
    }

    .marquee-wrapper a, .marquee-wrapper p {
        font-size: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-link {
        margin: 0px 15px !important;
    }
}

@media (max-width: 575.98px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .app-name {
        font-size: 1.2rem;
    }

    .app-info {
        padding: 0 20px 20px;
    }

    .screenshot-img {
        width: 140px;
    }

    .screenshots-scroll {
        padding: 0 20px 12px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .content-section .intro {
        font-size: 1.2rem;
    }

    .content-section .desc {
        font-size: 1rem;
    }

    .marquee-wrapper a, .marquee-wrapper p {
        font-size: 2rem;
    }

    .image-container {
        height: 70vh;
    }

    .marquee {
        font-size: 55px;
    }

    .marquee-2 {
        font-size: 16px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 14px;
    }

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

/* ===== TIMELINE (Experience & Education) ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 20px auto 40px;
    padding: 0 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 44px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #b5ebb9, rgba(181, 235, 185, 0.1));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 38px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #b5ebb9;
    border: 3px solid #000;
    z-index: 1;
    box-shadow: 0 0 12px rgba(181, 235, 185, 0.4);
}

.timeline-content {
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.04), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(181, 235, 185, 0.08);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: rgba(181, 235, 185, 0.25);
    transform: translateX(4px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.timeline-header h3 {
    font-family: 'Futura PT Demi';
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.timeline-company {
    font-family: 'Futura PT Medium';
    color: #b5ebb9;
    font-size: 0.85rem;
    background: rgba(181, 235, 185, 0.1);
    padding: 3px 12px;
    border-radius: 12px;
}

.timeline-date {
    font-family: 'Futura PT Book';
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    font-family: 'Futura PT Book';
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}

.timeline-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #b5ebb9;
}

.timeline-detail {
    font-family: 'Futura PT Book';
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 8px 0 0;
}

.timeline-detail strong {
    color: #b5ebb9;
}

/* ===== ACHIEVEMENTS ===== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 850px;
    margin: 20px auto 40px;
    padding: 0 24px;
}

.achievement-card {
    background: linear-gradient(145deg, rgba(181, 235, 185, 0.04), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(181, 235, 185, 0.08);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.achievement-card:hover {
    border-color: rgba(181, 235, 185, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(181, 235, 185, 0.08);
}

.achievement-icon {
    font-size: 2rem;
    color: #b5ebb9;
    margin-bottom: 14px;
}

.achievement-card h4 {
    font-family: 'Futura PT Demi';
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.achievement-card p {
    font-family: 'Futura PT Book';
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.achievement-card strong {
    color: #b5ebb9;
}

.achievement-link {
    font-family: 'Futura PT Medium';
    color: #b5ebb9;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.achievement-link:hover {
    color: #a1f1a6;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== APP STORE LINK ===== */
.app-store-link {
    padding: 0 30px 28px;
    display: flex;
    justify-content: center;
}