/* =======================================================================
   GLOSTERBOND HOMEPAGE — PREMIUM DESIGN V4
   Color System: Amber Gold (#0284c7) + Midnight Navy (#050d1f)
   ======================================================================= */

/* ---- Root overrides ---- */
:root {
    --gold: #0284c7;
    --gold-light: #38bdf8;
    --gold-dark: #0369a1;
    --gold-glow: rgba(2, 132, 199, 0.35);
    --mid-dark: #050d1f;
    --mid-dark2: #0a1628;
    --mid-surface: #0f1f3d;
    --mid-border: rgba(2, 132, 199, 0.15);
    --text-on-dark: #e2e8f0;
    --text-muted-dark: #64748b;
    --grad-gold: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --grad-blue: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    --grad-gold-text: linear-gradient(120deg, #7dd3fc 0%, #0284c7 40%, #0369a1 100%);
}

/* ==============================
   GLOBAL RESETS FOR HP
   ============================== */
.hp-section {
    overflow: hidden;
}

/* ==============================
   SECTION 1 — HERO
   ============================== */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--mid-dark);
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
}

.hp-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1) translateX(0);
    }

    to {
        transform: scale(1.1) translateX(-2%);
    }
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(2, 132, 199, 0.18) 0%, transparent 60%),
        linear-gradient(105deg, rgba(5, 13, 31, 0.97) 0%, rgba(5, 13, 31, 0.8) 55%, rgba(5, 13, 31, 0.5) 100%);
}

/* Decorative grid lines */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(2, 132, 199, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hp-hero__badges {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.hp-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.4rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hp-badge:hover {
    background: rgba(2, 132, 199, 0.15);
    border-color: rgba(2, 132, 199, 0.4);
    transform: translateX(-4px);
}

.hp-badge i {
    font-size: 1.1rem;
    color: var(--gold);
}

.hp-hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding-top: 8rem;
    padding-left: 5%;
    margin-left: 0;
    margin-right: auto;
}

.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.hp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.hp-hero__heading {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 2rem;
}

.hp-hero__heading .grad-text {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero__heading em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px rgba(2, 132, 199, 0.7);
}

.hp-hero__sub {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hp-hero__cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hp-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: calc(5% + 0.5rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hp-scroll-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {

    0%,
    100% {
        width: 30px;
        opacity: 0.4;
    }

    50% {
        width: 60px;
        opacity: 1;
    }
}

/* ==============================
   BUTTONS
   ============================== */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hp-btn--gold {
    background: var(--grad-gold);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(2, 132, 199, 0.35);
}

.hp-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.5);
}

.hp-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.hp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.5);
}

.hp-btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.hp-btn--outline-gold:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 25px var(--gold-glow);
}

.hp-btn--dark {
    background: var(--mid-dark);
    color: #fff;
    border-color: var(--mid-dark);
}

.hp-btn--dark:hover {
    background: transparent;
    color: var(--mid-dark);
    border-color: var(--mid-dark);
}

/* ==============================
   SECTION LABEL
   ============================== */
.hp-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0rem;
}

.hp-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.hp-label--light {
    color: rgba(2, 132, 199, 0.7);
}

.hp-label--light::before {
    background: rgba(2, 132, 199, 0.7);
}

/* ==============================
   SECTION 2 — STATS
   ============================== */
.hp-stats {
    background: var(--mid-dark2);
    border-bottom: 1px solid rgba(2, 132, 199, 0.1);
}

.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hp-stat {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    transition: background 0.35s ease;
}

.hp-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(2, 132, 199, 0.12);
}

.hp-stat:last-child::after {
    display: none;
}

.hp-stat:hover {
    background: rgba(2, 132, 199, 0.04);
}

.hp-stat__num {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-stat__suffix {
    color: var(--gold);
    font-size: 3rem;
    font-weight: 900;
}

.hp-stat p {
    color: #475569;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.75rem;
}

/* ==============================
   SECTION 2 — ABOUT
   ============================== */
.hp-about {
    background: #fff;
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.hp-about__header {
    margin-bottom: 2rem;
}

.hp-about__title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--mid-dark);
    margin: 1rem 0 0 0;
    line-height: 1.1;
}

