@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    /* Exact Hydrofabs site palette â€” no red */
    --navy: #0d1117; /* site's darkest bg */
    --navy2: #161b22; /* secondary dark */
    --navy3: #1f2937; /* card dark bg */
    --navy4: #253040; /* hover states */
    --slate: #2c3e55; /* medium accent */
    --slate-mid: #3d5166; /* mid tone */
    --steel: #4a6080; /* softer accent */
    /* Whites & grays â€” primary surface palette */
    --white: #ffffff;
    --off-white: #f8fafc;
    --bg-gray: #f1f5f9;
    --border: rgb(236 183 87 / 17%);
    --border2: #cbd5e1;
    --muted: #8896aa;
    --text: #0f1923;
    --text2: #374151;
    --text3: #64748b;
    /* Accent â€” navy used in place of red */
    --accent: #e8a020; /* deep navy blue â€” primary CTA/accent */
    --accent2: #1e4976; /* hover */
    --accent-lt: #eef3f9; /* tint background */
    --accent-mid: rgba(26,58,92,0.10);
    --shadow: 0 2px 16px rgba(15,25,35,0.07);
    --shadow-lg: 0 12px 48px rgba(15,25,35,0.12);
    --shadow-xl: 0 24px 72px rgba(15,25,35,0.16);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'inter', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
    font-size: 18px;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

/* â”€â”€â”€ NAV â”€â”€â”€ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 64px;
    height: 70px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(15,25,35,0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.nav-logo-box {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
}

.nav-logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 2px;
    color: var(--text);
}

    .nav-logo-name span {
        color: var(--accent);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        color: var(--text3);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.2s;
            border-radius: 1px;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

            .nav-links a:hover::after {
                transform: scaleX(1);
            }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26,58,92,0.25);
    transition: background 0.2s, box-shadow 0.2s !important;
}

    .nav-cta:hover {
        background: var(--accent2) !important;
    }

    .nav-cta::after {
        display: none !important;
    }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 70px;
    background: var(--white);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #F5F0E8;
    border: 1px solid rgb(241 196 118 / 18%);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    width: fit-content;
    font-family: "Cinzel", sans-serif;
}

    .hero-eyebrow::before {
        content: '';
        width: 7px;
        height: 7px;
        background: #e8a020;
        border-radius: 50%;
        animation: pulse 2.2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero-h1 {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 45px;
    /* line-height: 0.92; */
    letter-spacing: 2px;
    color: #45443F;
    margin-bottom: 8px;
    font-weight: 600;
}

    .hero-h1 .accent {
        color: #E8A020;
        display: block;
    }

.hero-sub {
    font-size: 14px;
    color: var(--text3);
    font-weight: 500;
    margin: 14px 0 20px;
    letter-spacing: 0.5px;
    font-family: "Cinzel", sans-serif;
}

.hero-desc {
    color: #45443F;
    margin-bottom: 42px;
    padding-left: 18px;
    border-left: 3px solid #e8a020;
    font-family: 'inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #45443F;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(26,58,92,0.28);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-primary:hover {
        background: #e8a020;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(26,58,92,0.36);
    }

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid #eeb7568c;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-secondary:hover {
        border-color: #45443F;
        color: #ffffff;
        background: #45443F;
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat-val {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #45443F;
    font-family: "Cinzel", sans-serif;
}

    .stat-val em {
        color: #e8a020;
        font-style: normal;
        font-size: 20px;
    }

.stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.hero-right:hover .hero-img {
    transform: scale(1.04);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-img-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--accent);
}

.badge-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}

.badge-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* â”€â”€â”€ TICKER â”€â”€â”€ */
.ticker {
    background: #45443F;
    padding: 13px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    font-family: "Cinzel", sans-serif;

    @import url('https: //fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

    : root {
        /* Exact Hydrofabs site palette â€” no red */
        --navy: #0d1117; /* site's darkest bg */
        --navy2: #161b22; /* secondary dark */
        --navy3: #1f2937; /* card dark bg */
        --navy4: #253040; /* hover states */
        --slate: #2c3e55; /* medium accent */
        --slate-mid: #3d5166; /* mid tone */
        --steel: #4a6080; /* softer accent */
        /* Whites & grays â€” primary surface palette */
        --white: #ffffff;
        --off-white: #f8fafc;
        --bg-gray: #f1f5f9;
        --border: rgb(236 183 87 / 17%);
        --border2: #cbd5e1;
        --muted: #8896aa;
        --text: #0f1923;
        --text2: #374151;
        --text3: #64748b;
        /* Accent â€” navy used in place of red */
        --accent: #e8a020; /* deep navy blue â€” primary CTA/accent */
        --accent2: #1e4976; /* hover */
        --accent-lt: #eef3f9; /* tint background */
        --accent-mid: rgba(26,58,92,0.10);
        --shadow: 0 2px 16px rgba(15,25,35,0.07);
        --shadow-lg: 0 12px 48px rgba(15,25,35,0.12);
        --shadow-xl: 0 24px 72px rgba(15,25,35,0.16);
    }

    *, *:: before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'inter', sans-serif;
        background: var(--warm-white);
        color: var(--ink);
        overflow-x: hidden;
        font-size: 18px;
    }

    :: -webkit-scrollbar {
        width: 4px;
    }

    :: -webkit-scrollbar-track {
        background: var(--off-white);
    }

    :: -webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 2px;
    }
    /* â”€â”€â”€ NAV â”€â”€â”€ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 64px;
        height: 70px;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 12px rgba(15,25,35,0.05);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 11px;
        text-decoration: none;
    }

    .nav-logo-box {
        width: 36px;
        height: 36px;
        background: var(--accent);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .nav-logo-name {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 21px;
        letter-spacing: 2px;
        color: var(--text);
    }

        .nav-logo-name span {
            color: var(--accent);
        }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
    }

        .nav-links a {
            color: var(--text3);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.2s;
            position: relative;
        }

    .nav-links a::after

{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s;
    border-radius: 1px;
}

.nav-links
a:hover {
    color: var(--accent);
}

    .nav-links
    a:hover::after {
        transform: scaleX(1);
    }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26,58,92,0.25);
    transition: background 0.2s, box-shadow 0.2s !important;
}

    .nav-cta:
    hover {
        background: var(--accent2) !important;
    }

    .nav-cta::
    after {
        display: none !important;
    }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 70px;
    background: var(--white);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #F5F0E8;
    border: 1px solid rgb(241 196 118 / 18%);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    width: fit-content;
}

    .hero-eyebrow::
    before {
        content: '';
        width: 7px;
        height: 7px;
        background: #e8a020;
        border-radius: 50%;
        animation: pulse 2.2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero-h1 {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 45px;
    /* line-height: 0.92; */
    letter-spacing: 2px;
    color: #1A1410;
    margin-bottom: 8px;
    font-weight: 600;
}

    .hero-h1 .accent {
        color: #E8A020;
        display: block;
    }

