/* ========================================
   DIGDOYO GROUP - TEAL LIGHT THEME
   Design Direction: Clean Teal — sesuai packaging
   Fonts: Cormorant Garamond + DM Sans
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Core palette — Teal + Warm Gold (sesuai packaging) */
    --primary: #1a9494;
    --primary-light: #2ABFBF;
    --primary-dark: #0d6b6b;
    --primary-glow: rgba(42, 191, 191, 0.2);
    --primary-glow-strong: rgba(42, 191, 191, 0.38);

    --accent: #E8A020;
    --accent-light: #f0b84a;
    --accent-dark: #c07a10;
    --accent-glow: rgba(232, 160, 32, 0.22);

    /* Surfaces — Light / White */
    --bg-dark: #f4fbfb;
    --bg-card: #ffffff;
    --bg-card-hover: #f0fafa;
    --bg-section-alt: #eaf6f6;
    --bg-elevated: #f9fdfd;

    /* Text — Dark on Light */
    --text-primary: #0c2424;
    --text-secondary: #3a6868;
    --text-muted: #7aabab;
    --text-accent: #E8A020;

    /* Borders */
    --border: rgba(42, 191, 191, 0.14);
    --border-hover: rgba(42, 191, 191, 0.32);
    --border-accent: rgba(232, 160, 32, 0.2);
    --border-glass: rgba(42, 191, 191, 0.08);

    /* Spacing */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Shadows — softer for light theme */
    --shadow-sm: 0 2px 12px rgba(42, 191, 191, 0.1);
    --shadow-md: 0 8px 32px rgba(42, 191, 191, 0.12);
    --shadow-lg: 0 20px 60px rgba(42, 191, 191, 0.15);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-glow-accent: 0 0 32px var(--accent-glow);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Noise texture overlay for depth */
/* noise overlay removed for light theme */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* === UTILITY === */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 60%, var(--primary-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

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

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

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(0.92);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--primary-glow-strong);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

.delay-3 {
    animation-delay: 0.36s;
}

.delay-4 {
    animation-delay: 0.48s;
}

.reveal-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(42, 191, 191, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 6px 28px var(--primary-glow-strong);
}

.logo-text {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% -10%, rgba(42, 191, 191, 0.18), transparent),
        radial-gradient(ellipse 50% 50% at 85% 95%, rgba(232, 160, 32, 0.1), transparent),
        radial-gradient(ellipse 40% 50% at 5% 55%, rgba(42, 191, 191, 0.06), transparent);
    pointer-events: none;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.28;
    animation: orbFloat 22s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 191, 191, 0.5), rgba(26, 148, 148, 0.05));
    top: -15%;
    right: -8%;
    animation-duration: 20s;
}

.hero-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.35), rgba(192, 122, 16, 0.04));
    bottom: -10%;
    left: -10%;
    animation-duration: 25s;
    animation-delay: -6s;
}

.hero-orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(42, 191, 191, 0.3), transparent);
    top: 38%;
    left: 48%;
    animation-duration: 28s;
    animation-delay: -12s;
}

@keyframes orbFloat {

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

    25% {
        transform: translate(35px, -45px) scale(1.08);
    }

    50% {
        transform: translate(-25px, 22px) scale(0.94);
    }

    75% {
        transform: translate(18px, 35px) scale(1.04);
    }
}

/* Refined grid pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 191, 191, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 191, 191, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 30%, transparent 70%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.25;
    animation: float 7s ease-in-out infinite;
}

/* Floating badges */
.hero-floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(14, 21, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(58, 170, 110, 0.18);
    border-radius: 16px;
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: floatBadge 7s ease-in-out infinite;
    pointer-events: auto;
    transition: var(--transition);
}

.floating-badge:hover {
    border-color: rgba(58, 170, 110, 0.35);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 20px var(--primary-glow);
}

.floating-badge svg {
    flex-shrink: 0;
}

.fb-1 {
    top: 28%;
    right: 7%;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 26%;
    right: 12%;
    animation-delay: -3.5s;
}

@keyframes floatBadge {

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

    50% {
        transform: translateY(-14px) rotate(1.5deg);
    }
}

/* Hero layout */
.hero-inner {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 72px;
}

.hero-content {
    position: relative;
    z-index: 4;
    flex: 1;
    max-width: 640px;
}

/* Hero visual */
.hero-visual {
    flex: 0 0 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 40px 0;
}

.hero-product-float {
    animation: heroFloat 7s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
    transform: translateY(var(--float-offset, 0px));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(var(--float-offset, 0px));
    }

    50% {
        transform: translateY(calc(var(--float-offset, 0px) - 20px));
    }
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-product-card:hover {
    border-color: rgba(58, 170, 110, 0.25);
    box-shadow: 0 18px 60px rgba(58, 170, 110, 0.12), 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.hero-product-card:hover::before {
    opacity: 1;
}

.hero-product-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 14px;
}

.hero-product-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.08), rgba(58, 170, 110, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--primary-light);
}

.hero-product-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    letter-spacing: 0.01em;
}

.hero-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 170, 110, 0.12) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    background: rgba(58, 170, 110, 0.08);
    border: 1px solid rgba(58, 170, 110, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2.5s ease infinite;
    box-shadow: 0 0 10px rgba(58, 170, 110, 0.6);
}

.badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    animation: badgeShimmer 5s ease-in-out infinite;
}

@keyframes badgeShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* Hero title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 26px;
    letter-spacing: -0.01em;
}

.hero-title-line {
    display: inline;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 50%, var(--primary-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightShift 7s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(58, 170, 110, 0.25));
}

@keyframes highlightShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 44px;
    line-height: 1.85;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--accent-light);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Glow CTA */
.btn-hero-glow {
    position: relative;
    overflow: hidden;
}

.btn-hero-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(14px);
}

.btn-hero-glow:hover::before {
    opacity: 0.8;
}