.hp-about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.hp-about__text .lead {
    font-size: 1.25rem;
    color: var(--mid-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hp-about__text p:not(.lead) {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hp-about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.hp-about__link:hover {
    color: var(--mid-dark);
    border-color: var(--mid-dark);
    gap: 1.25rem;
}

.hp-about__image {
    position: relative;
}

.hp-about__img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(5, 13, 31, 0.08);
}

.hp-about__img-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hp-about__img-wrapper:hover img {
    transform: scale(1.05);
}

.hp-about__img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}

.hp-about__experience-badge {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    background: var(--mid-dark);
    padding: 2.5rem 3rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(5, 13, 31, 0.2);
    border-top: 3px solid var(--gold);
}

.hp-about__experience-badge strong {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hp-about__experience-badge span {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
}

/* ==============================
   SECTION 3 — WHY CHOOSE US (ARCHITECTURAL PREMIUM)
   ============================== */
.hp-why-premium {
    background: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle architectural grid lines background */
.hp-why-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.hp-why-premium__container {
    position: relative;
    z-index: 1;
}

.hp-why-premium__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 7rem;
    align-items: center;
    margin-bottom: 6rem;
}

/* Visuals (Left) */
.hp-why-premium__visual {
    position: relative;
}

.hp-why-premium__image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(5, 13, 31, 0.08);
}

.hp-why-premium__image-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.hp-why-premium__image-wrap:hover img {
    transform: scale(1.04);
}

/* Accent frame behind image */
.hp-why-premium__visual::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: 2rem;
    bottom: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    z-index: -1;
    transition: all 0.5s ease;
}

.hp-why-premium__visual:hover::before {
    border-color: rgba(2, 132, 199, 0.3);
    transform: translate(-10px, -10px);
}

/* Floating Stat on Image */
.hp-why-premium__floating-stat {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--mid-dark);
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 4px;
    box-shadow: -20px -20px 60px rgba(0, 0, 0, 0.1);
}

.hp-why-premium__floating-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-gold);
}

.hp-why-premium__floating-stat .stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hp-why-premium__floating-stat .stat-number .plus {
    color: var(--gold);
    font-size: 3.5rem;
}

.hp-why-premium__floating-stat .stat-text {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
}

/* Content (Right) */
.hp-why-premium__content {
    padding-right: 2rem;
}

.hp-why-premium__title {
    font-size: clamp(3rem, 5vw, 4.2rem);
    color: var(--mid-dark);
    margin: 1.5rem 0;
    line-height: 1.05;
}

.hp-why-premium__desc {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature List */
.hp-why-premium__features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hp-premium-feature {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
}

.hp-premium-feature__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold-dark);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-premium-feature:hover .hp-premium-feature__icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.3);
}

.hp-premium-feature__body h3 {
    font-size: 1.3rem;
    color: var(--mid-dark);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.hp-premium-feature__body p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.hp-why-premium__cta-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Horizontal Stats Bar */
.hp-why-premium__stats-bar {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-radius: 4px;
    position: relative;
}

.hp-why-premium__stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(2, 132, 199, 0.5), transparent);
}

.hp-stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Vertical dividers */
.hp-stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(15, 23, 42, 0.08);
}

.hp-stats-bar__item .number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--mid-dark);
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-stats-bar__item .label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==============================
   SECTION 4 — MARQUEE / PARTNERS
   ============================== */
.hp-marquee {
    background: #fff;
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.hp-marquee::before,
.hp-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 20%;
    pointer-events: none;
}

.hp-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.hp-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.hp-marquee__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 3;
}

.hp-marquee__title {
    font-size: clamp(2.2rem, 3vw, 3rem);
    color: var(--mid-dark);
    line-height: 1.1;
}

.hp-marquee__track-wrap {
    overflow: hidden;
    padding: 1rem 0;
}

.hp-marquee__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: scrollMarquee 50s linear infinite;
}

.hp-marquee__track:hover {
    animation-play-state: paused;
}

/* Logo Placeholder styling for when there are no images yet */
.hp-client-logo {
    width: 220px;
    height: 100px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hp-client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    border-color: rgba(2, 132, 199, 0.2);
}

/* This span represents the placeholder logo text */
.hp-client-logo span {
    font-size: 1rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* If the user drops an img tag inside .hp-client-logo later */
.hp-client-logo img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.hp-client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ==============================
   SECTION 5 — PRODUCTS
   ============================== */
.hp-products {
    background: var(--mid-dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hp-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hp-product-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hp-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid rgba(2, 132, 199, 0.06);
    transition: border-color 0.3s ease;
}

.hp-product-card:hover {
    border-color: rgba(2, 132, 199, 0.3);
}

.hp-product-card--tall {
    grid-row: span 2;
}

.hp-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-product-card:hover img {
    transform: scale(1.07);
}

.hp-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 13, 31, 0.97) 0%,
            rgba(5, 13, 31, 0.5) 40%,
            transparent 75%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hp-product-card__tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hp-product-card__tag::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1.5px;
    background: var(--gold);
}