.hero-sub {
    font-size: 14px;
    color: var(--text3);
    font-weight: 500;
    margin: 14px 0 20px;
    letter-spacing: 0.5px;
}

.hero-desc {
    color: #45443F;
    margin-bottom: 42px;
    padding-left: 18px;
    border-left: 3px solid #e8a020;
    font-family: 'inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #000000;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(26,58,92,0.28);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-primary:
    hover {
        background: #e8a020;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(26,58,92,0.36);
    }

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid #eeb7568c;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-secondary:
    hover {
        border-color: #000000;
        color: #ffffff;
        background: #000;
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat-val {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    font-family: "Cinzel", sans-serif;
}

    .stat-val
    em {
        color: #e8a020;
        font-style: normal;
        font-size: 20px;
    }

.stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.hero-right:
hover .hero-img {
    transform: scale(1.04);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-img-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--accent);
}

.badge-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}

.badge-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* â”€â”€â”€ TICKER â”€â”€â”€ */
.ticker {
    background: #000000;
    padding: 13px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}

/* â”€â”€â”€ OVERVIEW STRIP â”€â”€â”€ */
.overview-wrap {
    background: #f5f0e812;
    border-bottom: 1px solid #f5f0e8;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.ov-cell {
    padding: 40px 36px;
    border-right: 1px solid #f5f0e8;
    transition: background 0.25s;
}

    .ov-cell:
    last-child {
        border-right: none;
    }

    .ov-cell:
    hover {
        background: var(--white);
    }

.ov-icon {
    width: 42px;
    height: 42px;
    background: #f5f0e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.ov-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.ov-val {
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
}

.ov-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 3px;
}

/* â”€â”€â”€ SECTION â”€â”€â”€ */
.sec-wrap-white {
    background: var(--white);
}

.sec-wrap-gray {
    background: var(--off-white);
}

section {
    padding: 100px 80px;
    max-width: 1360px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .sec-tag::
    before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
    }

.sec-title {
    font-size: 45px;
    line-height: 1.06;
    /* color: #e8a020; */
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

    .sec-title
    span {
        /* color: #000000; */
    }

.sec-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #45443F;
    /* max-width: 540px; */
}

/* â”€â”€â”€ CASE STUDY â”€â”€â”€ */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.case-card {
    background: #f5f0e824;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    border-left: 3px solid #e8a020;
    transition: background 0.2s, box-shadow 0.2s;
}

    .case-card:
    hover {
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .case-card
    h3 {
        font-size: 22px;
        font-weight: 500;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 9px;
    }

        .case-card
        h3::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #e8a020;
            border-radius: 50%;
            flex-shrink: 0;
        }

    .case-card
    p {
        font-size: 16px;
        line-height: 1.75;
        color: var(--text2);
    }

.case-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.meta-chip {
    background: #f5f0e824;
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text3);
}

    .meta-chip
    strong {
        color: var(--text);
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1px;
    }

.case-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

/* â”€â”€â”€ FEATURES â”€â”€â”€ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .feat-card:
    hover {
        border-color: #e8a020;
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(26,58,92,0.12);
    }

.feat-img-wrap {
    position: relative;
    overflow: hidden;
}

.feat-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.feat-card:
hover .feat-img {
    transform: scale(1.05);
}

.feat-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.feat-body {
    padding: 24px 26px 28px;
}

.feat-title {
    font-size: 25px;
    /* font-family: 'Bebas Neue', sans-serif; */
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: "Cinzel", sans-serif;
}

.feat-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text2);
}

.feat-pill {
    display: inline-block;
    margin-top: 16px;
    background: #f5f0e8;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgb(239 208 152);
}

/* â”€â”€â”€ SPECS â”€â”€â”€ */
.specs-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

    .specs-table
    tr {
        border-bottom: 1px solid var(--border);
    }

        .specs-table
        tr:last-child {
            border-bottom: none;
        }

        .specs-table
        tr:hover td:first-child {
            color: var(--accent);
        }

    .specs-table
    td {
        padding: 16px 0;
        font-size: 14px;
        vertical-align: middle;
    }

        .specs-table
        td:first-child {
            color: var(--muted);
            width: 48%;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .specs-table
        td:last-child {
            color: var(--text);
            font-weight: 600;
        }

.unit {
    color: var(--accent);
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

.safety-box {
    background: #f5f0e83d;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.safety-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .safety-title::
    before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--accent);
    }

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 13px 16px;
    border-radius: 8px;
    transition: border-color 0.2s;
}

    .safety-row:
    hover {
        border-color: rgba(26,58,92,0.3);
    }

.chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.safety-row
span {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* â”€â”€â”€ RESULTS â”€â”€â”€ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 60px;
}

.res-card {
    background: var(--white);
    border: 1px solid rgb(236 183 87 / 32%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

    .res-card:
    hover {
        border-color: rgb(236 183 87 / 54%);
        box-shadow: 0 12px 40px rgba(26,58,92,0.08);
        transform: translateY(-2px);
    }

.res-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.res-card
h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.res-card
p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text2);
}

/* â”€â”€â”€ CTA BAND â”€â”€â”€ */
.cta-band {
    background: var(--navy);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::
    before {
        content: '';
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,0.03);
    }

    .cta-band::
    after {
        content: '';
        position: absolute;
        left: 40%;
        top: -80px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255,255,255,0.02);
    }

.cta-title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    line-height: 1.06;
    letter-spacing: 0.5px;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-top: 14px;
    max-width: 480px;
}

.btn-cta {
    background: #e8a020;
    color: #ffffff;
    padding: 15px 40px 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 35px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-transform: uppercase;
}

    .btn-cta:
    hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 44px rgba(0,0,0,0.25);
    }

.cta-contact {
    margin-top: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

    .cta-contact
    a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
    background: #f5f0e8;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 80px 48px;
    border-bottom: 1px solid #e0d8cc;
}

.footer-brand {
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
    background: #e8192c;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2.5px;
    color: #2c2418;
}

    .footer-brand-name
    span {
        color: #e8192c;
    }

.footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    color: #7a6e5f;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social
    a {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        background: rgba(44,36,24,0.07);
        border: 1px solid rgba(44,36,24,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

        .footer-social
        a:hover {
            background: #e8a020;
            border-color: #e8a020;
        }

        .footer-social
        a svg {
            width: 15px;
            height: 15px;
            fill: rgba(44,36,24,0.5);
            transition: fill 0.2s;
        }

        .footer-social
        a:hover svg {
            fill: #fff;
        }

.footer-col {
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c2418;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8a020;
    display: inline-block;
}

.footer-col
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col
a {
    color: #7a6e5f;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    transition: color 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .footer-col
    a:hover {
        color: #e8a020;
    }

    .footer-col
    a.with-icon::before {
        content: 'â€º';
        color: #e8a020;
        font-size: 16px;
        line-height: 1.2;
        flex-shrink: 0;
    }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgb(232 160 32 / 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-text {
    font-size: 13px;
    color: #7a6e5f;
    line-height: 1.6;
}

    .footer-contact-text
    a {
        color: #7a6e5f;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact-text
        a:hover {
            color: #e8192c;
        }

.footer-bottom-bar {
    background: #ece6db;
    padding: 18px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-copyright
    a {
        color: #e8a020;
        text-decoration: none;
    }

.footer-credit {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-credit
    a {
        color: #e8a020;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-credit
        a:hover {
            color: #e8192c;
        }

/* â”€â”€â”€ DIVIDER ACCENT â”€â”€â”€ */
.rule {
    height: 1px;
    background: var(--border);
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 40px 24px;
    }

    .hero-right {
        height: 340px;
    }

    section {
        padding: 60px 24px;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-grid, .specs-layout {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 48px 24px 36px;
    }

    .footer-bottom-bar {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

.feat-img-wrap
img, reveal img {
    width: 100%
}

.hero-right
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

@media(max-width:1299px) {
    .tp-main-menu nav ul li {
        margin-right: 22px;
    }
}

@media(max-width:1199px) {
    .tp-main-menu nav ul li {
        margin-right: 15px;
    }
}

@media(max-width:991px) {
    .tp-transparent {
        padding: 26px 0px;
    }
}

@media(max-width:425px) {
    .res-card {
        display: block;
    }

    .res-icon {
        margin-bottom: 15px;
    }
}

@media(max-width:410px) {
    .hero-stats {
        display: block;
    }
}

';;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}

/* â”€â”€â”€ OVERVIEW STRIP â”€â”€â”€ */
.overview-wrap {
    background: #f5f0e812;
    border-bottom: 1px solid #f5f0e8;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.ov-cell {
    padding: 40px 36px;
    border-right: 1px solid #f5f0e8;
    transition: background 0.25s;
}

    .ov-cell:last-child {
        border-right: none;
    }

    .ov-cell:hover {
        background: var(--white);
    }

.ov-icon {
    width: 42px;
    height: 42px;
    background: #f5f0e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.ov-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.ov-val {
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    font-family: "Cinzel", sans-serif;



    @import url('https: //fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

    : root {
        /* Exact Hydrofabs site palette â€” no red */
        --navy: #0d1117; /* site's darkest bg */
        --navy2: #161b22; /* secondary dark */
        --navy3: #1f2937; /* card dark bg */
        --navy4: #253040; /* hover states */
        --slate: #2c3e55; /* medium accent */
        --slate-mid: #3d5166; /* mid tone */
        --steel: #4a6080; /* softer accent */
        /* Whites & grays â€” primary surface palette */
        --white: #ffffff;
        --off-white: #f8fafc;
        --bg-gray: #f1f5f9;
        --border: rgb(236 183 87 / 17%);
        --border2: #cbd5e1;
        --muted: #8896aa;
        --text: #0f1923;
        --text2: #374151;
        --text3: #64748b;
        /* Accent â€” navy used in place of red */
        --accent: #e8a020; /* deep navy blue â€” primary CTA/accent */
        --accent2: #1e4976; /* hover */
        --accent-lt: #eef3f9; /* tint background */
        --accent-mid: rgba(26,58,92,0.10);
        --shadow: 0 2px 16px rgba(15,25,35,0.07);
        --shadow-lg: 0 12px 48px rgba(15,25,35,0.12);
        --shadow-xl: 0 24px 72px rgba(15,25,35,0.16);
    }

    *, *:: before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'inter', sans-serif;
        background: var(--warm-white);
        color: var(--ink);
        overflow-x: hidden;
        font-size: 18px;
    }

    :: -webkit-scrollbar {
        width: 4px;
    }

    :: -webkit-scrollbar-track {
        background: var(--off-white);
    }

    :: -webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 2px;
    }
    /* â”€â”€â”€ NAV â”€â”€â”€ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 64px;
        height: 70px;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 12px rgba(15,25,35,0.05);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 11px;
        text-decoration: none;
    }

    .nav-logo-box {
        width: 36px;
        height: 36px;
        background: var(--accent);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .nav-logo-name {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 21px;
        letter-spacing: 2px;
        color: var(--text);
    }

        .nav-logo-name span {
            color: var(--accent);
        }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
    }

    .nav-links a

{
    color: var(--text3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links
a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s;
    border-radius: 1px;
}

.nav-links
a:hover {
    color: var(--accent);
}

    .nav-links
    a:hover::after {
        transform: scaleX(1);
    }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26,58,92,0.25);
    transition: background 0.2s, box-shadow 0.2s !important;
}

    .nav-cta:
    hover {
        background: var(--accent2) !important;
    }

    .nav-cta::
    after {
        display: none !important;
    }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 70px;
    background: var(--white);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #F5F0E8;
    border: 1px solid rgb(241 196 118 / 18%);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    width: fit-content;
}

    .hero-eyebrow::
    before {
        content: '';
        width: 7px;
        height: 7px;
        background: #e8a020;
        border-radius: 50%;
        animation: pulse 2.2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero-h1 {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 45px;
    /* line-height: 0.92; */
    letter-spacing: 2px;
    color: #1A1410;
    margin-bottom: 8px;
    font-weight: 600;
}

    .hero-h1 .accent {
        color: #E8A020;
        display: block;
    }

.hero-sub {
    font-size: 14px;
    color: var(--text3);
    font-weight: 500;
    margin: 14px 0 20px;
    letter-spacing: 0.5px;
}

.hero-desc {
    color: #45443F;
    margin-bottom: 42px;
    padding-left: 18px;
    border-left: 3px solid #e8a020;
    font-family: 'inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #000000;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(26,58,92,0.28);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-primary:
    hover {
        background: #e8a020;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(26,58,92,0.36);
    }

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid #eeb7568c;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-secondary:
    hover {
        border-color: #000000;
        color: #ffffff;
        background: #000;
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat-val {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    font-family: "Cinzel", sans-serif;
}

    .stat-val
    em {
        color: #e8a020;
        font-style: normal;
        font-size: 20px;
    }

.stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.hero-right:
hover .hero-img {
    transform: scale(1.04);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-img-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--accent);
}

.badge-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}

.badge-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* â”€â”€â”€ TICKER â”€â”€â”€ */
.ticker {
    background: #000000;
    padding: 13px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    font-family: "Cinzel", sans-serif;
    @import url('https: //fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

    : root {
        /* Exact Hydrofabs site palette â€” no red */
        --navy: #0d1117; /* site's darkest bg */
        --navy2: #161b22; /* secondary dark */
        --navy3: #1f2937; /* card dark bg */
        --navy4: #253040; /* hover states */
        --slate: #2c3e55; /* medium accent */
        --slate-mid: #3d5166; /* mid tone */
        --steel: #4a6080; /* softer accent */
        /* Whites & grays â€” primary surface palette */
        --white: #ffffff;
        --off-white: #f8fafc;
        --bg-gray: #f1f5f9;
        --border: rgb(236 183 87 / 17%);
        --border2: #cbd5e1;
        --muted: #8896aa;
        --text: #0f1923;
        --text2: #374151;
        --text3: #64748b;
        /* Accent â€” navy used in place of red */
        --accent: #e8a020; /* deep navy blue â€” primary CTA/accent */
        --accent2: #1e4976; /* hover */
        --accent-lt: #eef3f9; /* tint background */
        --accent-mid: rgba(26,58,92,0.10);
        --shadow: 0 2px 16px rgba(15,25,35,0.07);
        --shadow-lg: 0 12px 48px rgba(15,25,35,0.12);
        --shadow-xl: 0 24px 72px rgba(15,25,35,0.16);
    }

    *, *:: before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'inter', sans-serif;
        background: var(--warm-white);
        color: var(--ink);
        overflow-x: hidden;
        font-size: 18px;
    }

    :: -webkit-scrollbar {
        width: 4px;
    }

    :: -webkit-scrollbar-track {
        background: var(--off-white);
    }

    :: -webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 2px;
    }
    /* â”€â”€â”€ NAV â”€â”€â”€ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 64px;
        height: 70px;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 12px rgba(15,25,35,0.05);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 11px;
        text-decoration: none;
    }

    .nav-logo-box {
        width: 36px;
        height: 36px;
        background: var(--accent);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .nav-logo-name {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 21px;
        letter-spacing: 2px;
        color: var(--text);
    }

        .nav-logo-name span {
            color: var(--accent);
        }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
    }

    .nav-links a

{
    color: var(--text3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links
a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s;
    border-radius: 1px;
}

.nav-links
a:hover {
    color: var(--accent);
}

    .nav-links
    a:hover::after {
        transform: scaleX(1);
    }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26,58,92,0.25);
    transition: background 0.2s, box-shadow 0.2s !important;
}

    .nav-cta:
    hover {
        background: var(--accent2) !important;
    }

    .nav-cta::
    after {
        display: none !important;
    }

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 70px;
    background: var(--white);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #F5F0E8;
    border: 1px solid rgb(241 196 118 / 18%);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    width: fit-content;
}

    .hero-eyebrow::
    before {
        content: '';
        width: 7px;
        height: 7px;
        background: #e8a020;
        border-radius: 50%;
        animation: pulse 2.2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.5)
    }
}

.hero-h1 {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 45px;
    /* line-height: 0.92; */
    letter-spacing: 2px;
    color: #1A1410;
    margin-bottom: 8px;
    font-weight: 600;
}

    .hero-h1 .accent {
        color: #E8A020;
        display: block;
    }

.hero-sub {
    font-size: 14px;
    color: var(--text3);
    font-weight: 500;
    margin: 14px 0 20px;
    letter-spacing: 0.5px;
}

.hero-desc {
    color: #45443F;
    margin-bottom: 42px;
    padding-left: 18px;
    border-left: 3px solid #e8a020;
    font-family: 'inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.56;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #000000;
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(26,58,92,0.28);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-primary:
    hover {
        background: #e8a020;
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(26,58,92,0.36);
    }

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid #eeb7568c;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
    font-family: "Cinzel", sans-serif;
}

    .btn-secondary:
    hover {
        border-color: #000000;
        color: #ffffff;
        background: #000;
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat-val {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    font-family: "Cinzel", sans-serif;
}

    .stat-val
    em {
        color: #e8a020;
        font-style: normal;
        font-size: 20px;
    }

.stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.hero-right:
hover .hero-img {
    transform: scale(1.04);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-img-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--accent);
}

.badge-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}

.badge-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* â”€â”€â”€ TICKER â”€â”€â”€ */
.ticker {
    background: #000000;
    padding: 13px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}

/* â”€â”€â”€ OVERVIEW STRIP â”€â”€â”€ */
.overview-wrap {
    background: #f5f0e812;
    border-bottom: 1px solid #f5f0e8;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.ov-cell {
    padding: 40px 36px;
    border-right: 1px solid #f5f0e8;
    transition: background 0.25s;
}

    .ov-cell:
    last-child {
        border-right: none;
    }

    .ov-cell:
    hover {
        background: var(--white);
    }

.ov-icon {
    width: 42px;
    height: 42px;
    background: #f5f0e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.ov-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.ov-val {
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
}

.ov-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 3px;
}

/* â”€â”€â”€ SECTION â”€â”€â”€ */
.sec-wrap-white {
    background: var(--white);
}

.sec-wrap-gray {
    background: var(--off-white);
}

section {
    padding: 100px 80px;
    max-width: 1360px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .sec-tag::
    before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
    }

.sec-title {
    font-size: 45px;
    line-height: 1.06;
    /* color: #e8a020; */
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

    .sec-title
    span {
        /* color: #000000; */
    }

.sec-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #45443F;
    /* max-width: 540px; */
}

/* â”€â”€â”€ CASE STUDY â”€â”€â”€ */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.case-card {
    background: #f5f0e824;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    border-left: 3px solid #e8a020;
    transition: background 0.2s, box-shadow 0.2s;
}

    .case-card:
    hover {
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .case-card
    h3 {
        font-size: 22px;
        font-weight: 500;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 9px;
    }

        .case-card
        h3::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #e8a020;
            border-radius: 50%;
            flex-shrink: 0;
        }

    .case-card
    p {
        font-size: 16px;
        line-height: 1.75;
        color: var(--text2);
    }

.case-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.meta-chip {
    background: #f5f0e824;
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text3);
}

    .meta-chip
    strong {
        color: var(--text);
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1px;
    }

.case-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

/* â”€â”€â”€ FEATURES â”€â”€â”€ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .feat-card:
    hover {
        border-color: #e8a020;
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(26,58,92,0.12);
    }

.feat-img-wrap {
    position: relative;
    overflow: hidden;
}

.feat-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.feat-card:
hover .feat-img {
    transform: scale(1.05);
}

.feat-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.feat-body {
    padding: 24px 26px 28px;
}

.feat-title {
    font-size: 25px;
    /* font-family: 'Bebas Neue', sans-serif; */
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: "Cinzel", sans-serif;
}

.feat-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text2);
}

.feat-pill {
    display: inline-block;
    margin-top: 16px;
    background: #f5f0e8;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgb(239 208 152);
}

/* â”€â”€â”€ SPECS â”€â”€â”€ */
.specs-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

    .specs-table
    tr {
        border-bottom: 1px solid var(--border);
    }

        .specs-table
        tr:last-child {
            border-bottom: none;
        }

        .specs-table
        tr:hover td:first-child {
            color: var(--accent);
        }

    .specs-table
    td {
        padding: 16px 0;
        font-size: 14px;
        vertical-align: middle;
    }

        .specs-table
        td:first-child {
            color: var(--muted);
            width: 48%;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .specs-table
        td:last-child {
            color: var(--text);
            font-weight: 600;
        }

.unit {
    color: var(--accent);
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

.safety-box {
    background: #f5f0e83d;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.safety-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .safety-title::
    before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--accent);
    }

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 13px 16px;
    border-radius: 8px;
    transition: border-color 0.2s;
}

    .safety-row:
    hover {
        border-color: rgba(26,58,92,0.3);
    }

.chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.safety-row
span {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* â”€â”€â”€ RESULTS â”€â”€â”€ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 60px;
}

.res-card {
    background: var(--white);
    border: 1px solid rgb(236 183 87 / 32%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

    .res-card:
    hover {
        border-color: rgb(236 183 87 / 54%);
        box-shadow: 0 12px 40px rgba(26,58,92,0.08);
        transform: translateY(-2px);
    }

.res-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.res-card
h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.res-card
p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text2);
}

/* â”€â”€â”€ CTA BAND â”€â”€â”€ */
.cta-band {
    background: var(--navy);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::
    before {
        content: '';
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,0.03);
    }

    .cta-band::
    after {
        content: '';
        position: absolute;
        left: 40%;
        top: -80px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255,255,255,0.02);
    }

.cta-title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    line-height: 1.06;
    letter-spacing: 0.5px;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-top: 14px;
    max-width: 480px;
}

