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

:root {
    /* Colors */
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --black-border: #2a2a2a;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray: #a0a0a0;
    --gray-light: #cccccc;
    --yellow: #FFD600;
    --yellow-light: #FFE066;
    --yellow-dark: #E6C200;
    --yellow-glow: rgba(255, 214, 0, 0.15);
    --yellow-glow-strong: rgba(255, 214, 0, 0.3);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    background: var(--yellow-glow);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.highlight {
    color: var(--yellow);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.btn-primary:hover {
    background: var(--yellow-light);
    box-shadow: 0 6px 30px rgba(255, 214, 0, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--black-border);
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--black-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--yellow-light);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.bar {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--yellow);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--yellow);
    bottom: 10%;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 40%;
    left: 30%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--yellow);
    background: var(--yellow-glow);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 214, 0, 0.2);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--black-light);
    border-radius: 36px;
    border: 3px solid var(--black-border);
    padding: 16px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--yellow-glow);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--black-card);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
}

.phone-app-header {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.app-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black-border);
}

.app-dot:first-child {
    background: var(--yellow);
}

.phone-app-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-card {
    height: 140px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--black-border), var(--black-light));
}

.app-card-sm {
    height: 60px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--black-border), var(--black-light));
}

.app-bar {
    height: 24px;
    border-radius: 8px;
    background: var(--black-border);
    width: 100%;
}

.app-bar.short {
    width: 60%;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 0, 0.05), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.badge-android {
    top: 15%;
    left: -10%;
    animation: float 3s ease-in-out infinite;
}

.badge-ios {
    bottom: 25%;
    right: -15%;
    animation: float 3s ease-in-out infinite 1s;
}

.badge-users {
    bottom: 8%;
    left: 0;
    animation: float 3s ease-in-out infinite 0.5s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
}

/* ===== ABOUT ===== */
.about {
    padding: var(--section-padding);
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.about-story h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.about-story p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-story strong {
    color: var(--yellow);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 8px 30px var(--yellow-glow);
    transform: translateY(-4px);
}

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.achievements-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.achievement {
    text-align: center;
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--yellow);
}

.achievement-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow);
}

.achievement-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--yellow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--yellow-glow);
    color: var(--yellow);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--yellow);
    background: var(--yellow-glow);
    padding: 4px 12px;
    border-radius: 50px;
}

.service-card-full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
}

.service-card-full .service-icon {
    margin-bottom: 0;
}

.service-card-full h3 {
    margin-bottom: 4px;
}

.service-card-full p {
    margin-bottom: 0;
}

.service-card-full .service-tag {
    white-space: nowrap;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: var(--section-padding);
    background: var(--black-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--black-border);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.portfolio-icon {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yellow);
    background: var(--yellow-glow);
    padding: 4px 12px;
    border-radius: 50px;
}

.meta-installs {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    background: var(--black-card);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--yellow);
}

.contact-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-card a,
.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-info-card a:hover {
    color: var(--yellow);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-hours {
    padding: 24px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
}

.contact-hours h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links-group h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--gray);
}

.footer-links-group a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--yellow-light);
    transform: translateY(-4px);
}

/* ===== SCROLL REVEAL ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease calc(var(--delay, 0s)),
                transform 0.6s ease calc(var(--delay, 0s));
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== FORM SUCCESS ===== */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .service-card-full {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card-full .service-icon {
        margin: 0 auto 12px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-slow);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-stats {
        gap: 24px;
    }

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

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

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

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

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

    .achievements-bar {
        grid-template-columns: 1fr 1fr;
        padding: 28px;
    }

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

    .hero-badge {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

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