* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --yellow: #F5C800;
    --yellow-dark: #D4A800;
    --black: #0D0D0D;
    --dark: #161616;
    --dark2: #1E1E1E;
    --dark3: #2A2A2A;
    --white: #FFFFFF;
    --gray: #8A8A8A;
    --light: #F5F5F0;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: 'Unbounded', sans-serif
}

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

a {
    text-decoration: none;
    color: inherit
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1.25rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s, box-shadow .3s
}

nav.scrolled {
    background: rgba(13, 13, 13, .97);
    box-shadow: 0 1px 0 rgba(245, 200, 0, .15)
}

.nav-logo {
    height: 36px;
    object-fit: contain
}

.nav-links {
    display: none;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray);
    transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow)
}

.nav-cta {
    display: none;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background .2s
}

.nav-cta:hover {
    background: var(--yellow-dark)
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .35s ease
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu a {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
    transition: color .2s
}

.mobile-menu a:hover {
    color: var(--yellow)
}

.mobile-cta {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: .8rem 2.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: .5rem
}

@media(min-width:768px) {
    .hamburger {
        display: none
    }

    .nav-links {
        display: flex
    }

    .nav-cta {
        display: block
    }
}

/* HERO */
#home {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 1.25rem 3rem;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D0D0D 50%, #1A1400 100%);
    z-index: 0
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(245, 200, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 200, 0, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    max-width: 600px;
    height: 60vw;
    max-height: 600px;
    background: radial-gradient(circle, rgba(245, 200, 0, .12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 200, 0, .1);
    border: 1px solid rgba(245, 200, 0, .25);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.5rem
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 1.5s infinite
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 1.2rem
}

.hero-title .accent {
    color: var(--yellow)
}

.hero-sub {
    font-size: clamp(.9rem, 2.5vw, 1.1rem);
    color: var(--gray);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2rem
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .03em;
    padding: .8rem 1.8rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-block
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .03em;
    padding: .8rem 1.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: border-color .2s, color .2s;
    display: inline-block
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -.01em;
    line-height: 1
}

.stat-label {
    font-size: .68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .3rem
}

.hero-img-col {
    display: none
}

@media(min-width:900px) {
    #home {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        padding-top: 100px
    }

    .hero-content {
        flex: 1
    }

    .hero-img-col {
        display: block;
        flex: 1;
        position: relative;
        z-index: 1
    }
}

/* SECTION STYLES */
section {
    padding: 5rem 1.25rem
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .75rem
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em
}

.section-sub {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin-top: .75rem
}

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

/* SERVICES STRIP */
#services {
    background: var(--dark)
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem
}

@media(min-width:600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.service-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color .25s, transform .25s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left
}

.service-card:hover {
    border-color: rgba(245, 200, 0, .2);
    transform: translateY(-4px)
}

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

.svc-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 200, 0, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem
}

.svc-title {
    font-family: 'Unbounded', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .6rem;
    line-height: 1.3
}

.svc-desc {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6
}

/* PARTNER SECTION */
#partner {
    background: var(--black);
    padding: 4rem 1.25rem
}

.partner-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark2), #1A1400);
    border: 1px solid rgba(245, 200, 0, .2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem
}

@media(min-width:700px) {
    .partner-inner {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
        padding: 3rem 3rem
    }
}

.partner-badge {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 4px;
    margin-bottom: .5rem;
    display: inline-block
}

.partner-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2
}

.partner-sub {
    color: var(--gray);
    font-size: .875rem;
    line-height: 1.65;
    margin-top: .4rem
}

.partner-logo-box {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    min-width: 180px
}

.partner-logo-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--white)
}

.partner-logo-tag {
    font-size: .7rem;
    color: var(--gray);
    letter-spacing: .1em;
    text-transform: uppercase
}

.partner-a-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35, #FF3D00);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--white)
}

/* ABOUT */
#about {
    background: var(--dark)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem
}

@media(min-width:800px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center
    }
}

.about-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 300px;
    background: var(--dark2)
}

.about-img-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #1A1400, #2A2000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 200, 0, .15)
}

.about-img-placeholder .j-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--black)
}

.about-text .values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.5rem
}

.value-chip {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    font-size: .82rem
}

.value-chip strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: .2rem;
    font-size: .72rem;
    line-height: 1.3
}

/* PACKAGES */
#packages {
    background: var(--black)
}

.pkg-toggle {
    display: inline-flex;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
    margin-top: 2rem;
    margin-bottom: 2.5rem
}

