/* ══════════════════════════════════════════════════════
   MODULE 7 — NUMBERS / ACHIEVEMENTS
══════════════════════════════════════════════════════ */

.achievements-section {
    padding: 0 7px 7px;
    background: #0f0f0f;
    position: relative;
    z-index: 2;
}

.achievements-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-xl);
}

/* ── Title ── */
.ach-title-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: var(--sp-md);
    z-index: 10;
}

.ach-massive-title {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: clamp(3rem, 7vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #f0f0f0;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 0 40px;
}

.ach-title-line {
    overflow: hidden;
    padding-bottom: 0.1em;
}

.ach-title-line:nth-child(2) {
    margin-left: 10vw;
    color: var(--clr-ivory);
}

.ach-title-line:nth-child(3) {
    margin-left: 5vw;
}

/* ── Grid System ── */
.ach-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--sp-lg);
    width: 100%;
    align-items: start;
}

/* ── Modular Cards ── */
.ach-card {
    background: #f0f0f0;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #0f0f0f;
}

.ach-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-card-hover), 0 20px 60px rgba(0,0,0,0.15);
}

/* Feature Number Blocks */
.ach-num-block {
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    min-height: 350px;
}

.ach-number {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 1;
    color: #0f0f0f;
    display: flex;
    align-items: center;
}

.ach-num-plus {
    color: var(--clr-red);
    font-size: 0.8em;
}

.ach-num-label {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Standard Achievement Panels */
.ach-text-card {
    min-height: 250px;
    align-items: flex-start;
    justify-content: space-between;
}

.ach-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: var(--border-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-md);
    background-color: var(--clr-ivory);
    color: var(--clr-black);
    transition: transform 1s var(--ease-luxury), background-color 0.8s ease, color 0.8s ease;
}

.ach-card:hover .ach-icon-circle {
    transform: rotate(45deg) scale(1.1);
    background-color: var(--clr-black);
    color: var(--clr-ivory);
}

.ach-card-text {
    font-family: var(--font-sans), 'Inter', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Highlight Statement Panel */
.ach-highlight-panel {
    background-color: var(--clr-black);
    color: var(--clr-ivory);
    border: var(--border-thick);
    border-color: var(--clr-black);
    text-align: center;
    align-items: center;
    padding: var(--sp-xl) var(--sp-lg);
    grid-column: span 12;
    margin-top: var(--sp-lg);
}

.ach-highlight-text {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.1;
    max-width: 1000px;
}

.ach-highlight-sub {
    margin-top: var(--sp-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-gold);
}

/* Offsets & Spans */
.ach-col-4 { grid-column: span 4; }
.ach-col-5 { grid-column: span 5; }
.ach-col-6 { grid-column: span 6; }
.ach-col-7 { grid-column: span 7; }
.ach-col-8 { grid-column: span 8; }

.ach-offset-down { margin-top: 5vw; }
.ach-offset-up { margin-top: -3vw; }

/* Responsive Grid */
@media (max-width: 1024px) {
    .ach-col-4, .ach-col-5, .ach-col-6, .ach-col-7, .ach-col-8 {
        grid-column: span 12;
    }
    .ach-offset-down, .ach-offset-up {
        margin-top: 0;
    }
    .ach-text-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .ach-massive-title {
        font-size: 15vw;
    }
    .ach-title-line:nth-child(2),
    .ach-title-line:nth-child(3) {
        margin-left: 0;
    }
    .ach-highlight-panel {
        padding: var(--sp-lg) var(--sp-sm);
    }
}
