/* ============================================ */
/* HERO SECTION                                */
/* CONSTRAINT: .hero has overflow:hidden at    */
/* height:100vh — ALL content must fit within  */
/* 100vh or it gets silently clipped.          */
/* Solution: clamp() with vh everywhere so     */
/* spacing shrinks proportionally on any screen*/
/* ============================================ */

.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(25, 118, 210, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 25, 41, 0.65) 0%, rgba(19, 47, 76, 0.58) 50%, rgba(13, 23, 33, 0.70) 100%),
        url('../../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
}

/* Woven fabric overlay */
/* .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(201, 184, 150, 0.04) 6px, rgba(201, 184, 150, 0.04) 12px),
        repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(201, 184, 150, 0.04) 6px, rgba(201, 184, 150, 0.04) 12px);
    pointer-events: none;
    z-index: 1;
} */

/* ============================================ */
/* HERO LEFT                                   */
/* padding-top: nav-height + small breathing   */
/* All vertical spacing uses clamp(rem,vh,rem) */
/* so it compresses proportionally on any      */
/* viewport height including DPI-scaled screens*/
/* ============================================ */

.hero-left {
    flex: 0 0 50%;
    padding-top: calc(var(--nav-height) + clamp(0.6rem, 1.5vh, 2.5rem));
    padding-bottom: clamp(0.6rem, 1.5vh, 2.5rem);
    padding-left: 6%;
    padding-right: 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right,
        rgba(10, 25, 41, 0.96) 0%,
        rgba(10, 25, 41, 0.91) 60%,
        rgba(10, 25, 41, 0.72) 90%,
        rgba(10, 25, 41, 0.45) 100%
    );
    box-sizing: border-box;
    height: 100vh;
}

/* Embroidered thread border on right */
.hero-left::before {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 10%;
    width: 3px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--gold-accent) 5%,
        var(--logo-blue) 20%,
        var(--gold-accent) 40%,
        var(--logo-blue) 60%,
        var(--gold-accent) 80%,
        var(--logo-blue) 95%,
        transparent 100%
    );
    opacity: 0.6;
    box-shadow:
        0 0 15px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(25, 118, 210, 0.3);
}

.hero-content {
    max-width: 680px;
    animation: fadeInSlideUp 1s ease-out;
}

/* ============================================ */
/* HERO BADGE                                  */
/* ============================================ */

.hero-logo-badge {
    margin-bottom: clamp(0.6rem, 1.3vh, 1.8rem);
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(25, 118, 210, 0.25) 100%);
    border: 2px solid var(--gold-accent);
    border-radius: 6px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-gold);
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-badge::before {
    content: '';
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
}

.hero-badge::after {
    content: '';
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
}

/* ============================================ */
/* HERO TITLE                                  */
/* clamp(2.2rem, 4.5vh, 3.8rem):               */
/* • 614px CSS height (Win 125% DPI) → 2.2rem  */
/* • 900px → ~2.7rem                           */
/* • 1080px+ → 3.8rem                          */
/* ============================================ */

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vh, 3.8rem);
    font-weight: 800;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: clamp(0.5rem, 1.2vh, 1.2rem);
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vh, 1.4rem);
    color: var(--soft-gold);
    font-style: italic;
    margin-bottom: clamp(0.6rem, 1.4vh, 1.6rem);
    letter-spacing: 2px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: clamp(0.88rem, 1.4vh, 1rem);
    color: var(--cream);
    line-height: 1.65;
    margin-bottom: clamp(0.8rem, 1.8vh, 2rem);
    opacity: 0.9;
    border-left: 3px solid var(--gold-accent);
    padding-left: 1.4rem;
}

/* ============================================ */
/* USP ITEMS                                   */
/* ============================================ */

.hero-usps {
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 0.9vh, 0.9rem);
    margin-bottom: clamp(0.8rem, 1.8vh, 2rem);
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: clamp(0.55rem, 1vh, 0.85rem) 1.4rem;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.18) 0%, rgba(212, 175, 55, 0.12) 100%);
    border-left: 5px solid var(--gold-accent);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.usp-item::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
}

.usp-item:hover::before {
    transform: translateX(100%) translateY(100%);
}