.hp-product-card__overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.hp-product-card__overlay p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.hp-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}

.hp-product-card:hover .hp-product-card__link {
    opacity: 1;
    transform: translateY(0);
}

.hp-product-card__link i {
    transition: transform 0.3s ease;
}

.hp-product-card__link:hover i {
    transform: translateX(4px);
}

/* Section header */
.hp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.hp-section-head--center {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hp-section-head__title {
    color: #fff;
}

/* ==============================
   SECTION 6 — SPECS (DARK)
   ============================== */
.hp-specs {
    background: var(--mid-dark2);
    padding: 6rem 0;
    position: relative;
}

.hp-specs::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(2, 132, 199, 0.2), transparent);
}

.hp-specs__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.hp-specs__left h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hp-specs__left h2 .grad-text {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-specs__left p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hp-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding-left 0.3s ease;
    cursor: default;
}

.hp-spec-row:hover {
    padding-left: 0.5rem;
}

.hp-spec-row span {
    color: #475569;
    font-size: 1rem;
}

.hp-spec-row strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.15);
    padding: 0.3rem 1rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* ==============================
   SECTION 7 — TESTIMONIALS
   ============================== */
.hp-testimonials {
    background: #f8fafc;
    padding: 6rem 0;
    position: relative;
}

.hp-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
}

.hp-testimonial-slider-wrap {
    margin-top: 4rem;
    position: relative;
    padding-bottom: 3rem;
}



.hp-testimonial-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem 3rem;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
}

.hp-testimonial-track:active {
    cursor: grabbing;
}

.hp-testimonial-track::-webkit-scrollbar {
    display: none;
}

.hp-tcard {
    /* Guarantees exactly 3 cards fit precisely without cropping: 
       100% track width - 2rem left pad - 2rem right pad - 4rem (2 gaps) = 8rem total subtracted */
    flex: 0 0 calc((100% - 8rem) / 3);
    scroll-snap-align: start;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 992px) {
    .hp-tcard {
        flex: 0 0 calc((100% - 6rem) / 2);
        /* 2 cards visible */
    }
}

@media (max-width: 768px) {
    .hp-tcard {
        flex: 0 0 calc(100% - 4rem);
        /* 1 card visible */
    }
}

.hp-tcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hp-tcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(2, 132, 199, 0.25);
}

.hp-tcard:hover::before {
    opacity: 1;
}

.hp-tcard--accent {
    background: var(--mid-dark);
    border-color: transparent;
}

.hp-tcard--accent::before {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), transparent);
}

.hp-tcard--accent p {
    color: #94a3b8;
}

.hp-tcard--accent strong {
    color: #fff;
}

.hp-tcard--accent span {
    color: #475569;
}

.hp-tcard--accent .hp-tcard__author {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.hp-tcard__quote {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.hp-tcard--accent .hp-tcard__quote {
    opacity: 0.3;
}

.hp-tcard p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.hp-tcard .hp-tcard__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.hp-tcard .hp-tcard__stars i {
    color: var(--gold);
    font-size: 1rem;
}

.hp-tcard__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.75rem;
    position: relative;
    z-index: 1;
}

.hp-tcard__avatar {
    width: 50px;
    height: 50px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px var(--gold-glow);
}

.hp-tcard--accent .hp-tcard__avatar {
    background: var(--mid-surface);
    box-shadow: none;
}

.hp-tcard__author strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.hp-tcard__author span {
    font-size: 0.82rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-tcard--accent .hp-tcard__author strong {
    color: #fff;
}

/* ==============================
   SECTION 8 — CONTACT
   ============================== */
.hp-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.hp-contact__img-col {
    position: relative;
    overflow: hidden;
}

.hp-contact__img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-contact__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 13, 31, 0.93) 0%, rgba(5, 13, 31, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem;
}

.hp-contact__img-overlay blockquote {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    border: none;
    margin: 0 0 3rem 0;
    padding: 0;
}

.hp-contact__info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(2, 132, 199, 0.15);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    background: rgba(5, 13, 31, 0.5);
}

.hp-contact__info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(2, 132, 199, 0.08);
    transition: background 0.3s ease;
}

.hp-contact__info-item:last-child {
    border-bottom: none;
}

.hp-contact__info-item:hover {
    background: rgba(2, 132, 199, 0.06);
}

