/* ═══════════════════════════════════════════════════════════════
   SOBAMAS — Web Profile Stylesheet
   Font: DM Serif Display (headings) + Inter (body)
   Professional, spacious, large typography
═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Green palette */
    --green-950: #052912;
    --green-900: #0C3D20;
    --green-800: #155A31;
    --green-700: #1E7A46;
    --green-600: #239A57;
    --green-500: #27BA6A;
    --green-400: #3DD980;
    --green-300: #70E8A0;
    --green-200: #B0F2CA;
    --green-100: #D8FAE9;
    --green-50: #F0FDF6;

    /* Gold */
    --gold-700: #996A10;
    --gold-600: #B8850A;
    --gold-500: #D4A843;
    --gold-400: #E8C46B;
    --gold-100: #FDF4DC;
    --gold-50: #FFFAED;

    /* Neutral */
    --text-900: #0B1910;
    --text-700: #2E4A38;
    --text-500: #56786A;
    --text-300: #A0BAB0;
    --text-100: #EDF2EF;

    --surface: #FFFFFF;
    --surface-alt: #F5FAF7;
    --surface-dim: #EBF5EF;
    --border: rgba(30, 122, 70, 0.12);
    --border-dark: rgba(30, 122, 70, 0.22);

    /* Typography scale */
    --font-serif: 'DM Serif Display', 'Georgia', serif;
    --font-sans: 'Inter', 'Helvetica Neue', sans-serif;

    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1.0625rem;
    /* 17px */
    --text-md: 1.125rem;
    /* 18px */
    --text-lg: 1.25rem;
    /* 20px */
    --text-xl: 1.5rem;
    /* 24px */
    --text-2xl: 1.875rem;
    /* 30px */
    --text-3xl: 2.375rem;
    /* 38px */
    --text-4xl: 3rem;
    /* 48px */
    --text-5xl: 3.75rem;
    /* 60px */
    --text-6xl: 4.75rem;
    /* 76px */

    /* Spacing */
    --space-section: 6.5rem;
    --space-inner: 1.5rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 100px;

    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
    --shadow-green: 0 12px 40px rgba(30, 122, 70, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-900);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY HELPERS ── */
.t-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 0.85rem;
}

.t-kicker .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.t-kicker.lt {
    color: rgba(255, 255, 255, 0.6);
}

.t-kicker.lt .dot {
    background: var(--green-300);
}

.t-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--text-900);
}

.t-heading.lt {
    color: #FFFFFF;
}

.t-body {
    font-size: var(--text-md);
    line-height: 1.75;
    color: var(--text-500);
}

.t-body.lt {
    color: rgba(255, 255, 255, 0.6);
}

/* ── SECTION LAYOUT ── */
.section {
    padding: var(--space-section) 2.5rem;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3.5rem;
    max-width: 640px;
}

.section-header.centered {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--green-700);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-outline {
    background: transparent;
    color: var(--text-700);
    border: 1.5px solid var(--border-dark);
}

.btn-outline:hover {
    border-color: var(--green-600);
    color: var(--green-700);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--text-900);
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 168, 67, 0.3);
}

.btn-lg {
    padding: 1.05rem 2.2rem;
    font-size: var(--text-md);
    border-radius: 12px;
}

.btn-nav {
    padding: 0.6rem 1.25rem;
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
}

/* ── WAVE DIVIDER ── */
.wave {
    line-height: 0;
}

.wave svg {
    display: block;
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    padding: 0 2.5rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo-img {
    height: 36px;
    width: auto;
    display: block;
    /* Logo PNG has white bg — keep as-is; navbar bg is also white */
}

/* Legacy — no longer rendered but kept for reference */
.navbar-logo-mark {
    display: none;
}

.navbar-brand-name {
    display: none;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-links a {
    color: var(--text-700);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: var(--green-700);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-nav-ghost {
    background: none;
    border: 1.5px solid var(--text-100);
    color: var(--text-700);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s;
}

.btn-nav-ghost:hover {
    border-color: var(--green-600);
    color: var(--green-700);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: var(--green-700);
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s;
    line-height: 1;
}

.btn-nav-primary:hover {
    background: var(--green-800);
    transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-700);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 10rem 2.5rem 6rem;
    background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgba(39, 186, 106, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(39, 186, 106, 0.07) 0%, transparent 60%),
        linear-gradient(165deg, var(--green-50) 0%, var(--surface) 50%, var(--gold-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 186, 106, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    border: 1px solid var(--green-200);
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, var(--text-6xl));
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-900);
    margin-bottom: 1.5rem;
}

.hero-heading .accent-green {
    color: var(--green-700);
}

.hero-heading .accent-gold {
    background: linear-gradient(135deg, #A07820 0%, #D4A843 35%, #F0D070 55%, #C89030 80%, #8A6010 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: var(--text-lg);
    line-height: 1.75;
    color: var(--text-500);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-desc strong {
    color: var(--text-700);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--text-sm);
    color: var(--text-500);
    font-weight: 500;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-600);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* HERO CARD */
.hero-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-400), var(--green-700));
}