/* About stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(42, 191, 191, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    margin: 48px 0;
    box-shadow: 0 12px 48px rgba(42, 191, 191, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.stat-glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 24px;
    position: relative;
    transition: all 0.4s ease;
}

.stat-glass-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.stat-glass-card:hover {
    background: rgba(58, 170, 110, 0.06);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-dark) 20%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    vertical-align: top;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Hero scroll indicator */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
    z-index: 6;
}

.scroll-line {
    width: 1.5px;
    height: 44px;
    background: var(--border);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-light), var(--accent));
    animation: scrollLine 2.5s ease infinite;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 24px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px var(--primary-glow-strong);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(58, 170, 110, 0.22);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(58, 170, 110, 0.07);
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

/* Hero stats (hero-stats inline) */
.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* === SECTIONS === */
.section {
    padding: 110px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-light);
    margin-bottom: 18px;
    padding: 7px 18px;
    background: rgba(58, 170, 110, 0.07);
    border: 1px solid rgba(58, 170, 110, 0.14);
    border-radius: 100px;
}

.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-glow-strong);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Decorative section divider */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* === TENTANG === */
.tentang {
    background: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.about-card {
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 170, 110, 0.4), var(--accent-glow), rgba(58, 170, 110, 0.4), transparent);
}

.about-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.about-main {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.about-card-icon {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.12), rgba(58, 170, 110, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-main h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.about-main p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: 0.96rem;
}

.about-main p:last-child {
    margin-bottom: 0;
}

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

.about-pillar {
    padding: 34px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
}

.about-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(58, 170, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-pillar:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(58, 170, 110, 0.08), 0 4px 24px rgba(0, 0, 0, 0.2);
}

.about-pillar-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.12), rgba(58, 170, 110, 0.04));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 22px;
    border: 1px solid var(--border);
}

.about-pillar h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.about-pillar p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    position: relative;
}

/* === PRODUK === */
.produk {
    background: var(--bg-dark);
    padding: 120px 0;
}

.product-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.filter-btn {
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    letter-spacing: 0.01em;
}

.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(58, 170, 110, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* Products grid */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 64px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 370px;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(58, 170, 110, 0.25);
    box-shadow: 0 24px 72px rgba(58, 170, 110, 0.1), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0a0d0a;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.product-badge-new {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.product-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
    z-index: 1;
    pointer-events: none;
    transition: background 0.4s ease;
}

.product-card:hover .product-image::after {
    background: linear-gradient(to bottom, transparent, var(--bg-card-hover));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(var(--hue, 140), 28%, 7%), hsl(var(--hue, 140), 38%, 13%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--hue, 140), 45%, 38%);
    transition: var(--transition-slow);
}

.product-card:hover .product-img-placeholder {
    transform: scale(1.04);
}

.product-info {
    padding: 26px;
    position: relative;
    z-index: 2;
}

.product-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.tag {
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tag-bpom {
    background: rgba(16, 185, 129, 0.09);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.18);
}

.tag-halal {
    background: rgba(167, 139, 250, 0.09);
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.18);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
    max-height: 140px;
    overflow: hidden;
}

.product-benefits span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.product-benefits span::first-letter {
    color: var(--primary-light);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.product-cta svg {
    transition: transform 0.3s ease;
}

.product-card:hover .product-cta {
    color: var(--accent);
}

.product-card:hover .product-cta svg {
    transform: translateX(4px);
}

/* Product CTA section */
.product-cta-section {
    margin-top: 24px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px;
    background: linear-gradient(135deg, rgba(30, 94, 58, 0.12), rgba(200, 168, 75, 0.06));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), var(--primary-light), transparent);
    opacity: 0.4;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    opacity: 0.2;
    pointer-events: none;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cta-content p {
    color: var(--text-secondary);
    max-width: 520px;
    font-size: 0.95rem;
}

/* === KEUNGGULAN === */
.keunggulan {
    background: var(--bg-section-alt);
}

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

.feature-card {
    padding: 34px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 30px rgba(58, 170, 110, 0.06);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 170, 110, 0.07);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 22px;
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(58, 170, 110, 0.12);
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* === NILAI === */
.nilai {
    background: var(--bg-dark);
}

.values-word {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.values-word-letter {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.55));
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    line-height: 1;
}

.values-word-letter:hover {
    transform: translateY(-8px) scale(1.18);
    filter: drop-shadow(0 6px 20px var(--accent-glow));
}

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

