:root {
    --teal: #0D7C6B;
    --teal-dark: #0A5C50;
    --teal-light: #E8F5F2;
    --amber: #D97706;
    --amber-light: #FEF3E2;
    --navy: #1E3A5F;
    --dark: #1A2027;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --red: #DC2626;
    --red-light: #FEF2F2;
    --wa: #25D366;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, .12);
    --radius: 10px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -.01em
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem)
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem)
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 80px 0
}

.section-sm {
    padding: 56px 0
}

.eyebrow {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.lead {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 680px;
    margin-bottom: 8px
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow .3s
}

.header.scrolled {
    box-shadow: var(--shadow)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--teal);
    letter-spacing: .02em
}

.logo-tag {
    font-size: .625rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none
}

.nav-menu a {
    font-weight: 500;
    font-size: .95rem;
    color: var(--dark);
    position: relative
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--teal)
}

.nav-menu .dropdown {
    position: relative
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer
}

.dropdown-toggle::after {
    content: "▾";
    font-size: .75rem
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    margin-top: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .9rem
}

.dropdown-menu a:hover {
    background: var(--teal-light);
    color: var(--teal)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit
}

.btn-primary {
    background: var(--teal);
    color: var(--white)
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 124, 107, .3)
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal)
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white)
}

.btn-amber {
    background: var(--amber);
    color: var(--white)
}

.btn-amber:hover {
    background: #B45309;
    transform: translateY(-1px)
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all .3s
}

/* HERO */
.hero {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #FBFCFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 124, 107, .08) 0%, transparent 70%);
    border-radius: 50%
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero h1 {
    margin-bottom: 20px
}

.hero h1 .accent {
    color: var(--teal)
}

.hero p.lead {
    font-size: 1.2rem;
    margin-bottom: 28px
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--gray);
    background: var(--gray-light);
    padding: 10px 16px;
    border-radius: 999px
}

.hero-trust .dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero-visual {
    position: relative;
    height: 480px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, .04) 20px, rgba(255, 255, 255, .04) 40px)
}

.hero-visual-content {
    position: relative;
    text-align: center;
    padding: 32px
}

.hero-visual-content .label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 8px
}

.hero-visual-content .big {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1
}

.hero-visual-content .desc {
    margin-top: 12px;
    opacity: .9
}

/* STATS STRIP */
.stats-strip {
    background: var(--teal);
    color: var(--white);
    padding: 48px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 6px
}

.stat-label {
    font-size: .9rem;
    opacity: .9;
    font-weight: 500
}

/* SEGMENT CARDS */
.segment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px
}

.segment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.segment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.segment-card.manufaktur::before,
.segment-card.food::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px
}

.segment-card.manufaktur::before {
    background: var(--teal)
}

.segment-card.food::before {
    background: var(--amber)
}

.segment-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px
}

.segment-card.manufaktur .segment-icon {
    background: var(--teal-light);
    color: var(--teal)
}

.segment-card.food .segment-icon {
    background: var(--amber-light);
    color: var(--amber)
}

.segment-card h3 {
    margin-bottom: 8px;
    font-size: 1.5rem
}

.segment-sub {
    color: var(--gray);
    font-size: .9rem;
    margin-bottom: 20px
}

.pain-list {
    list-style: none;
    margin-bottom: 24px
}

.pain-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.pain-list li::before {
    content: "!";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--red-light);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-top: 2px
}

.pain-list li:last-child {
    border-bottom: none
}

/* PRODUCTS */
.section-head {
    text-align: center;
    margin-bottom: 48px
}

.section-head h2 {
    margin-bottom: 12px
}

.section-head p {
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    font-weight: 500;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    color: var(--dark)
}

.tab.active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal)
}

.tab:hover:not(.active) {
    border-color: var(--teal);
    color: var(--teal)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    letter-spacing: .05em
}

.product-img.teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark))
}

.product-img.amber {
    background: linear-gradient(135deg, var(--amber), #B45309)
}

.product-img.navy {
    background: linear-gradient(135deg, var(--navy), #0F2440)
}

.product-img.dark {
    background: linear-gradient(135deg, #374151, var(--dark))
}

.product-img .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .95);
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.product-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-cat {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px
}

.product-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px
}

.product-body p {
    color: var(--gray);
    font-size: .9rem;
    flex: 1;
    margin-bottom: 16px
}

.product-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto
}

/* ADVANTAGES */
.advantages {
    background: var(--gray-light)
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.adv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .3s
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.adv-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 8px
}

.adv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px
}

.adv-card p {
    color: var(--gray);
    font-size: .95rem
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative
}

.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    text-align: left
}

