/* ========================================
   DELLAMORE COMPANY PROFILE - STYLESHEET
   PT Doyan Duit Digdoyo
   ======================================== */

/* === CSS VARIABLES === */
:root {
    --primary: #1a5c3a;
    --primary-light: #2d8f5e;
    --primary-dark: #0f3d26;
    --primary-glow: rgba(45, 143, 94, 0.3);
    --accent: #c9a84c;
    --accent-light: #e0c36e;
    --accent-dark: #a68a32;

    --bg-dark: #0a0f0d;
    --bg-card: #111916;
    --bg-card-hover: #162017;
    --bg-section-alt: #080c0a;

    --text-primary: #f0f4f1;
    --text-secondary: #9cafa3;
    --text-muted: #5e7367;

    --border: rgba(45, 143, 94, 0.12);
    --border-hover: rgba(45, 143, 94, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 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;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === UTILITY === */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    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(-10px);
    }
}

@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;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: var(--progress);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    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: 16px 0;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 15, 13, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.logo-text {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
    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: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* === 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% 60% at 50% 0%, rgba(26, 92, 58, 0.25), transparent),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(201, 168, 76, 0.12), transparent),
        radial-gradient(ellipse 40% 40% at 10% 50%, rgba(45, 143, 94, 0.08), transparent);
    pointer-events: none;
}

/* --- Animated Gradient Orbs --- */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 143, 94, 0.6), rgba(26, 92, 58, 0.1));
    top: -10%;
    right: -5%;
    animation-duration: 18s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.5), rgba(166, 138, 50, 0.05));
    bottom: -5%;
    left: -8%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 143, 94, 0.4), rgba(16, 185, 129, 0.05));
    top: 40%;
    left: 50%;
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 30px) scale(1.05);
    }
}

/* --- Grid Pattern Overlay --- */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 143, 94, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 143, 94, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
}

/* --- Particles --- */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* --- Floating Certification Badges --- */
.hero-floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(17, 25, 22, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(45, 143, 94, 0.2);
    border-radius: 14px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: floatBadge 6s ease-in-out infinite;
    pointer-events: auto;
}

.floating-badge svg {
    flex-shrink: 0;
}

.fb-1 {
    top: 28%;
    right: 8%;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 28%;
    right: 14%;
    animation-delay: -3s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* --- Hero Layout --- */
.hero-inner {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 4;
    flex: 1;
    max-width: 620px;
}

/* --- Hero Product Showcase --- */
.hero-visual {
    flex: 0 0 380px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}

.hero-product-float {
    animation: heroFloat 6s 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) - 18px));
    }
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 16px;
    backdrop-filter: blur(16px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-product-card:hover {
    border-color: rgba(45, 143, 94, 0.3);
    box-shadow: 0 12px 48px rgba(45, 143, 94, 0.15);
    transform: translateY(-4px);
}

.hero-product-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

.hero-product-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(45, 143, 94, 0.1), rgba(45, 143, 94, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.hero-product-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.hero-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 143, 94, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

/* --- Badge with Shimmer --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(45, 143, 94, 0.1);
    border: 1px solid rgba(45, 143, 94, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 8px rgba(45, 143, 94, 0.5);
}

.badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: badgeShimmer 4s ease-in-out infinite;
}

@keyframes badgeShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* --- Hero Title with Glow --- */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: inline;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightShift 6s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(45, 143, 94, 0.3));
}

@keyframes highlightShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* --- Glow CTA Button --- */
.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(12px);
}

.btn-hero-glow:hover::before {
    opacity: 1;
}

/* --- Glassmorphic Stats --- */
.hero-stats-glass {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: rgba(17, 25, 22, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(45, 143, 94, 0.15);
    border-radius: 20px;
    padding: 8px;
    max-width: 560px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.stat-glass-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border-radius: 14px;
    transition: var(--transition);
}

.stat-glass-card:hover {
    background: rgba(45, 143, 94, 0.08);
}

.stat-glass-divider {
    width: 1px;
    background: rgba(45, 143, 94, 0.12);
    margin: 10px 0;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-align: center;
}

/* --- Bottom Fade --- */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 5;
}

/* Scroll Indicator */
.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 1s forwards;
    opacity: 0;
    z-index: 6;
}

.scroll-line {
    width: 2px;
    height: 40px;
    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: var(--primary-light);
    animation: scrollLine 2s ease infinite;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(45, 143, 94, 0.08);
    border-color: var(--primary-light);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll Indicator */
.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 1s forwards;
    opacity: 0;
}

.scroll-line {
    width: 2px;
    height: 40px;
    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: var(--primary-light);
    animation: scrollLine 2s ease infinite;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-light);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(45, 143, 94, 0.08);
    border: 1px solid rgba(45, 143, 94, 0.15);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === TENTANG === */