.value-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.018);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(200, 168, 75, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    border-color: rgba(200, 168, 75, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 0 24px rgba(200, 168, 75, 0.06);
}

.value-card:hover::before {
    opacity: 1;
}

.value-letter {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(200, 168, 75, 0.25);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* === GOALS === */
.goals {
    background: var(--bg-section-alt);
}

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

.goal-card {
    padding: 38px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(58, 170, 110, 0.15);
    margin-bottom: 14px;
    line-height: 1;
    transition: color 0.4s ease;
}

.goal-card:hover .goal-number {
    color: rgba(58, 170, 110, 0.25);
}

.goal-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.goal-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.goal-progress {
    height: 5px;
    background: rgba(58, 170, 110, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
    border-radius: 4px;
    width: 0;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    filter: blur(4px);
}

.progress-bar.animated {
    width: var(--progress);
}

/* === KONTAK === */
.kontak {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.94rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: rgba(58, 170, 110, 0.04);
    box-shadow: 0 0 0 3px rgba(58, 170, 110, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238faa97' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.98rem;
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(58, 170, 110, 0.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: rgba(58, 170, 110, 0.12);
    border-color: var(--border-hover);
    box-shadow: 0 4px 16px var(--primary-glow);
}

.info-item h5 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.branch-offices {
    padding: 28px 34px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.branch-offices h5 {
    font-size: 0.92rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.branch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.branch-tags span {
    padding: 7px 16px;
    background: rgba(58, 170, 110, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: default;
}

.branch-tags span:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(58, 170, 110, 0.08);
}

/* === FOOTER === */
.footer {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    padding: 70px 0 34px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), var(--primary-light), transparent);
    opacity: 0.2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    max-width: 290px;
    line-height: 1.8;
}

.footer-links h5 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-certifications {
    display: flex;
    gap: 10px;
}

.cert-badge {
    padding: 7px 16px;
    background: rgba(58, 170, 110, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.cert-badge:hover {
    border-color: var(--border-hover);
    background: rgba(58, 170, 110, 0.1);
}

/* === PRODUCT PREVIEW ICON === */
.product-preview-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(8, 13, 9, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.75) rotate(-10deg);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.product-card:hover .product-preview-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* === PRODUCT PREVIEW MODAL === */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 36, 36, 0.88);
    backdrop-filter: blur(16px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.product-modal-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.product-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(90deg) scale(1.1);
}

.product-modal-content {
    display: flex;
    gap: 44px;
    max-width: 980px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(58, 170, 110, 0.14);
    border-radius: 28px;
    padding: 36px;
    transform: scale(0.9) translateY(24px);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--border-hover) transparent;
    position: relative;
}

.product-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58, 170, 110, 0.4), var(--accent-glow), rgba(58, 170, 110, 0.4), transparent);
    border-radius: 28px 28px 0 0;
}

.product-modal.active .product-modal-content {
    transform: scale(1) translateY(0);
}

.product-modal-image {
    flex: 0 0 360px;
    position: relative;
}

.product-modal-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.product-modal-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
}

.product-modal-badges span {
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.product-modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-modal-details h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.product-modal-certs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-modal-certs .tag {
    padding: 5px 14px;
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 700;
}

.product-modal-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-modal-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(58, 170, 110, 0.07);
    border: 1px solid rgba(58, 170, 110, 0.14);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 500;
}

.product-modal-marketplace {
    margin-top: 8px;
    display: none;
}

.product-modal-marketplace.has-links {
    display: block;
}

.product-modal-marketplace h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.marketplace-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.marketplace-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.marketplace-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.marketplace-link.mp-shopee {
    background: rgba(238, 77, 45, 0.1);
    border-color: rgba(238, 77, 45, 0.22);
    color: #ee4d2d;
}

.marketplace-link.mp-shopee:hover {
    background: rgba(238, 77, 45, 0.18);
}

.marketplace-link.mp-tokopedia {
    background: rgba(66, 181, 73, 0.1);
    border-color: rgba(66, 181, 73, 0.22);
    color: #42b549;
}

.marketplace-link.mp-tokopedia:hover {
    background: rgba(66, 181, 73, 0.18);
}

.marketplace-link.mp-blibli {
    background: rgba(0, 114, 240, 0.1);
    border-color: rgba(0, 114, 240, 0.22);
    color: #0072f0;
}

.marketplace-link.mp-blibli:hover {
    background: rgba(0, 114, 240, 0.18);
}

.marketplace-link.mp-lazada {
    background: rgba(15, 15, 110, 0.12);
    border-color: rgba(120, 125, 255, 0.25);
    color: #787dff;
}

.marketplace-link.mp-lazada:hover {
    background: rgba(15, 15, 110, 0.2);
}

.marketplace-link.mp-bukalapak {
    background: rgba(226, 34, 97, 0.1);
    border-color: rgba(226, 34, 97, 0.22);
    color: #e22261;
}

.marketplace-link.mp-bukalapak:hover {
    background: rgba(226, 34, 97, 0.18);
}

.product-modal-contact {
    margin-top: auto;
    width: fit-content;
}

/* === TIM MANAJEMEN === */
.tim {
    background: var(--bg-dark);
    overflow: hidden;
}

.tim .section-header {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    padding: 40px 26px 34px;
    border-radius: 26px;
    background: linear-gradient(145deg, #ffffff, #f8fdfd);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: radial-gradient(circle at 50% 0%, rgba(58, 170, 110, 0.07), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card:hover {
    border-color: rgba(58, 170, 110, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 48px rgba(58, 170, 110, 0.07);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 22px;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-dark), var(--bg-dark)), linear-gradient(135deg, var(--primary), var(--accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;
    position: relative;
    z-index: 1;
}

.team-card:hover .team-avatar {
    transform: scale(1.07);
    box-shadow: 0 10px 36px rgba(58, 170, 110, 0.22);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-initials {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.team-position {
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
    position: relative;
    z-index: 1;
}

/* === TESTIMONIAL === */
.testimonial {
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -55%;
    left: -22%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(58, 170, 110, 0.05), transparent 70%);
    pointer-events: none;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: -45%;
    right: -18%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 168, 75, 0.04), transparent 70%);
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 38px;
    border-radius: 26px;
    background: linear-gradient(145deg, #ffffff, #f8fdfd);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: radial-gradient(circle at 50% 100%, rgba(58, 170, 110, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(58, 170, 110, 0.2);
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 0 36px rgba(58, 170, 110, 0.05);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--primary-light);
    opacity: 0.15;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-quote {
    opacity: 0.35;
    transform: scale(1.1) rotate(3deg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.28));
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 26px;
    font-style: italic;
    flex: 1;
    min-height: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-photo {
    margin-bottom: 26px;
    height: 200px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
    transition: all 0.45s ease;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-photo:hover {
    border-color: rgba(58, 170, 110, 0.25);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-photo:hover img {
    transform: scale(1.06);
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 170, 110, 0.18), rgba(200, 168, 75, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-light);
    font-size: 1.05rem;
    flex-shrink: 0;
    border: 2px solid rgba(58, 170, 110, 0.18);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: rgba(58, 170, 110, 0.35);
    box-shadow: 0 4px 18px rgba(58, 170, 110, 0.14);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* === MISC ALERTS === */
.form-success {
    display: none;
    padding: 18px 22px;
    background: rgba(58, 170, 110, 0.09);
    border: 1px solid rgba(58, 170, 110, 0.22);
    border-radius: var(--radius-md);
    color: var(--primary-light);
    font-size: 0.92rem;
    font-weight: 500;
    align-items: center;
    gap: 12px;
}

.form-success.show {
    display: flex;
}

.form-error {
    display: none;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: var(--radius-md);
    color: #f87171;
    font-size: 0.88rem;
}

.form-error.show {
    display: block;
}

/* Product filter animation */
.product-card.hidden {
    display: none;
}

.product-card.showing {
    animation: fadeInUp 0.5s ease forwards;
}

/* === FLOATING WHATSAPP === */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25D366;
    color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: waFloat 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1.2s;
}

.wa-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55), 0 4px 14px rgba(0, 0, 0, 0.2);
    border-radius: 32px;
    width: auto;
    padding: 0 22px 0 20px;
    gap: 10px;
}

.wa-float svg {
    flex-shrink: 0;
}

.wa-float-label {
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-float:hover .wa-float-label {
    max-width: 120px;
    opacity: 1;
}

.wa-float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.32);
    animation: waPulse 2.5s ease-in-out infinite;
    z-index: -1;
}

.wa-float:hover .wa-float-pulse {
    animation: none;
    opacity: 0;
}

@keyframes waPulse {

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

    50% {
        transform: scale(1.38);
        opacity: 0;
    }
}

@keyframes waFloat {
    from {
        transform: scale(0) translateY(44px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about-main {
        flex-direction: column;
        gap: 22px;
    }

    .about-card-icon {
        width: 68px;
        height: 68px;
    }

    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-floating-badges {
        display: none;
    }

    .hero-orb-1 {
        width: 380px;
        height: 380px;
    }

    .hero-orb-2 {
        width: 300px;
        height: 300px;
    }

    .hero-orb-3 {
        width: 220px;
        height: 220px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 36px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
    }

    .hero-product-card img,
    .hero-product-placeholder {
        width: 150px;
        height: 150px;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-stats {
        padding: 24px 32px;
    }

    .product-modal-content {
        flex-direction: column;
        padding: 24px;
    }

    .product-modal-image {
        flex: none;
    }

    .product-modal-image img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 22px 28px;
        gap: 18px;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(24px);
        box-shadow: 0 16px 40px rgba(42, 191, 191, 0.15);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 3.2rem);
    }

    .about-stats {
        grid-template-columns: 1fr;
        padding: 0;
        margin: 36px 0;
    }

    .stat-glass-card:not(:last-child)::after {
        right: 50%;
        bottom: 0;
        top: auto;
        transform: translateX(50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
    }

    .hero-orb-1 {
        width: 270px;
        height: 270px;
    }

    .hero-orb-2 {
        width: 220px;
        height: 220px;
    }

    .hero-orb-3 {
        display: none;
    }

    .products-grid {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-word-letter {
        font-size: 2.4rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

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

    .team-card {
        padding: 30px 20px 26px;
    }

    .team-avatar {
        width: 88px;
        height: 88px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-visual {
        display: none;
    }

    .product-modal {
        padding: 18px;
    }

    .product-modal-image img {
        height: 230px;
    }

    .marketplace-links {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .about-grid,
    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-pillar {
        padding: 26px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .section {
        padding: 76px 0;
    }

    .produk {
        padding: 96px 0;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

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

    .values-word-letter {
        font-size: 1.9rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .team-card {
        padding: 34px 22px 30px;
    }

    .team-avatar {
        width: 96px;
        height: 96px;
    }

    .testimonial-grid {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .product-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 18px;
    }

    .wa-float {
        bottom: 22px;
        right: 22px;
        width: 56px;
        height: 56px;
    }

    .wa-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #eaf6f6;
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Selection */
::selection {
    background: rgba(58, 170, 110, 0.3);
    color: var(--text-primary);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   PRODUCT CARD - HORIZONTAL LAYOUT (v2)
   Image LEFT  |  Info RIGHT
   ============================================ */

/* Override grid to full-width stack */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    min-height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-6px) translateX(0);
    border-color: rgba(58, 170, 110, 0.28);
    box-shadow: 0 20px 64px rgba(58, 170, 110, 0.1), 0 6px 28px rgba(0, 0, 0, 0.4);
}

/* Image: left column, fixed width */
.product-card .product-image {
    flex: 0 0 280px;
    width: 280px;
    height: auto;
    min-height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg-card));
    z-index: 1;
    pointer-events: none;
    transition: background 0.4s ease;
}

.product-card:hover .product-image::after {
    background: linear-gradient(to right, transparent, var(--bg-card-hover));
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-card .product-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--hue, 140), 28%, 7%), hsl(var(--hue, 140), 38%, 13%));
    color: hsl(var(--hue, 140), 45%, 38%);
    transition: var(--transition-slow);
}

/* Product preview icon repositioned for horizontal */
.product-card .product-preview-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    top: auto;
    z-index: 3;
}

/* Badge repositioned */
.product-card .product-badge {
    top: 16px;
    left: 16px;
    right: auto;
    z-index: 4;
}

/* Info: right column, flexible */
.product-card .product-info {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    position: relative;
    z-index: 2;
}

.product-info-top {
    flex: 1;
}

.product-card .product-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.product-card .product-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.product-card .product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 480px;
}

.product-card .product-benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 24px;
    max-height: none;
    overflow: visible;
}

.product-card .product-benefits span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Footer row: cta + cert badges */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.product-card .product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.product-card:hover .product-cta {
    color: var(--accent);
}

.product-card:hover .product-cta svg {
    transform: translateX(5px);
}

.cert-mini {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.cert-bpom {
    background: rgba(52, 211, 153, 0.08);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.16);
}

.cert-halal {
    background: rgba(167, 139, 250, 0.08);
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.16);
}

.product-cert-icons {
    display: flex;
    gap: 6px;
}

/* Alternating slight tint on every other card */
.product-card:nth-child(even) {
    background: var(--bg-elevated);
}

/* Accent line on left edge */
.product-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transform: scaleY(0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

/* ============================================
   RESPONSIVE - PRODUCT HORIZONTAL
   ============================================ */
@media (max-width: 768px) {
    .products-grid {
        max-width: 100%;
    }

    .product-card {
        flex-direction: column;
        min-height: auto;
    }

    .product-card .product-image {
        flex: none;
        width: 100%;
        height: 220px;
        min-height: 220px;
    }

    .product-card .product-image::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom, transparent, var(--bg-card));
    }

    .product-card:hover .product-image::after {
        background: linear-gradient(to bottom, transparent, var(--bg-card-hover));
    }

    .product-card .product-info {
        padding: 22px 24px;
    }

    .product-card .product-badge {
        top: 14px;
        left: 14px;
    }

    .product-card .product-benefits {
        flex-direction: column;
        gap: 6px;
    }

    .product-card .product-name {
        font-size: 1.2rem;
    }

    .product-footer {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .product-card .product-info {
        padding: 18px 20px;
    }
}

/* ============================================
   FIX: NILAI section — ensure no typo in CSS
   (nilai title typo was visual, dari data DB)
   ============================================ */
.nilai .section-title {
    /* Clean render guarantee */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Better values-word display */
.values-word {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.values-word-letter {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    line-height: 1;
    padding: 0 4px;
    position: relative;
}

.values-word-letter:hover {
    transform: translateY(-10px) scale(1.22);
    filter: drop-shadow(0 8px 24px rgba(200, 168, 75, 0.5));
}

/* Each letter has a subtle underline when hovered */
.values-word-letter::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.values-word-letter:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* ============================================
   NILAI SECTION — Premium Redesign
   ============================================ */

.nilai {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.nilai::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 94, 58, 0.12), transparent),
        radial-gradient(ellipse 50% 50% at 80% 100%, rgba(200, 168, 75, 0.06), transparent);
    pointer-events: none;
}

/* DOYANDUIT word banner — bigger, spaced, dramatic */
.values-word {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 56px;
    flex-wrap: nowrap;
    position: relative;
}

/* Decorative lines flanking the word */
.values-word::before,
.values-word::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 168, 75, 0.25));
}