.btn-cta {
    background: #e8a020;
    color: #ffffff;
    padding: 15px 40px 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 35px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-transform: uppercase;
}

    .btn-cta:
    hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 44px rgba(0,0,0,0.25);
    }

.cta-contact {
    margin-top: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

    .cta-contact
    a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
    background: #f5f0e8;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 80px 48px;
    border-bottom: 1px solid #e0d8cc;
}

.footer-brand {
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
    background: #e8192c;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2.5px;
    color: #2c2418;
}

    .footer-brand-name
    span {
        color: #e8192c;
    }

.footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    color: #7a6e5f;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social
    a {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        background: rgba(44,36,24,0.07);
        border: 1px solid rgba(44,36,24,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

        .footer-social
        a:hover {
            background: #e8a020;
            border-color: #e8a020;
        }

        .footer-social
        a svg {
            width: 15px;
            height: 15px;
            fill: rgba(44,36,24,0.5);
            transition: fill 0.2s;
        }

        .footer-social
        a:hover svg {
            fill: #fff;
        }

.footer-col {
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c2418;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8a020;
    display: inline-block;
}

.footer-col
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col
a {
    color: #7a6e5f;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    transition: color 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .footer-col
    a:hover {
        color: #e8a020;
    }

    .footer-col
    a.with-icon::before {
        content: 'â€º';
        color: #e8a020;
        font-size: 16px;
        line-height: 1.2;
        flex-shrink: 0;
    }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgb(232 160 32 / 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-text {
    font-size: 13px;
    color: #7a6e5f;
    line-height: 1.6;
}

    .footer-contact-text
    a {
        color: #7a6e5f;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact-text
        a:hover {
            color: #e8192c;
        }

.footer-bottom-bar {
    background: #ece6db;
    padding: 18px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-copyright
    a {
        color: #e8a020;
        text-decoration: none;
    }

.footer-credit {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-credit
    a {
        color: #e8a020;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-credit
        a:hover {
            color: #e8192c;
        }

/* â”€â”€â”€ DIVIDER ACCENT â”€â”€â”€ */
.rule {
    height: 1px;
    background: var(--border);
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 40px 24px;
    }

    .hero-right {
        height: 340px;
    }

    section {
        padding: 60px 24px;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-grid, .specs-layout {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 48px 24px 36px;
    }

    .footer-bottom-bar {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

.feat-img-wrap
img, reveal img {
    width: 100%
}

.hero-right
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

@media(max-width:1299px) {
    .tp-main-menu nav ul li {
        margin-right: 22px;
    }
}

@media(max-width:1199px) {
    .tp-main-menu nav ul li {
        margin-right: 15px;
    }
}

@media(max-width:991px) {
    .tp-transparent {
        padding: 26px 0px;
    }
}

@media(max-width:425px) {
    .res-card {
        display: block;
    }

    .res-icon {
        margin-bottom: 15px;
    }
}

@media(max-width:410px) {
    .hero-stats {
        display: block;
    }
}

';;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
}

/* â”€â”€â”€ OVERVIEW STRIP â”€â”€â”€ */
.overview-wrap {
    background: #f5f0e812;
    border-bottom: 1px solid #f5f0e8;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.ov-cell {
    padding: 40px 36px;
    border-right: 1px solid #f5f0e8;
    transition: background 0.25s;
}

    .ov-cell:last-child {
        border-right: none;
    }

    .ov-cell:hover {
        background: var(--white);
    }

.ov-icon {
    width: 42px;
    height: 42px;
    background: #f5f0e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.ov-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.ov-val {
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
}

.ov-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 3px;
}

/* â”€â”€â”€ SECTION â”€â”€â”€ */
.sec-wrap-white {
    background: var(--white);
}

.sec-wrap-gray {
    background: var(--off-white);
}

section {
    padding: 100px 80px;
    max-width: 1360px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .sec-tag::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
    }

.sec-title {
    font-size: 45px;
    line-height: 1.06;
    /* color: #e8a020; */
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

    .sec-title span {
        /* color: #000000; */
    }

.sec-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #45443F;
    /* max-width: 540px; */
}

/* â”€â”€â”€ CASE STUDY â”€â”€â”€ */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.case-card {
    background: #f5f0e824;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    border-left: 3px solid #e8a020;
    transition: background 0.2s, box-shadow 0.2s;
}

    .case-card:hover {
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .case-card h3 {
        font-size: 22px;
        font-weight: 500;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 9px;
    }

        .case-card h3::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #e8a020;
            border-radius: 50%;
            flex-shrink: 0;
        }

    .case-card p {
        font-size: 16px;
        line-height: 1.75;
        color: var(--text2);
    }

.case-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.meta-chip {
    background: #f5f0e824;
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text3);
}

    .meta-chip strong {
        color: var(--text);
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1px;
    }

.case-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

/* â”€â”€â”€ FEATURES â”€â”€â”€ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .feat-card:hover {
        border-color: #e8a020;
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(26,58,92,0.12);
    }

.feat-img-wrap {
    position: relative;
    overflow: hidden;
}

.feat-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.feat-card:hover .feat-img {
    transform: scale(1.05);
}

.feat-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.feat-body {
    padding: 24px 26px 28px;
}

.feat-title {
    font-size: 25px;
    /* font-family: 'Bebas Neue', sans-serif; */
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: "Cinzel", sans-serif;
}

.feat-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text2);
}

.feat-pill {
    display: inline-block;
    margin-top: 16px;
    background: #f5f0e8;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgb(239 208 152);
}

/* â”€â”€â”€ SPECS â”€â”€â”€ */
.specs-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

    .specs-table tr {
        border-bottom: 1px solid var(--border);
    }

        .specs-table tr:last-child {
            border-bottom: none;
        }

        .specs-table tr:hover td:first-child {
            color: var(--accent);
        }

    .specs-table td {
        padding: 16px 0;
        font-size: 14px;
        vertical-align: middle;
    }

        .specs-table td:first-child {
            color: var(--muted);
            width: 48%;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .specs-table td:last-child {
            color: var(--text);
            font-weight: 600;
        }

.unit {
    color: var(--accent);
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

.safety-box {
    background: #f5f0e83d;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.safety-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .safety-title::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--accent);
    }

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 13px 16px;
    border-radius: 8px;
    transition: border-color 0.2s;
}

    .safety-row:hover {
        border-color: rgba(26,58,92,0.3);
    }

.chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.safety-row span {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* â”€â”€â”€ RESULTS â”€â”€â”€ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 60px;
}

.res-card {
    background: var(--white);
    border: 1px solid rgb(236 183 87 / 32%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

    .res-card:hover {
        border-color: rgb(236 183 87 / 54%);
        box-shadow: 0 12px 40px rgba(26,58,92,0.08);
        transform: translateY(-2px);
    }

.res-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.res-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.res-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text2);
}

/* â”€â”€â”€ CTA BAND â”€â”€â”€ */
.cta-band {
    background: var(--navy);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: '';
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,0.03);
    }

    .cta-band::after {
        content: '';
        position: absolute;
        left: 40%;
        top: -80px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255,255,255,0.02);
    }

.cta-title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    line-height: 1.06;
    letter-spacing: 0.5px;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-top: 14px;
    max-width: 480px;
}

.btn-cta {
    background: #e8a020;
    color: #ffffff;
    padding: 15px 40px 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 35px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-transform: uppercase;
}

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 44px rgba(0,0,0,0.25);
    }

.cta-contact {
    margin-top: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

    .cta-contact a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
    background: #f5f0e8;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 80px 48px;
    border-bottom: 1px solid #e0d8cc;
}

.footer-brand {
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
    background: #e8192c;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2.5px;
    color: #2c2418;
}

    .footer-brand-name span {
        color: #e8192c;
    }

.footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    color: #7a6e5f;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        background: rgba(44,36,24,0.07);
        border: 1px solid rgba(44,36,24,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

        .footer-social a:hover {
            background: #e8a020;
            border-color: #e8a020;
        }

        .footer-social a svg {
            width: 15px;
            height: 15px;
            fill: rgba(44,36,24,0.5);
            transition: fill 0.2s;
        }

        .footer-social a:hover svg {
            fill: #fff;
        }

.footer-col {
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c2418;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8a020;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #7a6e5f;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    transition: color 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .footer-col a:hover {
        color: #e8a020;
    }

    .footer-col a.with-icon::before {
        content: 'â€º';
        color: #e8a020;
        font-size: 16px;
        line-height: 1.2;
        flex-shrink: 0;
    }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgb(232 160 32 / 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-text {
    font-size: 13px;
    color: #7a6e5f;
    line-height: 1.6;
}

    .footer-contact-text a {
        color: #7a6e5f;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact-text a:hover {
            color: #e8192c;
        }

.footer-bottom-bar {
    background: #ece6db;
    padding: 18px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-copyright a {
        color: #e8a020;
        text-decoration: none;
    }

.footer-credit {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-credit a {
        color: #e8a020;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-credit a:hover {
            color: #e8192c;
        }

/* â”€â”€â”€ DIVIDER ACCENT â”€â”€â”€ */
.rule {
    height: 1px;
    background: var(--border);
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 40px 24px;
    }

    .hero-right {
        height: 340px;
    }

    section {
        padding: 60px 24px;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-grid, .specs-layout {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 48px 24px 36px;
    }

    .footer-bottom-bar {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

.feat-img-wrap img, reveal img {
    width: 100%
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

@media(max-width:1299px) {
    .tp-main-menu nav ul li {
        margin-right: 22px;
    }
}

@media(max-width:1199px) {
    .tp-main-menu nav ul li {
        margin-right: 15px;
    }
}

@media(max-width:991px) {
    .tp-transparent {
        padding: 26px 0px;
    }
}

@media(max-width:425px) {
    .res-card {
        display: block;
    }

    .res-icon {
        margin-bottom: 15px;
    }
}

@media(max-width:410px) {
    .hero-stats {
        display: block;
    }
}

';
}

.ov-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 3px;
    font-family: "Cinzel", sans-serif;
}

/* â”€â”€â”€ SECTION â”€â”€â”€ */
.sec-wrap-white {
    background: var(--white);
}

.sec-wrap-gray {
    background: var(--off-white);
}

section {
    padding: 100px 80px;
    /* max-width: 1360px; */
    margin: 0 auto;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

    .sec-tag::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
    }

.sec-title {
    font-size: 45px;
    line-height: 1.06;
    /* color: #e8a020; */
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

    .sec-title span {
        /* color: #000000; */
    }

.sec-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #45443F;
    /* max-width: 540px; */
}

/* â”€â”€â”€ CASE STUDY â”€â”€â”€ */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.case-card {
    background: #f5f0e824;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    border-left: 3px solid #e8a020;
    transition: background 0.2s, box-shadow 0.2s;
}

    .case-card:hover {
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .case-card h3 {
        font-size: 22px;
        font-weight: 500;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 9px;
    }

        .case-card h3::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #e8a020;
            border-radius: 50%;
            flex-shrink: 0;
        }

    .case-card p {
        font-size: 16px;
        line-height: 1.75;
        color: var(--text2);
    }

.case-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.meta-chip {
    background: #f5f0e824;
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text3);
}

    .meta-chip strong {
        color: var(--text);
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 1px;
        font-family: "Cinzel", sans-serif;
    }

.case-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

/* â”€â”€â”€ FEATURES â”€â”€â”€ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 60px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .feat-card:hover {
        border-color: #e8a020;
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(26,58,92,0.12);
    }

.feat-img-wrap {
    position: relative;
    overflow: hidden;
}

.feat-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.feat-card:hover .feat-img {
    transform: scale(1.05);
}

.feat-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.feat-body {
    padding: 24px 26px 28px;
}

.feat-title {
    font-size: 25px;
    /* font-family: 'Bebas Neue', sans-serif; */
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: "Cinzel", sans-serif;
}

.feat-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text2);
}

.feat-pill {
    display: inline-block;
    margin-top: 16px;
    background: #f5f0e8;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgb(239 208 152);
}

/* â”€â”€â”€ SPECS â”€â”€â”€ */
.specs-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

    .specs-table tr {
        border-bottom: 1px solid var(--border);
    }

        .specs-table tr:last-child {
            border-bottom: none;
        }

        .specs-table tr:hover td:first-child {
            color: var(--accent);
        }

    .specs-table td {
        padding: 16px 0;
        font-size: 14px;
        vertical-align: middle;
    }

        .specs-table td:first-child {
            color: var(--muted);
            width: 48%;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: color 0.2s;
            font-family: "Cinzel", sans-serif;
        }

        .specs-table td:last-child {
            color: var(--text);
            font-weight: 600;
            font-family: "Cinzel", sans-serif;
        }

.unit {
    color: var(--accent);
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

.safety-box {
    background: #f5f0e83d;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.safety-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .safety-title::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--accent);
    }

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 13px 16px;
    border-radius: 8px;
    transition: border-color 0.2s;
    font-family: "Cinzel", sans-serif;
}

    .safety-row:hover {
        border-color: rgba(26,58,92,0.3);
    }

.chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.safety-row span {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* â”€â”€â”€ RESULTS â”€â”€â”€ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 60px;
}

.res-card {
    background: var(--white);
    border: 1px solid rgb(236 183 87 / 32%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

    .res-card:hover {
        border-color: rgb(236 183 87 / 54%);
        box-shadow: 0 12px 40px rgba(26,58,92,0.08);
        transform: translateY(-2px);
    }

.res-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.res-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.res-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text2);
}

/* â”€â”€â”€ CTA BAND â”€â”€â”€ */
.cta-band {
    background: #45443F;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: '';
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,0.03);
    }

    .cta-band::after {
        content: '';
        position: absolute;
        left: 40%;
        top: -80px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255,255,255,0.02);
    }