.usp-item:hover {
    transform: translateX(12px);
    border-left-width: 7px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.usp-icon {
    font-size: 1.4rem;
    width: 34px;
    text-align: center;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.usp-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.5px;
}

/* ============================================ */
/* BUTTONS                                     */
/* ============================================ */

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: clamp(0.85rem, 1.5vh, 1.1rem) 2.4rem;
    font-family: 'Crimson Text', serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::after { left: 100%; }

.cta-primary {
    background: linear-gradient(135deg, var(--logo-blue), var(--accent-blue));
    color: white;
    border: 2px solid var(--logo-blue);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
}

.cta-secondary:hover {
    background: var(--gold-accent);
    color: var(--primary-navy);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* ============================================ */
/* HERO RIGHT — TIMELINE SHOWCASE              */
/* ============================================ */

.hero-right {
    flex: 1;
    padding-top: calc(var(--nav-height) + clamp(0.6rem, 1.5vh, 2.5rem));
    padding-bottom: clamp(0.6rem, 1.5vh, 2.5rem);
    padding-left: 2%;
    padding-right: 4%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    background: linear-gradient(to left,
        rgba(10, 25, 41, 0.5) 0%,
        rgba(10, 25, 41, 0.3) 100%
    );
    overflow: hidden;
    height: 100vh;
    box-sizing: border-box;
}

.timeline-showcase {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================ */
/* TIMELINE HEADER                             */
/* ============================================ */

.timeline-header-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: clamp(0.8rem, 1.8vh, 2rem);
    flex-wrap: wrap;
    flex-shrink: 0;
}

.timeline-badge-hero {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(25, 118, 210, 0.25) 100%);
    border: 1px solid var(--gold-accent);
    border-radius: 50px;
    color: var(--soft-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-title-hero {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vh, 1.9rem);
    font-weight: 700;
    color: var(--cream);
    position: relative;
    padding-bottom: 0.4rem;
}

.timeline-title-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 3.5rem; height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

/* ============================================ */
/* TIMELINE ROPE CONTAINER                     */
/* margin-bottom ensures it never runs         */
/* edge-to-edge with the section boundary      */
/* ============================================ */

.timeline-rope-container {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: flex-start;
    position: relative;
    flex: 1;
    min-height: 0;
    /* No max-height — hero-right overflow:hidden bounds it; flex:1 fills the space */
    margin-bottom: clamp(0.5rem, 1vh, 1.5rem);
}

.timeline-years-track {
    flex: 0 0 150px;
    position: relative;
    height: 100%;
}

.timeline-rope {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
        var(--gold-accent) 0%,
        var(--logo-blue) 30%,
        var(--gold-accent) 50%,
        var(--logo-blue) 70%,
        var(--gold-accent) 100%
    );
    border-radius: 2px;
    box-shadow:
        0 0 25px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(25, 118, 210, 0.3);
}

.timeline-rope::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 3px,
        rgba(255, 255, 255, 0.15) 3px,
        rgba(255, 255, 255, 0.15) 4px
    );
}

.rope-pull-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--gold-accent) 50%, transparent 100%);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.9);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
}

.rope-pull-indicator.pulling {
    opacity: 1;
    animation: ropePull 0.6s ease;
}

@keyframes ropePull {
    0%   { top: 0;    transform: translateX(-50%) scaleY(1); }
    50%  { top: 50%;  transform: translateX(-50%) scaleY(1.3); }
    100% { top: 100%; transform: translateX(-50%) scaleY(1); }
}

.timeline-years-slider {
    position: relative;
    width: 100%; height: 100%;
    overflow: hidden;
}

.timeline-years-list {
    position: absolute;
    left: 0; width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* TIMELINE YEAR NODES — visual hierarchy      */
/* Inactive: muted & scaled down               */
/* Active: full presence, glowing              */
/* ============================================ */

.timeline-year-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 0;
    position: relative;
    opacity: 0.38;
    transform: scale(0.88);
    transition: all 0.4s ease;
}

.timeline-year-node.active {
    opacity: 1;
    transform: scale(1);
}

.year-node-badge {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.95) 0%, rgba(19, 47, 76, 0.95) 100%);
    border: 3px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.timeline-year-node.active .year-node-badge {
    border-color: var(--gold-accent);
    border-width: 4px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 55px rgba(212, 175, 55, 0.55),
        0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(12, 28, 52, 0.98) 0%, rgba(19, 47, 76, 0.98) 100%);
}

.year-node-badge::before,
.year-node-badge::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    transition: border-color 0.4s ease;
}

.timeline-year-node.active .year-node-badge::before,
.timeline-year-node.active .year-node-badge::after {
    border-color: var(--gold-accent);
}

.year-node-badge::before { top: 14px;    left: 50%; transform: translateX(-50%); }
.year-node-badge::after  { bottom: 14px; left: 50%; transform: translateX(-50%); }

.year-node-badge h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(244, 228, 193, 0.6);
    transition: all 0.4s ease;
}

.timeline-year-node.active .year-node-badge h3 {
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

/* ============================================ */
/* TIMELINE CONTENT CARDS                      */
/* ============================================ */

.timeline-content-display {
    flex: 1;
    position: relative;
    height: 100%;
}

.timeline-card {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.timeline-card.exit {
    transform: translateX(-50px);
    opacity: 0;
}

.timeline-content-hero {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 243, 240, 0.97) 100%);
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    /* Stretch to fill the absolutely-positioned card */
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image grows to fill remaining card height after the text block */
.timeline-image-hero {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: clamp(140px, 20vh, 260px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige), rgba(201, 184, 150, 0.8));
}

.timeline-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-card.active .timeline-image-hero img {
    animation: imageZoomIn 0.8s ease forwards;
}

@keyframes imageZoomIn {
    from { transform: scale(1.12); opacity: 0.6; }
    to   { transform: scale(1);    opacity: 1; }
}