.process-num {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem
}

.process-step h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1.2rem
}

.process-step p {
    color: var(--gray);
    font-size: .9rem
}

/* REFERENSI */
.ref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.ref-card {
    background: linear-gradient(135deg, var(--teal-light) 0%, #D5EDE7 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(13, 124, 107, .15);
    transition: all .3s
}

.ref-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.ref-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--teal-dark);
    margin-bottom: 6px;
    letter-spacing: .02em
}

.ref-sub {
    color: var(--gray);
    font-size: .85rem;
    margin-bottom: 20px
}

.ref-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px
}

.ref-stat {
    background: rgba(255, 255, 255, .7);
    padding: 14px;
    border-radius: 10px
}

.ref-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--teal-dark);
    line-height: 1
}

.ref-stat-label {
    font-size: .75rem;
    color: var(--gray);
    margin-top: 4px
}

.ref-quote {
    font-size: .95rem;
    color: var(--dark);
    font-style: italic
}

/* AREA */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .3s
}

.area-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px)
}

.area-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--teal-dark)
}

.area-card .pin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 12px
}

.area-card .pin::before {
    content: "📍"
}

.area-cities {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.8
}

/* CTA FORM SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .08), transparent 50%)
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px
}

.cta-section .lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.1rem;
    margin-bottom: 24px
}

.cta-perks {
    list-style: none;
    margin-top: 20px
}

.cta-perks li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem
}

.cta-perks li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0
}

.cta-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg)
}

.cta-form h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.5rem
}

.form-group {
    margin-bottom: 14px
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s;
    background: var(--white);
    color: var(--dark)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 124, 107, .1)
}

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

.form-submit {
    width: 100%;
    background: var(--teal);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s
}

.form-submit:hover {
    background: var(--teal-dark)
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    padding: 64px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 700
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    padding: 6px 0;
    font-size: .9rem
}

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

.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px
}

.footer-tag {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 16px;
    letter-spacing: .05em
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5)
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--wa);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: transform .2s;
    font-size: 1.75rem
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

.whatsapp-float svg {
    width: 32px;
    height: 32px
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-visual {
        height: 360px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .products-grid,
    .adv-grid,
    .area-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:768px) {
    .section {
        padding: 56px 0
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform .3s;
        z-index: 999
    }

    .nav-menu.open {
        transform: translateY(0)
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border)
    }

    .nav-menu li:last-child {
        border-bottom: none
    }

    .nav-menu a {
        display: block;
        padding: 14px 0
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 16px;
        margin: 0;
        min-width: 0
    }

    .nav-cta-desktop {
        display: none
    }

    .hamburger {
        display: flex
    }

    .segment-grid,
    .ref-grid {
        grid-template-columns: 1fr
    }

    .products-grid,
    .adv-grid,
    .area-grid {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .hero-visual-content .big {
        font-size: 3.5rem
    }

    .stat-num {
        font-size: 2.25rem
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch
    }

    .hero-cta .btn {
        width: 100%
    }
}

/* ========== HERO SLIDER ========== */
:root {
    --slide-teal: #0D9488;
    --slide-amber: #D97706;
    --slide-blue: #1D4ED8;
    --slide-purple: #7C3AED;
    --slide-emerald: #059669;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    background: #0A1628
}

@media(max-width:768px) {
    .hero-slider {
        height: 520px
    }
}

@media(max-width:480px) {
    .hero-slider {
        height: 100svh;
        min-height: 480px;
        max-height: 620px
    }
}

@media(max-width:360px) {
    .hero-slider {
        min-height: 460px;
        max-height: 560px
    }
}

/* Slides */
.hs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
    transform: translateX(60px);
    pointer-events: none;
    z-index: 0
}

.hs-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1
}

.hs-slide.exit {
    opacity: 0;
    transform: translateX(-60px);
    z-index: 0
}

