/* ============================================
   MÆL LANDING PAGE v2.1 — THE 3-IN-1 FORMULA
   Colors: Beige #F5F1E8, Gold #C9A961, Black #1A1A1A
   Typography: Montserrat (Extra-Bold headings, Regular body)
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --beige: #F5F1E8;
    --gold: #C9A961;
    --black: #1A1A1A;
    --grey: #6B6560;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   STICKY LOGO
   ============================================ */
.sticky-logo {
    position: fixed;
    top: 28px;
    left: 32px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.sticky-logo.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.01em;
}

.sticky-logo-text sup {
    font-size: 10px;
    font-weight: 400;
    vertical-align: super;
    margin-left: 1px;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 40px;
    background-color: var(--beige);
    overflow: hidden;
}

/* Decorative circles */
.hero-decorative-circle {
    position: absolute;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.circle-1 {
    top: -180px;
    right: -180px;
    width: 550px;
    height: 550px;
}

.circle-2 {
    bottom: -140px;
    left: -140px;
    width: 420px;
    height: 420px;
}

.circle-3 {
    top: 30%;
    right: -60px;
    width: 200px;
    height: 200px;
    opacity: 0.05;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Version Badge */
.version-badge {
    display: inline-block;
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
    padding: 10px 32px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    font-size: 100px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.logo-super {
    font-size: 42px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    top: 2px;
    margin-left: 6px;
}

.logo-line {
    width: 140px;
    height: 2px;
    background-color: var(--gold);
    margin: 18px auto 0;
}

/* Hero Title & Subtitle */
.hero-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.hero-journey {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* ============================================
   HERO CTA BLOCK — BLACK INSET CARD
   ============================================ */
.hero-cta-block {
    margin-top: 50px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    background-color: var(--black);
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-cta-block .btn-primary {
    display: block;
    text-align: center;
    margin-bottom: 32px;
}

.hero-cta-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
}

.hero-cta-subtitle {
    font-size: 15px;
    color: var(--beige);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}

.hero-cta-deal {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
    color: var(--gold);
}

.hero-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.hero-cta-list li {
    font-size: 14px;
    color: var(--beige);
    line-height: 2;
    padding-left: 0;
}

.hero-cta-list li .gold-arrow {
    color: var(--gold);
    font-weight: 700;
    margin-right: 8px;
}

.hero-cta-footer {
    font-size: 13px;
    color: var(--grey);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 18px 52px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-secondary,
.cv-button {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    padding: 16px 45px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover,
.cv-button:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Pulse animation */
.btn-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(201, 169, 97, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section-label {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--black);
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

/* Section animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ORIGIN STORY — TIMELINE
   ============================================ */
#origin {
    padding: 100px 0 120px;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    min-width: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-flag {
    font-size: 36px;
    margin-bottom: 16px;
}

.timeline-card {
    padding: 20px 18px;
}

.timeline-card-highlight {
    background-color: var(--beige);
    border-left: 3px solid var(--gold);
    border-radius: 2px;
}

.timeline-heading {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-period {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.timeline-location {
    font-size: 11px;
    color: var(--grey);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.timeline-text {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.7;
}

.timeline-arrow {
    font-size: 22px;
    color: var(--gold);
    align-self: center;
    flex: 0;
    margin-top: 60px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-arrow.visible {
    opacity: 1;
}

/* ============================================
   UNFAIR ADVANTAGE — CARDS
   ============================================ */
#advantage {
    padding: 120px 0;
    background-color: var(--beige);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.advantage-card {
    background-color: var(--white);
    padding: 45px 30px 35px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    position: relative;
}

.advantage-card:hover {
    border-color: var(--gold);
    transform: scale(1.03);
    background-color: var(--beige);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 22px;
}

.advantage-heading {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.advantage-text {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 22px;
}

.advantage-footer {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 169, 97, 0.25);
}

/* ============================================
   TECHNICAL SPECIFICATIONS
   ============================================ */
#specs {
    padding: 120px 0;
    background-color: var(--beige);
}

#specs .section-label {
    font-size: 18px;
    letter-spacing: 0.2em;
}

/* Main Title — matches section-title style but with custom margin */
.specs-main-title {
    font-size: 26px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 80px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Two Columns Layout */
.specs-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 0;
}

.specs-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Company Logo Containers */
.specs-logo-container {
    margin-bottom: 40px;
    height: 80px;
    display: flex;
    align-items: center;
}

.specs-company-logo {
    max-height: 75px;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

/* L'Oréal logo: wide wordmark — constrain width, let height follow */
.specs-col:first-child .specs-company-logo {
    max-width: 200px;
    max-height: 60px;
}

/* OGC Nice logo: crest — match L'Oréal logo size, centered above bars */
.specs-col:last-child .specs-logo-container {
    justify-content: center;
    width: 100%;
}
.specs-col:last-child .specs-company-logo {
    max-height: 60px;
    max-width: 200px;
}

.specs-company-fallback {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
}

/* ---- Overlapping Circles (L'Oréal) ---- */
.specs-circles {
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-bottom: 30px;
}

.specs-circle {
    border-radius: 50%;
    background-color: rgba(201, 169, 97, 0.25);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.specs-circle-sm {
    width: 100px;
    height: 100px;
    z-index: 4;
}

.specs-circle-md {
    width: 125px;
    height: 125px;
    margin-left: -20px;
    z-index: 3;
}

.specs-circle-lg {
    width: 155px;
    height: 155px;
    margin-left: -20px;
    z-index: 2;
}

.specs-circle-xl {
    width: 180px;
    height: 180px;
    margin-left: -20px;
    z-index: 1;
}

.specs-circle-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.specs-circle-sm .specs-circle-number {
    font-size: 24px;
}

.specs-circle-md .specs-circle-number {
    font-size: 26px;
}

.specs-circle-lg .specs-circle-number {
    font-size: 28px;
}

.specs-circle-xl .specs-circle-number {
    font-size: 30px;
}

.specs-circle-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--black);
    text-transform: uppercase;
    margin-top: 6px;
    padding: 0 8px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.specs-circle-sm .specs-circle-label {
    font-size: 7px;
    padding: 0 6px;
}

.specs-circle-xl .specs-circle-label {
    font-size: 9px;
}

/* ---- Vertical Bar Chart (OGC Nice) ---- */
.specs-bars {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 220px;
    padding-bottom: 0;
}

.specs-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.specs-bar {
    width: 100%;
    background-color: rgba(201, 169, 97, 0.25);
    border: none;
    border-radius: 3px 3px 0 0;
    min-width: 60px;
}

.specs-bar-1 {
    height: 60px;
}

.specs-bar-2 {
    height: 100px;
}

.specs-bar-3 {
    height: 150px;
}

.specs-bar-4 {
    height: 200px;
}

.specs-bar-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    line-height: 1;
}

.specs-bar-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--black);
    text-transform: uppercase;
    margin-top: 8px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

/* ---- Horizontal Divider ---- */
.specs-divider {
    width: 80px;
    height: 1px;
    background-color: var(--gold);
    margin: 60px auto;
}

/* ---- Effective For ---- */
.specs-effective {
    text-align: center;
}

.specs-effective-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.specs-effective-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.specs-effective-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.specs-checkmark {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   PHOTO TRANSITION SECTION
   ============================================ */
.photo-transition-section {
    background-color: var(--beige);
    padding: 80px 0;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.photo-transition-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.photo-transition-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: inline-block;
    opacity: 0;
    transform: translateY(80px);
    will-change: opacity, transform;
    transition: none;
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
#cta {
    padding: 120px 0;
    background-color: var(--white);
}

.cta-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--grey);
    margin-bottom: 30px;
}

.cta-dates {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.cta-cities {
    font-size: 15px;
    color: var(--grey);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.cta-separator {
    width: 100px;
    height: 1px;
    background-color: var(--gold);
    margin: 40px auto;
}

.cta-review-text {
    font-size: 15px;
    color: var(--grey);
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 60px 0 50px;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer-super {
    font-size: 14px;
    font-weight: 400;
    vertical-align: super;
    margin-left: 2px;
}

.footer-info {
    font-size: 13px;
    color: var(--grey);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 13px;
    font-style: italic;
    color: var(--grey);
    letter-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .sticky-logo {
        top: 18px;
        left: 20px;
    }

    .sticky-logo-text {
        font-size: 18px;
    }

    .logo {
        font-size: 70px;
    }

    .logo-super {
        font-size: 30px;
    }

    .hero-title {
        font-size: 22px;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-journey {
        font-size: 13px;
    }

    .hero-decorative-circle {
        display: none;
    }

    .hero-cta-block {
        padding: 35px 28px;
        max-width: 100%;
    }

    .hero-cta-title {
        font-size: 17px;
    }

    .hero-cta-list li {
        font-size: 13px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Timeline vertical */
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .timeline-step {
        max-width: 100%;
        width: 100%;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .timeline-card {
        text-align: left;
        padding: 20px;
    }

    .timeline-card-highlight {
        text-align: left;
    }

    .timeline-flag {
        text-align: left;
    }

    /* Advantage cards stack */
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 50px;
    }

    #origin {
        padding: 80px 0 80px;
    }

    #advantage,
    #specs,
    #cta {
        padding: 80px 0;
    }

    /* Specs section tablet */
    .specs-main-title {
        font-size: 24px;
        margin-bottom: 60px;
    }

    .specs-columns {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .specs-col {
        align-items: center;
    }

    .specs-circles {
        justify-content: center;
    }

    .specs-bars {
        width: 100%;
        max-width: 400px;
    }

    .specs-effective-grid {
        gap: 14px 30px;
    }

    .cta-heading {
        font-size: 24px;
    }

    .cta-dates {
        font-size: 18px;
    }

    .photo-transition-img {
        max-width: 360px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .logo {
        font-size: 70px;
    }

    .logo-super {
        font-size: 30px;
    }

    .hero-title {
        font-size: 18px;
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .version-badge {
        padding: 6px 22px;
        font-size: 10px;
        margin-bottom: 35px;
    }

    .hero-cta-block {
        padding: 30px 22px;
    }

    .hero-cta-title {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .hero-cta-list li {
        font-size: 12px;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 13px;
    }

    .btn-secondary,
    .cv-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
    }

    .section-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .cta-heading {
        font-size: 20px;
        letter-spacing: 0.06em;
    }

    .cta-dates {
        font-size: 16px;
    }

    .advantage-card {
        padding: 35px 24px 28px;
    }

    /* Specs section mobile */
    .specs-main-title {
        font-size: 22px;
        margin-bottom: 50px;
    }

    .specs-circles {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .specs-circle-sm {
        width: 80px;
        height: 80px;
    }

    .specs-circle-md {
        width: 95px;
        height: 95px;
        margin-left: -10px;
    }

    .specs-circle-lg {
        width: 115px;
        height: 115px;
        margin-left: -10px;
    }

    .specs-circle-xl {
        width: 135px;
        height: 135px;
        margin-left: -10px;
    }

    .specs-circle-number {
        font-size: 20px;
    }

    .specs-circle-sm .specs-circle-number {
        font-size: 18px;
    }

    .specs-circle-md .specs-circle-number {
        font-size: 20px;
    }

    .specs-circle-lg .specs-circle-number {
        font-size: 22px;
    }

    .specs-circle-xl .specs-circle-number {
        font-size: 24px;
    }

    .specs-circle-label {
        font-size: 6px;
        padding: 0 4px;
    }

    .specs-circle-sm .specs-circle-label {
        font-size: 5.5px;
    }

    .specs-circle-xl .specs-circle-label {
        font-size: 7px;
    }

    .specs-bars {
        height: 160px;
        gap: 12px;
    }

    .specs-bar-1 {
        height: 40px;
    }

    .specs-bar-2 {
        height: 70px;
    }

    .specs-bar-3 {
        height: 110px;
    }

    .specs-bar-4 {
        height: 145px;
    }

    .specs-bar-number {
        font-size: 18px;
    }

    .specs-bar-label {
        font-size: 7px;
    }

    .specs-bar {
        min-width: 50px;
    }

    .specs-effective-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
    }

    .specs-effective-item {
        font-size: 14px;
        justify-content: center;
    }

    .photo-transition-img {
        max-width: 300px;
    }
}