.fabric-pin-hero {
    position: absolute;
    width: 16px; height: 16px;
    background: radial-gradient(circle, var(--gold-accent) 25%, rgba(212, 175, 55, 0.7) 60%, transparent);
    border-radius: 50%;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(212, 175, 55, 0.7);
    z-index: 2;
}

.pin-tl-hero { top: 14px; left: 14px; }
.pin-tr-hero { top: 14px; right: 14px; }

.timeline-text-hero {
    padding: clamp(1rem, 1.8vh, 1.8rem) 1.8rem clamp(1rem, 1.8vh, 2rem);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.timeline-text-hero h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.2vh, 1.5rem);
    margin-bottom: clamp(0.4rem, 0.8vh, 0.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-navy), var(--logo-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-text-hero p {
    color: var(--secondary-navy);
    line-height: 1.65;
    font-size: clamp(0.88rem, 1.5vh, 1rem);
    opacity: 0.88;
}

.timeline-pause-indicator {
    text-align: center;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--soft-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.timeline-showcase:hover .timeline-pause-indicator {
    opacity: 0.8;
}

/* ============================================ */
/* RESPONSIVE — LAPTOP 1200px–1400px           */
/* Two-column visible, moderate compression    */
/* ============================================ */

@media (max-width: 1400px) {
    /* Hide the tagline paragraph on laptop — badge + h1 + subtitle + USPs + buttons
       is a clean, complete hierarchy without the verbose paragraph */
    .hero-tagline {
        display: none;
    }

    /* Generous spacing now that tagline is gone */
    .hero-logo-badge {
        margin-bottom: clamp(1rem, 2.2vh, 2.5rem);
    }

    .hero h1 {
        letter-spacing: 6px;
        margin-bottom: clamp(1rem, 2.2vh, 2.2rem);
    }

    .hero-subtitle {
        margin-bottom: clamp(1.4rem, 3vh, 3rem);
    }

    .hero-usps {
        gap: clamp(0.8rem, 1.5vh, 1.5rem);
        margin-bottom: clamp(1.4rem, 3vh, 3rem);
    }

    .usp-item {
        padding: clamp(0.7rem, 1.3vh, 1.1rem) 1.4rem;
    }

    /* Buttons: compact and locked to one line */
    .hero-buttons {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.8rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    /* Lock content to top on laptops — prevents overflow behind navbar */
    .hero-left {
        justify-content: flex-start;
    }

    .timeline-rope-container {
        gap: 1.8rem;
    }
    .timeline-years-track {
        flex: 0 0 135px;
    }
}

/* ============================================ */
/* RESPONSIVE — TABLET ≤ 1200px                */
/* Single column; right side hidden            */
/* Use clamp() for h1 so it scales with height */
/* ============================================ */

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hero-left {
        flex: none;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        justify-content: flex-start; /* hero-content handles vertical distribution */
        /* More generous horizontal padding since full width */
        padding-left: 7%;
        padding-right: 7%;
        /* Reduced opacity so background image shows through */
        background: linear-gradient(to bottom,
            rgba(10, 25, 41, 0.68) 0%,
            rgba(10, 25, 41, 0.64) 100%
        );
    }

    .hero-left::before,
    .hero-left::after {
        display: none;
    }

    .hero-right {
        display: none;
    }

    /* Right column gone — full width available, restore tagline */
    .hero-tagline {
        display: block;
    }

    /* In single-column mode text wraps less (full width),
       so font can stay similar — clamp still governs height */
    .hero h1 {
        font-size: clamp(2.2rem, 5.2vh, 3.4rem);
        letter-spacing: 5px;
    }

    /* Spread all content children evenly across the full fold */
    .hero-content {
        max-width: 780px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}

/* ============================================ */
/* RESPONSIVE — MOBILE ≤ 968px                 */
/* ============================================ */

@media (max-width: 968px) {
    .hero-left {
        padding-top: calc(var(--nav-height-mobile) + clamp(0.5rem, 1.5vh, 2rem));
        padding-bottom: clamp(0.5rem, 1.5vh, 2rem);
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 4.5vh, 2.8rem);
        letter-spacing: 4px;
    }

    .hero-subtitle { font-size: clamp(0.95rem, 1.8vh, 1.2rem); }
    .hero-tagline  { font-size: clamp(0.85rem, 1.4vh, 0.97rem); }

    .usp-icon { font-size: 1.3rem; width: 30px; }
    .usp-text { font-size: 0.88rem; }

    .cta-button { font-size: 0.88rem; }
}

/* ============================================ */
/* RESPONSIVE — SMALL MOBILE ≤ 640px           */
/* ============================================ */

@media (max-width: 640px) {
    .hero-left {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 4vh, 2.2rem);
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 1.6vh, 1.1rem);
        letter-spacing: 1px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.55rem 1.2rem;
        letter-spacing: 1.5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================ */
/* HIDE LOWER-PRIORITY ELEMENTS ON TINY HEIGHT */
/* ============================================ */

@media (max-height: 500px) {
    .usp-item:nth-child(3) { display: none; }
}

@media (max-height: 420px) {
    .usp-item:nth-child(2) { display: none; }
    .hero-tagline           { display: none; }
}