/* Slide BGs */
.hs-slide-1 {
    background: linear-gradient(135deg, #042f2e 0%, #0D9488 60%, #134e4a 100%)
}

.hs-slide-2 {
    background: linear-gradient(135deg, #1c1007 0%, #92400e 50%, #D97706 100%)
}

.hs-slide-3 {
    background: linear-gradient(135deg, #0c1445 0%, #1D4ED8 60%, #1e3a8a 100%)
}

.hs-slide-4 {
    background: linear-gradient(135deg, #2e1065 0%, #7C3AED 60%, #4c1d95 100%)
}

.hs-slide-5 {
    background: linear-gradient(135deg, #022c22 0%, #059669 60%, #065f46 100%)
}

/* Noise texture overlay */
.hs-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .5;
    pointer-events: none;
    z-index: 0
}

/* Geometric shape accent */
.hs-shape {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    opacity: .12;
    z-index: 1
}

@media(max-width:768px) {
    .hs-shape {
        width: 300px;
        height: 300px;
        right: -60px
    }
}

.hs-slide-1 .hs-shape {
    background: radial-gradient(circle, #5eead4, transparent 70%)
}

.hs-slide-2 .hs-shape {
    background: radial-gradient(circle, #fde68a, transparent 70%)
}

.hs-slide-3 .hs-shape {
    background: radial-gradient(circle, #93c5fd, transparent 70%)
}

.hs-slide-4 .hs-shape {
    background: radial-gradient(circle, #c4b5fd, transparent 70%)
}

.hs-slide-5 .hs-shape {
    background: radial-gradient(circle, #6ee7b7, transparent 70%)
}

/* Grid lines deco */
.hs-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none
}

/* Content layout */
.hs-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0 80px 100px;
    box-sizing: border-box
}

@media(max-width:900px) {
    .hs-content {
        padding: 0 32px 90px
    }
}

@media(max-width:768px) {
    .hs-content {
        align-items: flex-end;
        padding: 0 24px 72px
    }
}

@media(max-width:480px) {
    .hs-content {
        align-items: flex-end;
        padding: 0 20px 64px
    }
}

/* Text side */
.hs-text {
    color: #fff;
    max-width: 600px;
    width: 100%
}

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .1)
}

.hs-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: hs-pulse 2s infinite
}

.hs-slide-1 .hs-badge-dot {
    background: #5eead4
}

.hs-slide-2 .hs-badge-dot {
    background: #fbbf24
}

.hs-slide-3 .hs-badge-dot {
    background: #60a5fa
}

.hs-slide-4 .hs-badge-dot {
    background: #c084fc
}

.hs-slide-5 .hs-badge-dot {
    background: #34d399
}

@keyframes hs-pulse {

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

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

.hs-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #fff;
    margin-bottom: 14px
}

.hs-title .hs-accent {
    display: block;
    opacity: .85;
    font-size: .6em;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 4px;
    text-transform: uppercase
}

.hs-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    max-width: 480px
}

@media(max-width:900px) {
    .hs-desc {
        display: none
    }
}

@media(max-width:480px) {
    .hs-badge {
        font-size: .65rem;
        padding: 5px 10px;
        margin-bottom: 12px
    }

    .hs-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 16px
    }

    .hs-desc {
        display: none
    }
}

.hs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .15);
    transition: all .25s;
    cursor: pointer;
    text-decoration: none
}

.hs-cta:hover {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .7);
    transform: translateY(-2px)
}

.hs-cta-arrow {
    font-size: 1.1rem;
    transition: transform .2s
}

.hs-cta:hover .hs-cta-arrow {
    transform: translateX(4px)
}

@media(max-width:480px) {
    .hs-cta {
        padding: 12px 22px;
        font-size: .88rem
    }
}

/* Visual side - hidden, image used as background instead */
.hs-visual {
    display: none
}

/* Full-bleed background image */
.hs-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    display: block
}

.hs-bg-img.contain {
    object-fit: contain;
    background: #0a1628
}

@media(max-width:480px) {
    .hs-bg-img {
        object-position: 60% center
    }
}

/* Dark gradient overlay so text is readable */
.hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .45) 55%, rgba(0, 0, 0, .15) 100%)
}

@media(max-width:768px) {
    .hs-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .80) 100%)
    }
}

.hs-icon-box {
    width: 260px;
    height: 260px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .3)
}

.hs-icon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent);
    border-radius: 28px
}

.hs-icon-emoji {
    font-size: 5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .3))
}

.hs-icon-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .9
}

/* Corner tag */
.hs-corner-tag {
    display: none
}

/* Nav controls */
.hs-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10
}

@media(max-width:480px) {
    .hs-nav {
        bottom: 20px;
        gap: 10px
    }
}

.hs-dots {
    display: flex;
    gap: 8px;
    align-items: center
}

.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0
}

.hs-dot.active {
    width: 28px;
    background: #fff
}

.hs-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    backdrop-filter: blur(8px)
}

.hs-btn:hover {
    background: rgba(255, 255, 255, .25);
    border-color: rgba(255, 255, 255, .6)
}

/* Progress bar */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, .9);
    width: 0%;
    transition: width linear;
    z-index: 10
}

/* Slide counter */
.hs-counter {
    position: absolute;
    top: 28px;
    right: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .1em;
    z-index: 10
}

@media(max-width:480px) {
    .hs-counter {
        right: 20px
    }
}