.cta-title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    line-height: 1.06;
    letter-spacing: 0.5px;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-top: 14px;
    max-width: 480px;
}

.btn-cta {
    background: #e8a020;
    color: #ffffff;
    padding: 15px 40px 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 35px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-transform: uppercase;
}

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 44px rgba(0,0,0,0.25);
    }

.cta-contact {
    margin-top: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

    .cta-contact a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
    background: #f5f0e8;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 80px 48px;
    border-bottom: 1px solid #e0d8cc;
}

.footer-brand {
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
    background: #e8192c;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2.5px;
    color: #2c2418;
}

    .footer-brand-name span {
        color: #e8192c;
    }

.footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    color: #7a6e5f;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 6px;
        background: rgba(44,36,24,0.07);
        border: 1px solid rgba(44,36,24,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

        .footer-social a:hover {
            background: #e8a020;
            border-color: #e8a020;
        }

        .footer-social a svg {
            width: 15px;
            height: 15px;
            fill: rgba(44,36,24,0.5);
            transition: fill 0.2s;
        }

        .footer-social a:hover svg {
            fill: #fff;
        }

.footer-col {
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c2418;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8a020;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #7a6e5f;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    transition: color 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .footer-col a:hover {
        color: #e8a020;
    }

    .footer-col a.with-icon::before {
        content: 'â€º';
        color: #e8a020;
        font-size: 16px;
        line-height: 1.2;
        flex-shrink: 0;
    }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgb(232 160 32 / 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-text {
    font-size: 13px;
    color: #7a6e5f;
    line-height: 1.6;
}

    .footer-contact-text a {
        color: #7a6e5f;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact-text a:hover {
            color: #e8192c;
        }

.footer-bottom-bar {
    background: #ece6db;
    padding: 18px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-copyright a {
        color: #e8a020;
        text-decoration: none;
    }

.footer-credit {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0px;
}

    .footer-credit a {
        color: #e8a020;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-credit a:hover {
            color: #e8192c;
        }

/* â”€â”€â”€ DIVIDER ACCENT â”€â”€â”€ */
.rule {
    height: 1px;
    background: var(--border);
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 900px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 40px 24px;
    }

    .hero-right {
        height: 340px;
    }

    section {
        padding: 60px 24px;
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-grid, .specs-layout {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 48px 24px 36px;
    }

    .footer-bottom-bar {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

.feat-img-wrap img, reveal img {
    width: 100%
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

@media(max-width:1299px) {
    .tp-main-menu nav ul li {
        margin-right: 22px;
    }
}

@media(max-width:1199px) {
    .tp-main-menu nav ul li {
        margin-right: 15px;
    }
}

@media(max-width:991px) {
    .tp-transparent {
        padding: 26px 0px;
    }
}

@media(max-width:425px) {
    .res-card {
        display: block;
    }

    .res-icon {
        margin-bottom: 15px;
    }

    .hero-h1, .sec-title {
        font-size: 38px;
    }
}

@media(max-width:410px) {
    .hero-stats {
        display: block;
    }
}