.hp-contact__info-item i {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(2, 132, 199, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-contact__info-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hp-contact__info-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hp-contact__form-col {
    background: #fff;
    padding: 5rem 6%;
    display: flex;
    align-items: center;
}

.hp-contact__form-inner {
    max-width: 580px;
    width: 100%;
}

.hp-contact__form-inner h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hp-contact__form-inner h2 .grad-text {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-contact__desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hp-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hp-form__field label {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
}

.hp-form__field input,
.hp-form__field textarea {
    padding: 1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    transition: all 0.25s ease;
    background: #fafafe;
}

.hp-form__field input:focus,
.hp-form__field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1200px) {
    .hp-product-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 260px);
    }

    .hp-product-card--tall {
        grid-row: span 2;
    }
}

@media (max-width: 1024px) {

    .hp-why__inner,
    .hp-specs__inner,
    .hp-contact {
        grid-template-columns: 1fr;
    }

    .hp-why__body {
        padding-right: 0;
    }

    .hp-why__media img {
        height: 500px;
    }

    .hp-why__media-badge {
        right: 1rem;
        bottom: -1.5rem;
    }

    .hp-contact__img-col {
        display: none;
    }

    .hp-contact__form-col {
        padding: 5rem 5%;
    }

    .hp-why::before {
        width: 100%;
    }

    .hp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-stat::after {
        display: none;
    }

    .hp-stat {
        border-bottom: 1px solid rgba(2, 132, 199, 0.08);
    }
}

@media (max-width: 768px) {
    .hp-hero__badges {
        display: none;
    }

    .hp-hero__heading {
        font-size: clamp(3rem, 13vw, 5rem);
        line-height: 0.9;
    }

    .hp-hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .hp-product-card,
    .hp-product-card--tall {
        height: 280px;
        grid-row: span 1;
    }

    .hp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hp-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hp-form__row {
        grid-template-columns: 1fr;
    }

    .hp-marquee__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ===============================================================
   PROFESSIONAL FOOTER
   =============================================================== */

/* --- Gradient text used in footer --- */
.footer-grad {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- CTA Banner --- */
.footer-cta {
    background: var(--mid-dark2);
    border-top: 1px solid rgba(2, 132, 199, 0.15);
    border-bottom: 1px solid rgba(2, 132, 199, 0.08);
    padding: 5rem 0;
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-cta__text h2 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.footer-cta__text p {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0;
}

.footer-cta__actions {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Footer Buttons */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.footer-btn--gold {
    background: linear-gradient(135deg, #0284c7, #ef4444);
    color: #fff;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3);
}

.footer-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(2, 132, 199, 0.45);
    color: #fff;
}

.footer-btn--ghost {
    background: transparent;
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- Main Footer Body --- */
.footer-body {
    background: var(--mid-dark);
    padding: 7rem 0 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 5rem;
}

/* Brand column */
.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1.75rem;
    display: block;
    filter: brightness(1.1);
}

.footer-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

/* Heading */
.footer-heading {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

/* Nav links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.25s ease;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 0.35rem;
}

.footer-links li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact list */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact li i {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    transition: color 0.25s ease;
}

.footer-contact li a:hover {
    color: var(--gold);
}

/* --- Bottom Bar --- */
.footer-bottom {
    background: var(--mid-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #334155;
    font-size: 0.88rem;
    margin: 0;
}

.footer-bottom strong {
    color: var(--gold);
}

.footer-bottom__badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #334155;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

.footer-badge i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* --- Footer Responsive --- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-col--brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-col--brand {
        grid-column: span 1;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .hp-about__content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

/* =========================================
   ABOUT PAGE STYLES (about.php) - V3 ULTRA CLEAN
   ========================================= */

/* OUR STORY (STICKY SCROLL) */
.ab-story-sticky {
    padding: 8rem 0;
}

.ab-sticky-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 6rem;
    align-items: start;
}

.ab-sticky-left {
    position: sticky;
    top: 120px;
    /* Under the floating header */
}

.ab-sticky-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.ab-sticky-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.ab-sticky-content p {
    font-size: 1.15rem;
}

/* MISSION & VISION BENTO */
.ab-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.ab-bento-card {
    background: #fff;
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid var(--gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ab-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.ab-bento-icon {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 20px;
}

.ab-bento-title {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.ab-bento-card p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* OUR TEAM (CLEAN CIRCLES) */
.ab-team-circle-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.ab-team-member {
    text-align: center;
    width: 250px;
}

.ab-team-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 4px solid #fff;
}

.ab-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ab-team-member:hover .ab-team-avatar img {
    transform: scale(1.1);
}

.ab-team-member h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.ab-team-member span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .ab-sticky-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ab-sticky-left {
        position: static;
    }

    .ab-bento-grid {
        grid-template-columns: 1fr;
    }

    .ab-bento-card {
        padding: 3rem 2rem;
        border-radius: 24px;
    }

    .ab-team-circle-grid {
        gap: 3rem;
    }
}