.hero-card-title {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-300);
    text-align: center;
    margin-bottom: 1.5rem;
}

.flow-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    background: var(--surface-alt);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.flow-step.active {
    background: var(--green-50);
    border-color: rgba(39, 186, 106, 0.28);
}

.flow-step.output {
    background: var(--gold-50);
    border-color: rgba(212, 168, 67, 0.28);
}

.flow-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.fi-gray {
    background: var(--text-100);
}

.fi-gray svg {
    stroke: var(--text-700);
}

.fi-green {
    background: var(--green-100);
}

.fi-green svg {
    stroke: var(--green-800);
}

.fi-blue {
    background: #E6F2FF;
}

.fi-blue svg {
    stroke: #0958D9;
}

.fi-gold {
    background: var(--gold-100);
}

.fi-gold svg {
    stroke: var(--gold-700);
}

.flow-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-900);
    line-height: 1.2;
}

.flow-sub {
    font-size: 0.72rem;
    color: var(--text-500);
    margin-top: 2px;
}

.flow-arrow {
    text-align: center;
    padding: 2px 0;
    color: var(--green-300);
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
}

.flow-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-300);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.hero-card-divider {
    height: 1px;
    background: var(--border);
    margin: 1.25rem 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-stat {
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--green-700);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: var(--text-500);
    margin-top: 3px;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   BRAND BAR
══════════════════════════════════════════════════════════════ */
.brand-bar {
    background: var(--green-50);
    border-top: 1px solid var(--green-100);
    border-bottom: 1px solid var(--green-100);
    padding: 1.5rem 2.5rem;
}

.brand-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-bar-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--green-700);
    white-space: nowrap;
    margin-right: 0.75rem;
}

.brand-pill {
    background: white;
    border: 1px solid var(--green-200);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--green-700);
    white-space: nowrap;
    transition: all 0.2s;
    cursor: default;
}

.brand-pill:hover {
    background: var(--green-100);
    border-color: var(--green-400);
}

/* ══════════════════════════════════════════════════════════════
   TENTANG KAMI
══════════════════════════════════════════════════════════════ */
.about-section {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-graphic {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--green-50), var(--green-100));
    border-radius: var(--radius-xl);
    border: 1px solid var(--green-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-graphic-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem;
    text-align: center;
}

.about-icon-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.about-icon-box {
    aspect-ratio: 1;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.about-icon-box svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke: var(--green-700);
}

.about-icon-box span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-700);
    text-align: center;
    line-height: 1.2;
}

.about-badge {
    position: absolute;
    bottom: -1.25rem;
    right: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--green-700);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-badge-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-700);
    line-height: 1;
}

.about-badge-text span {
    font-size: var(--text-xs);
    color: var(--text-500);
    font-weight: 500;
}

.about-content {}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-pillar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--green-700);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-text h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 3px;
}

.pillar-text p {
    font-size: var(--text-sm);
    color: var(--text-500);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   KATEGORI LIMBAH
══════════════════════════════════════════════════════════════ */
.category-section {
    background: var(--surface-alt);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: default;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cat-card-header {
    padding: 2rem 2rem 1.75rem;
    position: relative;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.cat-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Variants */
.cat-recycl .cat-card-header {
    background: linear-gradient(135deg, #F0FDF6, #DCFAEB);
}

.cat-recycl .cat-badge {
    background: rgba(39, 186, 106, 0.14);
    color: var(--green-900);
}

.cat-recycl .cat-badge-dot {
    background: var(--green-500);
}

.cat-nonb3 .cat-card-header {
    background: linear-gradient(135deg, #FFFBE6, #FFF0B2);
}

.cat-nonb3 .cat-badge {
    background: rgba(212, 168, 67, 0.14);
    color: var(--gold-700);
}

.cat-nonb3 .cat-badge-dot {
    background: var(--gold-500);
}

.cat-b3 .cat-card-header {
    background: linear-gradient(135deg, #FFF1F0, #FFD6D3);
}

.cat-b3 .cat-badge {
    background: rgba(220, 50, 50, 0.10);
    color: #7A1010;
}

.cat-b3 .cat-badge-dot {
    background: #E84040;
}

.cat-card-header h3 {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--text-900);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.cat-card-header p {
    font-size: var(--text-sm);
    color: var(--text-500);
    line-height: 1.65;
}

.cat-card-body {
    padding: 1.25rem 2rem 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.cat-tag {
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 7px;
    border: 1px solid transparent;
}

.cat-recycl .cat-tag {
    background: rgba(39, 186, 106, 0.07);
    color: var(--green-800);
    border-color: rgba(39, 186, 106, 0.2);
}

.cat-nonb3 .cat-tag {
    background: rgba(212, 168, 67, 0.07);
    color: var(--gold-700);
    border-color: rgba(212, 168, 67, 0.22);
}

.cat-b3 .cat-tag {
    background: rgba(220, 50, 50, 0.06);
    color: #7A1010;
    border-color: rgba(220, 50, 50, 0.16);
}

/* ══════════════════════════════════════════════════════════════
   SEGMEN PENGGUNA
══════════════════════════════════════════════════════════════ */
.segment-section {
    background: linear-gradient(160deg, var(--green-800) 0%, var(--green-950) 100%);
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.seg-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    transition: all 0.25s;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.seg-card:hover {
    background: rgba(39, 186, 106, 0.1);
    border-color: rgba(39, 186, 106, 0.32);
    transform: translateY(-4px);
}

.seg-icon {
    width: 52px;
    height: 52px;
    background: rgba(39, 186, 106, 0.12);
    border: 1px solid rgba(39, 186, 106, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seg-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--green-400);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.seg-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(39, 186, 106, 0.15);
    line-height: 1;
    letter-spacing: -0.04em;
}

.seg-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.seg-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.65;
}

.seg-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-300);
    opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   CARA KERJA
══════════════════════════════════════════════════════════════ */
.how-section {
    background: var(--surface-alt);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(1/8 * 100%);
    right: calc(1/8 * 100%);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-200) 15%, var(--green-200) 85%, transparent);
    z-index: 0;
}

.how-step {
    padding-right: 2rem;
    position: relative;
    z-index: 1;
}

.how-step:last-child {
    padding-right: 0;
}

.step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--green-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-circle::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--green-50);
    z-index: -1;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--green-700);
}

.how-step.last-step .step-circle {
    border-color: var(--gold-500);
}

.how-step.last-step .step-number {
    color: var(--gold-600);
}

.step-tag {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 5px;
}

.how-step.last-step .step-tag {
    color: var(--gold-600);
}

.how-step h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.how-step p {
    font-size: var(--text-sm);
    color: var(--text-500);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   KEUNGGULAN PLATFORM
══════════════════════════════════════════════════════════════ */
.features-section {
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feat-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--text-100);
    background: var(--surface);
    transition: all 0.22s;
    cursor: default;
}

.feat-card:hover {
    border-color: var(--green-200);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 122, 70, 0.09);
}