.values-word::after {
    background: linear-gradient(to left, transparent, rgba(200, 168, 75, 0.25));
}

.values-word-letter {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    line-height: 1;
    padding: 0 5px;
    position: relative;
    letter-spacing: 0.12em;
}

.values-word-letter::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.3s ease;
    opacity: 0.5;
    filter: blur(0.5px);
}

.values-word-letter:hover {
    transform: translateY(-10px) scale(1.2);
    filter: brightness(1.3) drop-shadow(0 8px 20px rgba(200, 168, 75, 0.5));
}

.values-word-letter:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Grid: 3 columns, clean spacing */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.value-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Glow spot on hover */
.value-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Subtle top border on hover */
.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0 0 4px 4px;
}

.value-card:hover {
    border-color: rgba(200, 168, 75, 0.22);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.032);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22), 0 0 28px rgba(200, 168, 75, 0.05);
}

.value-card:hover::before {
    opacity: 0.6;
}

.value-card:hover::after {
    opacity: 1;
}

/* Letter badge */
.value-letter {
    width: 52px;
    height: 52px;
    margin: 0 auto 4px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    /* color from inline style --accent */
    background: linear-gradient(135deg, var(--accent, var(--primary)), color-mix(in srgb, var(--accent, var(--primary)) 70%, white));
}

