/* ====================================================================
   HOMEPAGE STYLES — Ntono Digital
   ==================================================================== */

/* ─── Reveal on Scroll ─── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-100 {
    transition-delay: 100ms;
}

.reveal-delay-200 {
    transition-delay: 200ms;
}

.reveal-delay-300 {
    transition-delay: 300ms;
}

/* ─── Glass Utilities ─── */
.hp-glass-card {
    background: rgba(22, 26, 29, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-glass-textured {
    background-color: rgba(22, 26, 29, 0.85);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ====================================================================
   SECTION 1: HERO
   ==================================================================== */
.hp-hero {
    padding: var(--ntono-section-padding-y, 10rem) 0 5rem;
    position: relative;
    overflow: hidden;
}

.hp-hero__glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(102, 7, 8, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.hp-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
    position: relative;
    z-index: 10;
}

.hp-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(250, 169, 22, 0.1);
    border: 1px solid rgba(250, 169, 22, 0.2);
    color: var(--ntono-primary, #FAA916);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.hp-hero__kicker-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ntono-primary, #FAA916);
    animation: pulse 2s ease-in-out infinite;
}

.hp-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 2rem;
}

.hp-hero__title span {
    color: var(--ntono-primary, #FAA916);
}

.hp-hero__subtitle {
    color: var(--ntono-text-muted, #9ca3af);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 32rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hp-hero__btn-primary {
    background: var(--ntono-primary, #FAA916);
    color: var(--ntono-bg, #0B090A);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(250, 169, 22, 0.3);
    text-decoration: none;
}

.hp-hero__btn-primary:hover {
    background: #E09605;
    transform: translateY(-2px);
}

.hp-hero__btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
}

.hp-hero__btn-secondary:hover {
    border-color: var(--ntono-primary, #FAA916);
    color: var(--ntono-primary, #FAA916);
    background: rgba(255, 255, 255, 0.05);
}

.hp-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--ntono-text-muted, #6b7280);
}

.hp-hero__avatars {
    display: flex;
}

.hp-hero__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--ntono-bg, #0B090A);
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.7;
}

.hp-hero__avatar+.hp-hero__avatar {
    margin-left: -0.75rem;
}

/* Hero Bento Showcase - Dynamic Marquee */
.hp-hero__showcase {
    position: relative;
    height: 500px;
    overflow: hidden;
    /* Fade masks at top and bottom to make the entrance/exit smooth */
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.hp-hero__bento-grid {
    display: flex;
    gap: 1rem;
    height: 100%;
    position: relative;
    z-index: 10;
}

.hp-hero__bento-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hp-marquee-vertical__track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Track will contain two identical sets of cards for seamless loop */
}

/* Animations: Up and Down */
@keyframes scrollVerticalUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

    /* Scrolls half its total height (which spans the two identical sets) */
}

@keyframes scrollVerticalDown {
    0% {
        transform: translateY(-50%);
    }

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

/* Apply animations to columns */
.hp-bento-anim-up .hp-marquee-vertical__track {
    animation: scrollVerticalUp 30s linear infinite;
}

.hp-bento-anim-down .hp-marquee-vertical__track {
    /* Starts halfway offset so it has content to scroll down from */
    transform: translateY(-50%);
    animation: scrollVerticalDown 35s linear infinite;
}

/* Pause on hover for better UX */
.hp-hero__bento-col:hover .hp-marquee-vertical__track {
    animation-play-state: paused;
}

.hp-hero__bento-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ntono-surface, #161A1D);
    flex-shrink: 0;
    position: relative;
    height: 240px;
    /* Fixed height for consistency in the scroll */
}

.hp-hero__bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.5s, transform 0.7s;
    mix-blend-mode: luminosity;
}

.hp-hero__bento-card:hover img {
    opacity: 1;
    transform: scale(1.05);
    mix-blend-mode: normal;
}

.hp-hero__bento-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    flex-direction: column;
    background: linear-gradient(135deg, var(--ntono-surface, #161A1D), var(--ntono-bg, #0B090A));
}

.hp-hero__bento-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.hp-hero__bento-stat-label {
    font-size: 0.75rem;
    color: var(--ntono-primary, #FAA916);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ====================================================================
   SECTION 2: CLIENTS MARQUEE
   ==================================================================== */
.hp-marquee {
    padding: 2.5rem 0;
    /* Mobile default */
    background: var(--ntono-surface, #161A1D);
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .hp-marquee {
        padding: 0.5rem 0;
        /* Desktop padding adjustment */
    }
}

.hp-marquee__fade-left,
.hp-marquee__fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6rem;
    z-index: 10;
    pointer-events: none;
}

.hp-marquee__fade-left {
    left: 0;
    background: linear-gradient(to right, var(--ntono-surface, #161A1D), transparent);
}

.hp-marquee__fade-right {
    right: 0;
    background: linear-gradient(to left, var(--ntono-surface, #161A1D), transparent);
}

.hp-marquee__track {
    display: flex;
    width: 200%;
    animation: hpMarquee 25s linear infinite;
}

.hp-marquee__group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    min-width: max-content;
    width: 50%;
    justify-content: space-around;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.7s;
}

.hp-marquee__group:hover {
    filter: grayscale(0);
}

.hp-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-marquee__item--logo {
    height: 40px;
    /* Mobile height */
}

@media (min-width: 768px) {
    .hp-marquee__item--logo {
        height: 55px;
        /* Tablet height */
    }
}

@media (min-width: 1024px) {
    .hp-marquee__item--logo {
        height: 70px;
        /* Desktop height - Requested */
    }
}

.hp-marquee__img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Force white for dark mode aesthetics */
    opacity: 0.8;
    transition: all 0.3s;
}

.hp-marquee__group:hover .hp-marquee__img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.hp-marquee__name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-family: var(--ntono-font-display, 'Space Grotesk', sans-serif);
    color: #fff;
    white-space: nowrap;
}

@keyframes hpMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ====================================================================
   SECTION 3: PROBLEM SECTION (Pain-Point Cards)
   ==================================================================== */
.hp-problem {
    padding: var(--ntono-section-padding-y, 2rem) 0;
    background: var(--ntono-surface, #161A1D);
}

.hp-problem__header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.hp-problem__title {
    font-size: clamp(1.875rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hp-problem__title span {
    color: var(--ntono-danger, #E5383B);
}

.hp-problem__subtitle {
    color: var(--ntono-text-light, #B1A7A6);
    font-size: 1.125rem;
}

.hp-problem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-problem__card {
    background: var(--ntono-bg, #0B090A);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid #660708;
    transition: all 0.3s;
}

.hp-problem__card:hover {
    border-left-color: var(--ntono-danger, #E5383B);
    box-shadow: 0 0 20px rgba(102, 7, 8, 0.3);
    transform: translateY(-8px);
}

.hp-problem__card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(102, 7, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ntono-danger, #E5383B);
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.hp-problem__card:hover .hp-problem__card-icon {
    background: var(--ntono-danger, #E5383B);
    color: #fff;
}

.hp-problem__card-icon .material-symbols-outlined {
    font-size: 1.875rem;
}

.hp-problem__card-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hp-problem__card-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ntono-danger, #E5383B);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.hp-problem__card-desc {
    font-size: 0.875rem;
    color: var(--ntono-text-light, #B1A7A6);
    line-height: 1.6;
}

/* ====================================================================
   SECTION 4: SERVICES PILLARS
   ==================================================================== */
.hp-services {
    padding: var(--ntono-section-padding-y, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.hp-services__bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(102, 7, 8, 0.1), transparent, transparent);
    pointer-events: none;
}

.hp-services__header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
    max-width: var(--ntono-max-width, 1280px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-services__kicker {
    color: var(--ntono-primary, #FAA916);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
}

.hp-services__title {
    font-size: clamp(2rem, 3.5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
}

.hp-services__title span {
    color: var(--ntono-primary, #FAA916);
    font-style: italic;
}

.hp-services__subtitle {
    color: var(--ntono-text-light, #B1A7A6);
    margin-top: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

.hp-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
    position: relative;
    z-index: 10;
}

.hp-services__card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.hp-services__card:hover {
    border-color: rgba(229, 56, 59, 0.5);
    box-shadow: 0 0 40px rgba(229, 56, 59, 0.2);
    transform: scale(1.02);
}

.hp-services__card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--ntono-danger, #E5383B), #660708);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(229, 56, 59, 0.2);
    transition: transform 0.3s;
}

.hp-services__card:hover .hp-services__card-icon {
    transform: scale(1.1);
}

.hp-services__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.hp-services__card-desc {
    font-size: 0.875rem;
    color: var(--ntono-text-muted, #9ca3af);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hp-services__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.hp-services__card-features li {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--ntono-text-light, #d1d5db);
    margin-bottom: 0.75rem;
}

.hp-services__card-features li::before {
    content: '•';
    color: var(--ntono-danger, #E5383B);
    font-size: 1.125rem;
    margin-right: 0.75rem;
}

.hp-services__card-link {
    color: var(--ntono-primary, #FAA916);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.hp-services__card:hover .hp-services__card-link {
    color: #fff;
}

.hp-services__card-link .material-symbols-outlined {
    font-size: 0.875rem;
    transition: transform 0.3s;
}

.hp-services__card:hover .hp-services__card-link .material-symbols-outlined {
    transform: translateX(4px);
}

/* ====================================================================
   SECTION 5: PORTFOLIO SHOWCASE
   ==================================================================== */
.hp-portfolio {
    padding: var(--ntono-section-padding-y, 8rem) 0;
    background: var(--ntono-surface, #161A1D);
}

.hp-portfolio__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: var(--ntono-max-width, 1280px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-portfolio__kicker {
    color: var(--ntono-primary, #FAA916);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hp-portfolio__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
}

.hp-portfolio__view-all {
    color: var(--ntono-primary, #FAA916);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ntono-primary, #FAA916);
    padding-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.hp-portfolio__view-all:hover {
    color: #fff;
    border-color: #fff;
}

.hp-portfolio__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-portfolio__card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    display: block;
}

.hp-portfolio__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.7s;
}

.hp-portfolio__card:hover .hp-portfolio__card-img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.hp-portfolio__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ntono-bg, #0B090A), rgba(11, 9, 10, 0.4), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 20;
}

.hp-portfolio__card-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hp-portfolio__card-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-portfolio__card-tag--highlight {
    background: rgba(250, 169, 22, 0.9);
    color: var(--ntono-bg, #0B090A);
    border-color: rgba(250, 169, 22, 0.2);
}

.hp-portfolio__card-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hp-portfolio__card--large .hp-portfolio__card-name {
    font-size: 3rem;
}

.hp-portfolio__card-desc {
    color: var(--ntono-text-light, #d1d5db);
    font-size: 0.875rem;
    max-width: 24rem;
    opacity: 0;
    transition: opacity 0.5s 0.1s;
}

.hp-portfolio__card:hover .hp-portfolio__card-desc {
    opacity: 1;
}

.hp-portfolio__card-arrow {
    color: var(--ntono-primary, #FAA916);
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.hp-portfolio__card:hover .hp-portfolio__card-arrow {
    transform: translateX(8px);
}

.hp-portfolio__card--large {
    height: 600px;
}

.hp-portfolio__side-stack {
    display: grid;
    gap: 2rem;
}

.hp-portfolio__card--small {
    height: 280px;
}

/* ====================================================================
   SECTION 6: METRICS BANNER
   ==================================================================== */
.hp-metrics {
    padding: 4rem 0;
    background: var(--ntono-primary, #FAA916);
}

.hp-metrics__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-metrics__headline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hp-metrics__headline-icon {
    color: var(--ntono-bg, #0B090A);
    font-size: 2.5rem;
    animation: bounce 1s infinite;
}

.hp-metrics__headline-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ntono-bg, #0B090A);
    line-height: 1.2;
}

.hp-metrics__stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 2rem;
}

.hp-metrics__stat {
    text-align: center;
    cursor: default;
}

.hp-metrics__stat-value {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 700;
    color: var(--ntono-bg, #0B090A);
    transition: transform 0.3s;
}

.hp-metrics__stat:hover .hp-metrics__stat-value {
    transform: scale(1.1);
}

.hp-metrics__stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(11, 9, 10, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

.hp-metrics__divider {
    width: 1px;
    height: 5rem;
    background: rgba(11, 9, 10, 0.2);
}

@keyframes bounce {

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

    50% {
        transform: translateY(-10px);
    }
}

/* ====================================================================
   SECTION 7: COMPARISON TABLE
   ==================================================================== */
.hp-compare {
    padding: var(--ntono-section-padding-y, 8rem) 0;
    background: linear-gradient(to bottom, var(--ntono-bg, #0B090A), #660708);
    position: relative;
}

.hp-compare__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 9, 10, 0.9);
}

.hp-compare__inner {
    position: relative;
    z-index: 10;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-compare__header {
    text-align: center;
    margin-bottom: 5rem;
}

.hp-compare__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hp-compare__title span {
    color: var(--ntono-primary, #FAA916);
}

.hp-compare__subtitle {
    color: var(--ntono-text-light, #B1A7A6);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.hp-compare__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

/* Left card (freelancer) */
.hp-compare__card {
    padding: 2.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.hp-compare__card--bad {
    background: rgba(22, 26, 29, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-compare__card--good {
    background: var(--ntono-bg, #0B090A);
    border: 2px solid var(--ntono-primary, #FAA916);
    box-shadow: 0 0 50px rgba(250, 169, 22, 0.1);
    animation: pulseBorder 2s infinite;
    position: relative;
}

.hp-compare__card-badge {
    position: absolute;
    top: -1rem;
    right: 2.5rem;
    background: var(--ntono-primary, #FAA916);
    color: var(--ntono-bg, #0B090A);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(250, 169, 22, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hp-compare__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hp-compare__card-header-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-compare__card--bad .hp-compare__card-header-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ntono-text-muted, #6b7280);
}

.hp-compare__card--good .hp-compare__card-header-icon {
    background: rgba(250, 169, 22, 0.1);
    color: var(--ntono-primary, #FAA916);
}

.hp-compare__card-header-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.hp-compare__card--bad .hp-compare__card-header-title {
    color: var(--ntono-text-muted, #9ca3af);
}

.hp-compare__card--good .hp-compare__card-header-title {
    color: #fff;
}

.hp-compare__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-compare__item {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 0;
}

.hp-compare__item+.hp-compare__item {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.hp-compare__item-icon {
    padding-top: 0.25rem;
}

.hp-compare__card--bad .hp-compare__item-icon .material-symbols-outlined {
    color: var(--ntono-danger, #E5383B);
}

.hp-compare__card--good .hp-compare__item-icon .material-symbols-outlined {
    color: var(--ntono-primary, #FAA916);
}

.hp-compare__item-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hp-compare__card--bad .hp-compare__item-title {
    color: var(--ntono-text-light, #d1d5db);
}

.hp-compare__card--good .hp-compare__item-title {
    color: #fff;
}

.hp-compare__item-desc {
    font-size: 0.875rem;
    color: var(--ntono-text-muted, #6b7280);
}

.hp-compare__card--good .hp-compare__item-desc {
    color: var(--ntono-text-muted, #9ca3af);
}

@keyframes pulseBorder {

    0%,
    100% {
        border-color: var(--ntono-primary, #FAA916);
        box-shadow: 0 0 20px rgba(250, 169, 22, 0.1);
    }

    50% {
        border-color: #E09605;
        box-shadow: 0 0 30px rgba(250, 169, 22, 0.3);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

/* ====================================================================
   SECTION 8: LEADERSHIP
   ==================================================================== */
.hp-leadership {
    padding: var(--ntono-section-padding-y, 8rem) 0;
}

.hp-leadership__inner {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
    max-width: var(--ntono-max-width, 1280px);
    margin: 0 auto;
    padding: 0 var(--ntono-gutter, 2rem);
}

.hp-leadership__text {
    max-width: 100%;
}

.hp-leadership__kicker {
    color: var(--ntono-primary, #FAA916);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
}

.hp-leadership__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.hp-leadership__desc {
    color: var(--ntono-text-light, #B1A7A6);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hp-leadership__stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hp-leadership__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.hp-leadership__stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ntono-danger, #E5383B);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hp-leadership__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.hp-leadership__photo-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-leadership__photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.7s;
}

.hp-leadership__photo-card:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.hp-leadership__photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, var(--ntono-bg, #0B090A), transparent);
}

.hp-leadership__photo-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.hp-leadership__photo-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ntono-danger, #E5383B);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ====================================================================
   SECTION 9: FINAL CTA
   ==================================================================== */
.hp-final-cta {
    padding: 5rem 0;
    background: var(--ntono-surface, #161A1D);
}

.hp-final-cta__card {
    background: linear-gradient(to right, var(--ntono-primary, #FAA916), #FF4E00);
    border-radius: 1.5rem;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 72rem;
    margin: 0 auto;
}

.hp-final-cta__glow-1,
.hp-final-cta__glow-2 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    pointer-events: none;
}

.hp-final-cta__glow-1 {
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(100px);
    transform: translate(50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.hp-final-cta__glow-2 {
    bottom: 0;
    left: 0;
    background: rgba(11, 9, 10, 0.2);
    filter: blur(100px);
    transform: translate(-50%, 50%);
}

.hp-final-cta__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp-final-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 9, 10, 0.3);
    backdrop-filter: blur(12px);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.hp-final-cta__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.hp-final-cta__title {
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hp-final-cta__title span {
    color: var(--ntono-bg, #0B090A);
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: rgba(11, 9, 10, 0.3);
    text-underline-offset: 8px;
}

.hp-final-cta__desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hp-final-cta__spots {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.hp-final-cta__spots:hover {
    transform: scale(1.05);
}

.hp-final-cta__spots-ping {
    position: relative;
    display: flex;
    width: 0.75rem;
    height: 0.75rem;
}

.hp-final-cta__spots-ping-ring {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--ntono-danger, #E5383B);
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hp-final-cta__spots-ping-dot {
    position: relative;
    display: inline-flex;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--ntono-danger, #E5383B);
}

.hp-final-cta__spots-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
}

.hp-final-cta__spots-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0 0.5rem;
    border-radius: 0.25rem;
    margin: 0 0.25rem;
    color: var(--ntono-bg, #0B090A);
}

.hp-final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--ntono-bg, #0B090A);
    padding: 1.5rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
}

.hp-final-cta__btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.hp-final-cta__response {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes ping {

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (min-width: 768px) {
    .hp-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hp-hero__showcase {
        height: 650px;
    }

    .hp-problem__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-portfolio__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-metrics__inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .hp-metrics__headline {
        width: 50%;
    }

    .hp-metrics__stats {
        width: 50%;
    }

    .hp-compare__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-compare__card--good {
        transform: translateY(-1rem);
    }

    .hp-leadership__inner {
        flex-direction: row;
    }

    .hp-leadership__text {
        width: 42%;
    }

    .hp-leadership__photos {
        width: 58%;
    }

    .hp-portfolio__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .hp-final-cta__card {
        padding: 7rem;
    }
}

@media (max-width: 767px) {
    .hp-hero__showcase {
        display: none;
    }

    .hp-metrics__divider {
        display: none;
    }

    .hp-final-cta__card {
        margin: 0 1rem;
        padding: 3rem 1.5rem;
    }
}