.feat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feat-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--green-700);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-card h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feat-card p {
    font-size: var(--text-sm);
    color: var(--text-500);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════════════════ */
.stats-section {
    background: var(--surface-alt);
    padding: 4rem 2.5rem;
}

.stats-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {}

.stat-value {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    color: var(--green-700);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: var(--text-base);
    color: var(--text-500);
    font-weight: 500;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--green-200);
    border-radius: 2px;
    margin: 0.6rem auto;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(145deg, var(--green-700) 0%, var(--green-950) 100%);
    padding: 7rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(39, 186, 106, 0.10);
    top: -100px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 67, 0.07);
    bottom: -60px;
    left: 8%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.28);
    color: var(--gold-400);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 1.75rem;
}

.cta-badge svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold-400);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
}

.cta-heading em {
    color: var(--green-300);
    font-style: normal;
}

.cta-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 2.75rem;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.3);
}

.cta-note svg {
    width: 15px;
    height: 15px;
    stroke: rgba(39, 186, 106, 0.6);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-dot {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 2px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--green-950);
    padding: 4rem 2.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-name {
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    /* Footer is dark green — invert/filter logo to show on dark bg */
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand-name span {
    color: var(--green-400);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.footer-social-btn:hover {
    background: rgba(39, 186, 106, 0.15);
    border-color: rgba(39, 186, 106, 0.3);
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.45);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-col-title {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.22);
}

.footer-reg {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.22);
}

.footer-reg svg {
    width: 13px;
    height: 13px;
    stroke: rgba(39, 186, 106, 0.4);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-card {
        max-width: 500px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .segment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .how-steps::before {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-section: 4.5rem;
    }

    .navbar {
        padding: 0 1.25rem;
    }

    .navbar-links,
    .navbar-actions .btn-nav-ghost {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero {
        padding: 8rem 1.25rem 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--space-section) 1.25rem;
    }

    .category-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .segment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .brand-bar {
        padding: 1.25rem;
    }

    .footer {
        padding: 3rem 1.25rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-section {
        padding: 5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .segment-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   COMING SOON — additional elements
══════════════════════════════════════════════════════════════ */

/* Navbar "Segera Hadir" badge */
.navbar-soon-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    background: var(--gold-100);
    color: var(--gold-700);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* Hero coming-soon pill */
.hero-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-100), #FFF8E8);
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: var(--gold-700);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 10px rgba(212, 168, 67, 0.14);
}

.hero-cs-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* Hero notify form */
.hero-notify-form {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-notify-input {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-dark);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-900);
    background: white;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-notify-input::placeholder {
    color: var(--text-300);
}

.hero-notify-input:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(39, 186, 106, 0.12);
}

/* CTA notify form */
.cta-notify-wrap {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-notify-input {
    flex: 1;
    min-width: 220px;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-900);
    background: rgba(255, 255, 255, 0.95);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cta-notify-input::placeholder {
    color: var(--text-300);
}

.cta-notify-input:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.18);
}

@media (max-width: 480px) {
    .hero-notify-form {
        flex-direction: column;
    }

    .cta-notify-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-notify-input {
        min-width: unset;
    }

    .navbar-soon-badge {
        display: none;
    }
}