.pkg-tab {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .55rem 1.25rem;
    border-radius: 7px;
    cursor: pointer;
    color: var(--gray);
    transition: all .2s;
    border: none;
    background: transparent
}

.pkg-tab.active {
    background: var(--yellow);
    color: var(--black)
}

.pkg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media(min-width:650px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1000px) {
    .pkg-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.pkg-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    transition: transform .25s
}

.pkg-card.featured {
    border-color: rgba(245, 200, 0, .4);
    background: linear-gradient(145deg, #1E1A00, var(--dark2))
}

.pkg-card:hover {
    transform: translateY(-4px)
}

.pkg-popular {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem
}

.pkg-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .35rem;
    line-height: 1.3
}

.pkg-tagline {
    font-size: .8rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.5
}

.pkg-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -.01em;
    line-height: 1
}

.pkg-price span {
    font-size: .85rem;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0
}

.pkg-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 1.25rem 0
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.pkg-features li {
    font-size: .82rem;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    line-height: 1.4
}

.pkg-features li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem
}

.pkg-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: .7rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .03em;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all .2s
}

.pkg-card.featured .pkg-btn {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow)
}

.pkg-card:hover .pkg-btn,
.pkg-btn:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow)
}

.pkg-panel {
    display: none
}

.pkg-panel.active {
    display: block
}

.pkg-amc {
    max-width: 600px;
    margin: 2rem auto 0;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center
}

.pkg-amc h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    margin-bottom: .75rem;
    font-size: .85rem
}

.amc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .83rem;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.amc-row:last-child {
    border: none
}

.amc-row span {
    color: var(--gray)
}

.amc-row strong {
    color: var(--yellow)
}

/* CONTACT */
#contact {
    background: var(--dark)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem
}

@media(min-width:800px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.c-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.c-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 200, 0, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.c-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-bottom: .2rem
}

.c-val {
    font-size: .95rem;
    font-weight: 500
}

.contact-form {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 2rem
}

.form-group {
    margin-bottom: 1.25rem
}

.form-group label {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray);
    margin-bottom: .4rem
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: .75rem 1rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(245, 200, 0, .4)
}

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

.form-group select option {
    background: var(--dark2)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 3rem 1.25rem 2rem
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem
}

@media(min-width:700px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr
    }
}

.footer-brand p {
    color: var(--gray);
    font-size: .85rem;
    line-height: 1.6;
    margin-top: .75rem;
    max-width: 300px
}

.footer-col h5 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: .02em
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer-col ul li a {
    font-size: .83rem;
    color: var(--gray);
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--yellow)
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-start
}

@media(min-width:600px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }
}

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

.footer-bottom .made-by {
    font-size: .75rem;
    color: var(--gray)
}

.footer-bottom .made-by a {
    color: var(--yellow)
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .5rem
}

.si {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    transition: all .2s;
    cursor: pointer;
    flex-shrink: 0
}

.si:hover {
    transform: translateY(-2px)
}

.si svg {
    width: 18px;
    height: 18px
}

.si-ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent
}

.si-fb:hover {
    background: #1877F2;
    border-color: transparent
}

.si-yt:hover {
    background: #FF0000;
    border-color: transparent
}

.si-wa:hover {
    background: #25D366;
    border-color: transparent
}

.si-li:hover {
    background: #0A66C2;
    border-color: transparent
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 998;
    transition: transform .2s;
    cursor: pointer
}

.wa-float:hover {
    transform: scale(1.08)
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: white
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

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

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

/* ANIMATIONS */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.85)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/* HERO VISUAL */
.hero-mockup {
    background: var(--dark2);
    border: 1px solid rgba(245, 200, 0, .15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    animation: float 4s ease-in-out infinite
}

.hm-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(245, 200, 0, .3);
    margin-bottom: 1rem
}

.hm-bar.short {
    width: 60%
}

.hm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem
}

.hm-card {
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .06)
}

.hm-card-dot {
    width: 28px;
    height: 28px;
    background: rgba(245, 200, 0, .2);
    border-radius: 6px;
    margin-bottom: .5rem
}

.hm-card-line {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    margin: .25rem 0
}

.hm-card-line.short {
    width: 60%;
    background: rgba(245, 200, 0, .15)
}

.hm-stat {
    background: linear-gradient(135deg, rgba(245, 200, 0, .15), rgba(245, 200, 0, .05));
    border: 1px solid rgba(245, 200, 0, .2);
    border-radius: 8px;
    padding: .75rem;
    margin-top: .6rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.hm-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -.01em
}

.hm-stat-label {
    font-size: .72rem;
    color: var(--gray)
}