.tentang {
    background: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.about-card {
    padding: 36px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.about-main {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.about-card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 143, 94, 0.1), rgba(45, 143, 94, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.about-main h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.about-main p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-main p:last-child {
    margin-bottom: 0;
}

/* Visi / Misi / Legalitas - 3 equal pillars */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-pillar {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.about-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 143, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-pillar:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 143, 94, 0.1);
}

.about-pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(45, 143, 94, 0.15), rgba(45, 143, 94, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
}

.about-pillar h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
}

.about-pillar p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
}

/* === PRODUK (Main Focus) === */
.produk {
    background: var(--bg-dark);
    padding: 120px 0;
}

.product-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge-new {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            hsl(var(--hue, 140), 30%, 8%),
            hsl(var(--hue, 140), 40%, 14%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--hue, 140), 50%, 40%);
    transition: var(--transition-slow);
}

.product-card:hover .product-img-placeholder {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
}

.product-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.tag {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-bpom {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag-halal {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    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: 20px;
    max-height: 140px;
    overflow: hidden;
}

.product-benefits span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.product-benefits span::first-letter {
    color: var(--primary-light);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition);
}

.product-cta:hover {
    gap: 12px;
    color: var(--accent);
}

/* Product CTA Section */
.product-cta-section {
    margin-top: 20px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(26, 92, 58, 0.15), rgba(201, 168, 76, 0.08));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-secondary);
    max-width: 500px;
}