.value-card:hover .value-letter {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
    margin: 0;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Responsive nilai */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-word::before,
    .values-word::after {
        max-width: 60px;
    }
}

@media (max-width: 560px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .values-word-letter {
        font-size: 2.1rem;
        padding: 0 3px;
    }

    .value-card {
        padding: 24px 18px;
    }

    .value-letter {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}


/* ============================================
   PRODUCT CARD — FIXED HEIGHT & CLAMPED TEXT
   Agar semua card tingginya konsisten
   ============================================ */

/* Semua card sama tinggi dalam satu baris */
.products-grid {
    align-items: stretch;
}

.product-card {
    min-height: 220px;
    max-height: 260px;
    /* cap card height */
}

/* Gambar kiri: full height mengikuti card */
.product-card .product-image {
    flex: 0 0 240px;
    width: 240px;
    min-height: unset;
    height: 100%;
    align-self: stretch;
}

.product-card .product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-card .product-img-placeholder {
    height: 100%;
    min-height: unset;
}

/* Info area: strict height management */
.product-card .product-info {
    padding: 22px 28px;
    overflow: hidden;
    gap: 0;
}

.product-info-top {
    flex: none;
}

/* Tags row */
.product-card .product-tags {
    margin-bottom: 8px;
}

/* Nama produk: max 1 baris */
.product-card .product-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Deskripsi: CLAMP 2 baris saja */
.product-card .product-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

/* Benefits: satu baris horizontal, overflow hidden */
.product-card .product-benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* NO wrap — satu baris */
    gap: 0 16px;
    margin-bottom: 0;
    overflow: hidden;
    max-height: 22px;
    /* 1 line only */
    mask-image: linear-gradient(to right, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
}

.product-card .product-benefits span {
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer: pinned to bottom */
.product-footer {
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

/* Cert icons di footer — sembunyikan di card, sudah ada tags di atas */
.product-cert-icons {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        max-height: none;
    }

    .product-card .product-image {
        flex: none;
        width: 100%;
        height: 200px;
    }

    .product-card .product-name {
        white-space: normal;
        font-size: 1.1rem;
    }

    .product-card .product-desc {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .product-card .product-benefits {
        flex-wrap: wrap;
        max-height: 44px;
        overflow: hidden;
    }
}


/* ============================================
   SELECT DROPDOWN — Dark Theme Fix
   ============================================ */

.form-group select {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    color-scheme: dark;
}

.form-group select option {
    background-color: #0e1510;
    color: var(--text-primary);
}

.form-group select option:checked,
.form-group select option:hover,
.form-group select option:focus {
    background-color: #1a2e1c;
    color: var(--primary-light);
}

/* Placeholder option (value="") */
.form-group select option[value=""] {
    color: var(--text-muted);
}


/* Fix highlight biru browser jadi hijau */
.form-group select option:checked {
    background: linear-gradient(var(--primary), var(--primary));
    background-color: var(--primary) !important;
    color: white !important;
}


/* ============================================
   CUSTOM SELECT DROPDOWN — Full Dark Control
   ============================================ */

/* Remove old native select overrides */
.form-group select {
    display: none !important;
}

.custom-select {
    position: relative;
    width: 100%;
    font-family: var(--font-main);
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.94rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus {
    border-color: var(--border-hover);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--primary-light);
    background: rgba(58, 170, 110, 0.04);
    box-shadow: 0 0 0 3px rgba(58, 170, 110, 0.15);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.custom-select.has-value .custom-select-trigger {
    color: var(--text-primary);
}

.custom-select-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--primary-light);
}

/* Dropdown list */
.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--primary-light);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    list-style: none;
    z-index: 999;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.custom-select.open .custom-select-dropdown {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.custom-select-option {
    padding: 13px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option.placeholder {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.88rem;
}

.custom-select-option:hover {
    background: rgba(58, 170, 110, 0.08);
    color: var(--text-primary);
    padding-left: 26px;
}

.custom-select-option.selected {
    background: rgba(58, 170, 110, 0.1);
    color: var(--primary-light);
    font-weight: 600;
}

.custom-select-option.selected::after {
    content: '✓';
    float: right;
    color: var(--primary-light);
    font-size: 0.85rem;
}


/* ============================================
   MOBILE CRITICAL FIXES
   ============================================ */

/* Ensure custom dropdown always works on mobile */
.custom-select-dropdown {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.custom-select-dropdown li {
    list-style: none !important;
    list-style-type: none !important;
}

/* Mobile: make dropdown full-width friendly */
@media (max-width: 768px) {
    .custom-select-trigger {
        padding: 16px 18px;
        font-size: 1rem;
    }

    .custom-select-option {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .custom-select.open .custom-select-dropdown {
        max-height: 280px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Fix: native select completely hidden */
.form-group select,
select#subject-native {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}


/* ============================================
   MOBILE GLOBAL FIXES — Consolidated
   Targeting semua section yang berantakan
   ============================================ */
@media (max-width: 768px) {

    /* === NAVBAR === */
    .navbar {
        padding: 14px 0;
    }

    /* === HERO === */
    .hero {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn {
        padding: 13px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* === SECTIONS === */
    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .container {
        padding: 0 16px;
    }

    /* === ABOUT === */
    .about-stats {
        grid-template-columns: 1fr;
        border-radius: 18px;
        margin: 28px 0;
        padding: 0;
    }

    .stat-glass-card {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .about-card {
        padding: 24px;
    }

    .about-main {
        flex-direction: column;
        gap: 18px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-pillar {
        padding: 24px 20px;
    }

    /* === PRODUK === */
    .produk {
        padding: 72px 0;
    }

    .product-filter {
        gap: 8px;
        margin-bottom: 36px;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 0.82rem;
    }

    /* Product card — vertical on mobile */
    .product-card {
        flex-direction: column;
        max-height: none;
        min-height: auto;
    }

    .product-card .product-image {
        flex: none;
        width: 100%;
        height: 200px;
        min-height: 200px;
    }

    .product-card .product-image::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom, transparent, var(--bg-card));
    }

    .product-card .product-image img {
        height: 100%;
        width: 100%;
    }

    .product-card .product-info {
        padding: 20px;
    }

    .product-card .product-name {
        white-space: normal;
        font-size: 1.15rem;
    }

    .product-card .product-desc {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .product-card .product-benefits {
        flex-wrap: wrap;
        max-height: none;
        -webkit-mask-image: none;
        mask-image: none;
        gap: 4px 12px;
    }

    .product-card .product-badge {
        top: 12px;
        left: 12px;
        right: auto;
    }

    .products-grid {
        max-width: 100%;
        gap: 18px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 24px;
    }

    /* === KEUNGGULAN === */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 26px 22px;
    }

    /* === NILAI === */
    .values-word {
        gap: 2px;
        margin-bottom: 36px;
    }

    .values-word-letter {
        font-size: 2rem;
        padding: 0 3px;
    }

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

    .value-card {
        padding: 22px 16px;
    }

    .value-letter {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    /* === GOALS === */
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .goal-card {
        padding: 28px 22px;
    }

    /* === TIM === */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-card {
        padding: 28px 18px 24px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    /* === TESTIMONIAL === */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    /* === KONTAK === */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    /* Custom select mobile */
    .custom-select-trigger {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .custom-select-option {
        padding: 15px 18px;
        font-size: 0.92rem;
    }

    /* === FOOTER === */
    .footer {
        padding: 48px 0 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
    }

    .footer-links h5 {
        margin-bottom: 12px;
    }

    /* === WA FLOAT === */
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 14px;
    }

    .values-word-letter {
        font-size: 1.7rem;
    }

    .values-grid {
        gap: 10px;
    }

    .value-card {
        padding: 18px 12px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .btn-lg {
        padding: 14px 22px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .about-stats {
        border-radius: 14px;
    }
}


/* ============================================
   TEAL LIGHT THEME — Additional Overrides
   Memastikan semua elemen tampil benar di bg terang
   ============================================ */

/* Body */
body {
    background: #f4fbfb;
    color: #0c2424;
}

/* Navbar brand */
.logo-text {
    color: #0c2424;
}

/* Section backgrounds */
.tentang {
    background: #eaf6f6;
}

.produk {
    background: #f4fbfb;
}

.keunggulan {
    background: #eaf6f6;
}

.nilai {
    background: #f4fbfb;
}

.goals {
    background: #eaf6f6;
}

.tim {
    background: #f4fbfb;
}

.testimonial {
    background: #eaf6f6;
}

.kontak {
    background: #f4fbfb;
}

.footer {
    background: #e0f2f2;
    border-top: 1px solid rgba(42, 191, 191, 0.2);
}

/* Restore section ::after divider */
.section::after {
    background: linear-gradient(90deg, transparent, rgba(42, 191, 191, 0.2), transparent);
}

/* Cards — white with teal shadow */
.about-card,
.about-pillar,
.feature-card,
.goal-card,
.contact-info-card,
.branch-offices {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(42, 191, 191, 0.08);
}

.about-card:hover,
.about-pillar:hover,
.feature-card:hover,
.goal-card:hover {
    background: #f8fdfd;
    box-shadow: 0 12px 40px rgba(42, 191, 191, 0.14);
}

/* Product card */
.product-card {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(42, 191, 191, 0.07);
}

.product-card:hover {
    box-shadow: 0 16px 56px rgba(42, 191, 191, 0.15);
}

.product-card:nth-child(even) {
    background: #fbfefe;
}

/* Product image fade overlay */
.product-card .product-image::after {
    background: linear-gradient(to right, transparent, #ffffff);
}

.product-card:hover .product-image::after {
    background: linear-gradient(to right, transparent, #f8fdfd);
}

/* Form inputs */
.form-group input,
.form-group textarea {
    background: #ffffff;
    color: #0c2424;
    border-color: rgba(42, 191, 191, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7aabab;
}

/* Custom select */
.custom-select-trigger {
    background: #ffffff;
    color: #0c2424;
    border-color: rgba(42, 191, 191, 0.2);
}

.custom-select-value {
    color: #7aabab;
}

.custom-select.has-value .custom-select-value {
    color: #0c2424;
}

.custom-select-dropdown {
    background: #ffffff;
    border-color: #2ABFBF;
}

.custom-select-option {
    color: #3a6868;
    border-bottom-color: rgba(42, 191, 191, 0.08);
}

.custom-select-option:hover {
    background: rgba(42, 191, 191, 0.06);
    color: #0c2424;
}

.custom-select-option.selected {
    background: rgba(42, 191, 191, 0.1);
    color: #1a9494;
}

.custom-select-option.placeholder {
    color: #7aabab;
}

/* Hero section */
.hero {
    background: linear-gradient(160deg, #e8f8f8 0%, #f4fbfb 55%);
}

.hero-grid-pattern {
    opacity: 0.6;
}

/* CTA card */
.cta-card {
    background: linear-gradient(135deg, rgba(42, 191, 191, 0.08), rgba(232, 160, 32, 0.05));
    box-shadow: 0 8px 40px rgba(42, 191, 191, 0.1);
}

/* Team & testimonial cards */
.team-card,
.testimonial-card {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 4px 20px rgba(42, 191, 191, 0.07);
}

.team-card:hover,
.testimonial-card:hover {
    background: #f8fdfd;
    box-shadow: 0 16px 48px rgba(42, 191, 191, 0.13);
}

/* Team avatar border */
.team-avatar {
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, var(--primary), var(--accent));
}

/* Section tags */
.section-tag {
    background: rgba(42, 191, 191, 0.07);
    color: #1a9494;
    border-color: rgba(42, 191, 191, 0.18);
}

/* Nilai word banner */
.nilai::before {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42, 191, 191, 0.1), transparent),
        radial-gradient(ellipse 50% 50% at 80% 100%, rgba(232, 160, 32, 0.06), transparent);
}

.values-word::before {
    background: linear-gradient(to right, transparent, rgba(42, 191, 191, 0.3));
}

.values-word::after {
    background: linear-gradient(to left, transparent, rgba(42, 191, 191, 0.3));
}

/* Value letter badges */
.value-letter {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* Product modal */
.product-modal-content {
    background: rgba(255, 255, 255, 0.99);
    border-color: rgba(42, 191, 191, 0.2);
    color: #0c2424;
}

.product-modal-content::before {
    background: linear-gradient(90deg, transparent, rgba(42, 191, 191, 0.4), rgba(232, 160, 32, 0.3), rgba(42, 191, 191, 0.4), transparent);
}

.product-modal-details h2 {
    color: #0c2424;
}

.product-modal-desc {
    color: #3a6868;
}

.product-modal-benefits span {
    background: rgba(42, 191, 191, 0.07);
    border-color: rgba(42, 191, 191, 0.15);
    color: #1a9494;
}

/* Footer */
.footer-links a {
    color: #3a6868;
}

.footer-links a:hover {
    color: #1a9494;
}

.footer-bottom p {
    color: #7aabab;
}

.cert-badge {
    background: rgba(42, 191, 191, 0.08);
    color: #1a9494;
    border-color: rgba(42, 191, 191, 0.2);
}

.footer-brand p {
    color: #3a6868;
}

/* Scrollbar */
::-webkit-scrollbar-track {
    background: #eaf6f6;
}

::-webkit-scrollbar-thumb {
    background: rgba(42, 191, 191, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #2ABFBF;
}

/* Selection */
::selection {
    background: rgba(42, 191, 191, 0.25);
    color: #0c2424;
}

/* Modal overlay */
.product-modal {
    background: rgba(12, 36, 36, 0.85);
}

.product-modal-close {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(42, 191, 191, 0.2);
    color: #0c2424;
}

.product-modal-close:hover {
    background: #ffffff;
}

/* Branch tags */
.branch-tags span {
    background: rgba(42, 191, 191, 0.05);
    color: #3a6868;
}

.branch-tags span:hover {
    border-color: #2ABFBF;
    color: #0c2424;
    background: rgba(42, 191, 191, 0.1);
}

/* Goal progress bar */
.goal-progress {
    background: rgba(42, 191, 191, 0.1);
}

/* Testimonial author border */
.testimonial-author {
    border-top-color: rgba(42, 191, 191, 0.12);
}

.testimonial-avatar {
    background: linear-gradient(135deg, rgba(42, 191, 191, 0.15), rgba(232, 160, 32, 0.1));
    border-color: rgba(42, 191, 191, 0.2);
    color: #1a9494;
}

/* Floating badges */
.floating-badge {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(42, 191, 191, 0.25);
    color: #1a9494;
    box-shadow: 0 8px 32px rgba(42, 191, 191, 0.15);
}

/* Nav mobile dropdown */
.nav-links {
    background: rgba(255, 255, 255, 0.99);
}

.nav-links a {
    color: #3a6868;
}

.nav-links a:hover {
    color: #1a9494;
}

/* BPOM/Halal tags — slightly adjusted for light bg */
.tag-bpom {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.tag-halal {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.18);
}

/* Feature icon */
.feature-icon {
    background: rgba(42, 191, 191, 0.08);
    border-color: rgba(42, 191, 191, 0.15);
}

.feature-card:hover .feature-icon {
    background: rgba(42, 191, 191, 0.14);
    border-color: rgba(42, 191, 191, 0.28);
}

/* About pillar icon */
.about-pillar-icon,
.about-card-icon {
    background: rgba(42, 191, 191, 0.08);
    border-color: rgba(42, 191, 191, 0.15);
}

/* Info icon contact */
.info-icon {
    background: rgba(42, 191, 191, 0.07);
    border-color: rgba(42, 191, 191, 0.15);
}

.info-item:hover .info-icon {
    background: rgba(42, 191, 191, 0.14);
    box-shadow: 0 4px 16px rgba(42, 191, 191, 0.18);
}

/* Stat glass hover */
.stat-glass-card:hover {
    background: rgba(42, 191, 191, 0.06);
}

/* WA float unchanged — green is correct for WhatsApp */


/* ── NAVBAR TEAL LIGHT FIX ── */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(42, 191, 191, 0.15);
    box-shadow: 0 2px 16px rgba(42, 191, 191, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(42, 191, 191, 0.2);
    box-shadow: 0 4px 24px rgba(42, 191, 191, 0.12);
}

.nav-links a {
    color: #3a6868;
}

.nav-links a:hover {
    color: #1a9494;
}


/* ── GOAL NUMBER FIX — teal light ── */
.goal-number {
    color: rgba(42, 191, 191, 0.35);
    font-weight: 700;
}

.goal-card:hover .goal-number {
    color: rgba(42, 191, 191, 0.55);
}


/* ========================================
   COMPANY POSTS / BLOG SECTION
   ======================================== */

.company-posts {
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.company-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

/* Posts Grid */
.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Post Card — Base */
.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.post-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.post-card:hover::before {
    opacity: 1;
}

/* Featured Post glow */
.post-card-featured {
    border-color: rgba(232, 160, 32, 0.2);
    box-shadow: var(--shadow-sm), 0 0 30px rgba(232, 160, 32, 0.06);
}

.post-card-featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
    background-size: 200% auto;
    animation: gradientShift 6s ease-in-out infinite;
}

/* Post Card WITH Image — 2-column layout */
.post-card-with-image {
    display: grid;
    grid-template-columns: 380px 1fr;
}

.post-card-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 148, 148, 0.1), transparent 60%);
    pointer-events: none;
}

/* Post Card Body */
.post-card-body {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
}

.post-card-full .post-card-body {
    padding: 52px 60px;
    max-width: 100%;
}

/* Post Meta */
.post-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.post-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.post-type-pesan {
    background: rgba(42, 191, 191, 0.1);
    color: var(--primary);
    border: 1px solid rgba(42, 191, 191, 0.2);
}

.post-type-berita {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.post-type-pengumuman {
    background: rgba(232, 160, 32, 0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(232, 160, 32, 0.2);
}

.post-type-artikel {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.post-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Post Title */
.post-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Post Content */
.post-card-content {
    flex: 1;
    margin-bottom: 28px;
}

.post-content-preview {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* Hide preview text when details is opened */
.post-full-content[open]~.post-content-preview,
.post-card-content:has(.post-full-content[open]) .post-content-preview {
    display: none;
}

.post-content-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: justify;
}

/* Expandable content */
.post-full-content summary {
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    padding: 10px 0;
    transition: color 0.3s ease;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-full-content summary::-webkit-details-marker {
    display: none;
}

.post-full-content summary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.post-full-content[open] summary {
    display: none;
}

.post-full-content summary:hover {
    color: var(--primary-dark);
}

.post-full-content .post-content-text {
    padding-top: 12px;
    animation: fadeInUp 0.4s ease;
}

/* Hide preview when full content is open */
.post-full-content[open]+.post-content-preview {
    display: none;
}

/* Post Author */
.post-card-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.post-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.post-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-author-avatar span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.post-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-author-info strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.post-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* === COMPANY POSTS RESPONSIVE === */
@media (max-width: 900px) {
    .post-card-with-image {
        grid-template-columns: 1fr;
    }

    .post-card-image {
        min-height: 220px;
        max-height: 280px;
    }

    .post-card-body {
        padding: 28px 28px;
    }

    .post-card-full .post-card-body {
        padding: 32px 28px;
    }
}

@media (max-width: 600px) {
    .post-card-body {
        padding: 24px 20px;
    }

    .post-card-full .post-card-body {
        padding: 28px 20px;
    }

    .post-card-image {
        min-height: 180px;
        max-height: 220px;
    }

    .post-card-title {
        font-size: 1.3rem;
    }

    .post-card-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .post-author-avatar {
        width: 44px;
        height: 44px;
    }
}