/* === KEUNGGULAN === */
.keunggulan {
    background: var(--bg-section-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, var(--primary-light)), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(45, 143, 94, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, var(--primary-light));
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === NILAI === */
.nilai {
    background: var(--bg-dark);
}

/* Word Banner */
.values-word {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
}

.values-word-letter {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, var(--accent, var(--primary-light)), rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
    cursor: default;
    line-height: 1;
}

.values-word-letter:hover {
    transform: translateY(-6px) scale(1.15);
    filter: drop-shadow(0 4px 16px var(--accent));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.35s cubic-bezier(.4, 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%, var(--accent), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    border-color: var(--accent, var(--primary-light));
    transform: translateY(-4px);
}

.value-card:hover::before {
    opacity: 0.06;
}

.value-letter {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--accent, var(--primary)), rgba(45, 143, 94, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
}

.value-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    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: 36px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.goal-card:hover {
    border-color: var(--border-hover);
}

.goal-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(45, 143, 94, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}

.goal-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.goal-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.goal-progress {
    height: 6px;
    background: rgba(45, 143, 94, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar.animated {
    width: var(--progress);
}

/* === KONTAK === */
.kontak {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.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='%239cafa3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(45, 143, 94, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.branch-offices {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.branch-offices h5 {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.branch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.branch-tags span {
    padding: 6px 14px;
    background: rgba(45, 143, 94, 0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.branch-tags span:hover {
    border-color: var(--primary-light);
    color: var(--text-primary);
}

/* === FOOTER === */
.footer {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-certifications {
    display: flex;
    gap: 12px;
}

.cert-badge {
    padding: 6px 14px;
    background: rgba(45, 143, 94, 0.08);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-light);
}

/* === PRODUCT PREVIEW ICON === */
.product-preview-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(10, 15, 13, 0.6);
    backdrop-filter: blur(8px);
    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.8);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-preview-icon {
    opacity: 1;
    transform: scale(1);
}

.product-card {
    cursor: pointer;
}

.product-image {
    position: relative;
}

/* === PRODUCT PREVIEW MODAL === */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.product-modal-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.product-modal-content {
    display: flex;
    gap: 40px;
    max-width: 960px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: rgba(17, 25, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.product-modal-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.product-modal-badges span {
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.product-modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-modal-details h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-modal-certs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-modal-certs .tag {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-modal-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(45, 143, 94, 0.08);
    border: 1px solid rgba(45, 143, 94, 0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    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: 12px;
}

.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 20px rgba(0, 0, 0, 0.3);
}

.marketplace-link.mp-shopee {
    background: rgba(238, 77, 45, 0.12);
    border-color: rgba(238, 77, 45, 0.25);
    color: #ee4d2d;
}

.marketplace-link.mp-shopee:hover {
    background: rgba(238, 77, 45, 0.2);
}

.marketplace-link.mp-tokopedia {
    background: rgba(66, 181, 73, 0.12);
    border-color: rgba(66, 181, 73, 0.25);
    color: #42b549;
}

.marketplace-link.mp-tokopedia:hover {
    background: rgba(66, 181, 73, 0.2);
}

.marketplace-link.mp-blibli {
    background: rgba(0, 114, 240, 0.12);
    border-color: rgba(0, 114, 240, 0.25);
    color: #0072f0;
}

.marketplace-link.mp-blibli:hover {
    background: rgba(0, 114, 240, 0.2);
}

.marketplace-link.mp-lazada {
    background: rgba(15, 15, 110, 0.15);
    border-color: rgba(15, 15, 110, 0.3);
    color: #787dff;
}

.marketplace-link.mp-lazada:hover {
    background: rgba(15, 15, 110, 0.25);
}

.marketplace-link.mp-bukalapak {
    background: rgba(226, 34, 97, 0.12);
    border-color: rgba(226, 34, 97, 0.25);
    color: #e22261;
}

.marketplace-link.mp-bukalapak:hover {
    background: rgba(226, 34, 97, 0.2);
}

.product-modal-contact {
    margin-top: auto;
    width: fit-content;
}

/* === TIM MANAJEMEN === */
.tim {
    background: var(--bg-dark);
    overflow: hidden;
}

.tim .section-header {
    margin-bottom: 56px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    padding: 36px 24px 32px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.45s 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: 3px;
    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: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(45, 143, 94, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card:hover {
    border-color: rgba(45, 143, 94, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 143, 94, 0.08);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px 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.4s ease;
    position: relative;
    z-index: 1;
}

.team-card:hover .team-avatar {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(45, 143, 94, 0.25);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-initials {
    font-size: 1.4rem;
    font-weight: 800;
    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-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.team-position {
    font-size: 0.78rem;
    color: var(--primary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* === TESTIMONIAL === */
.testimonial {
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 143, 94, 0.06), transparent 70%);
    pointer-events: none;
}

.testimonial::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05), 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: 36px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.45s 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: 24px;
    background: radial-gradient(circle at 50% 100%, rgba(45, 143, 94, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(45, 143, 94, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(45, 143, 94, 0.06);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--primary-light);
    opacity: 0.2;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-quote {
    opacity: 0.4;
    transform: scale(1.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.3));
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
    min-height: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-photo {
    margin-bottom: 24px;
    height: 200px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-photo:hover {
    border-color: rgba(45, 143, 94, 0.3);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.testimonial-photo:hover img {
    transform: scale(1.05);
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 143, 94, 0.2), rgba(201, 168, 76, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-light);
    font-size: 1rem;
    flex-shrink: 0;
    border: 2px solid rgba(45, 143, 94, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: rgba(45, 143, 94, 0.4);
    box-shadow: 0 4px 16px rgba(45, 143, 94, 0.15);
}

.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;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about-main {
        flex-direction: column;
    }

    .hero-floating-badges {
        display: none;
    }

    .hero-orb-1 {
        width: 350px;
        height: 350px;
    }

    .hero-orb-2 {
        width: 280px;
        height: 280px;
    }

    .hero-orb-3 {
        width: 200px;
        height: 200px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 30px;
    }

    .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: 140px;
        height: 140px;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-glass {
        justify-content: center;
    }

    .product-modal-content {
        flex-direction: column;
        padding: 20px;
    }

    .product-modal-image {
        flex: none;
    }

    .product-modal-image img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 13, 0.98);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats-glass {
        flex-direction: column;
        max-width: 100%;
        border-radius: 16px;
    }

    .stat-glass-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .hero-orb-1 {
        width: 250px;
        height: 250px;
    }

    .hero-orb-2 {
        width: 200px;
        height: 200px;
    }

    .hero-orb-3 {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-word-letter {
        font-size: 2.2rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-card {
        padding: 28px 18px 24px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card {
        padding: 28px;
    }

    .hero-visual {
        display: none;
    }

    .product-modal {
        padding: 16px;
    }

    .product-modal-image img {
        height: 220px;
    }

    .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: 36px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .section {
        padding: 70px 0;
    }

    .produk {
        padding: 90px 0;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-word-letter {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .team-card {
        padding: 32px 20px 28px;
    }

    .team-avatar {
        width: 88px;
        height: 88px;
    }

    .testimonial-grid {
        max-width: 100%;
    }

    .product-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* === Product Filter Animation === */
.product-card.hidden {
    display: none;
}

.product-card.showing {
    animation: fadeInUp 0.5s ease forwards;
}

/* === FLOATING WHATSAPP BUTTON === */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    animation: waFloat 0.6s cubic-bezier(.34, 1.56, .64, 1) both;
    animation-delay: 1s;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    width: auto;
    padding: 0 20px 0 18px;
    gap: 10px;
}

.wa-float svg {
    flex-shrink: 0;
}

.wa-float-label {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s cubic-bezier(.4, 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.35);
    animation: waPulse 2s 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.35);
        opacity: 0;
    }
}

@keyframes waFloat {
    from {
        transform: scale(0) translateY(40px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .wa-float svg {
        width: 24px;
        height: 24px;
    }
}