/* ============================================
   BuahTok — Main Stylesheet
   Design: Fresh, tropical, warm & trustworthy
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green-800: #14532d;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-100: #dcfce7;
    --green-50:  #f0fdf4;

    --orange-500: #f97316;
    --yellow-500: #eab308;

    --neutral-900: #111827;
    --neutral-700: #374151;
    --neutral-500: #6b7280;
    --neutral-200: #e5e7eb;
    --neutral-100: #f3f4f6;
    --neutral-50:  #fafafa;
    --white:       #ffffff;

    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-serif: 'Lora', Georgia, serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

    --transition: 200ms ease;
    --navbar-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--neutral-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn--lg { padding: .85rem 2rem; font-size: 1rem; }
.btn--sm { padding: .4rem 1rem; font-size: .85rem; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--green-600);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--green-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, .35);
}
.btn--outline {
    background: transparent;
    color: var(--green-600);
    border-color: var(--green-600);
}
.btn--outline:hover {
    background: var(--green-50);
    transform: translateY(-1px);
}
.btn--whatsapp {
    background: #25d366;
    color: var(--white);
}
.btn--whatsapp:hover {
    background: #1ebe59;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
}
.btn--white {
    background: var(--white);
    color: var(--green-800);
    font-weight: 700;
}
.btn--white:hover {
    background: var(--neutral-100);
    transform: translateY(-1px);
}

/* ---------- Badges ---------- */
.badge { display: inline-flex; align-items: center; gap: .3rem; padding: .2rem .65rem; border-radius: var(--radius-full); font-size: .78rem; font-weight: 600; }
.badge--habis { background: var(--neutral-200); color: var(--neutral-500); }
.badge--dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

/* ---------- Flash Message ---------- */
.flash-success {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--green-100); color: var(--green-800);
    padding: .75rem var(--navbar-h);
    font-weight: 500; font-size: .9rem;
}
.flash-success button {
    background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--green-800);
    line-height: 1;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky; top: 0; z-index: 100;
    height: var(--navbar-h);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.navbar__logo {
    display: flex; align-items: center; gap: .5rem;
    font-size: 1.25rem; font-weight: 700; color: var(--neutral-900);
    flex-shrink: 0;
}
.navbar__logo-icon { font-size: 1.5rem; }
.navbar__logo-text strong { color: var(--green-600); }

.navbar__nav {
    display: flex; align-items: center; gap: .25rem;
    flex: 1; justify-content: flex-end;
}
.navbar__link {
    padding: .45rem .85rem; border-radius: var(--radius-full);
    font-size: .9rem; font-weight: 500; color: var(--neutral-700);
    transition: all var(--transition);
}
.navbar__link:hover, .navbar__link--active {
    background: var(--green-50); color: var(--green-600);
}
.navbar__link--active { font-weight: 600; }

.navbar__burger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: .5rem;
    border-radius: var(--radius-sm);
}
.navbar__burger span {
    display: block; width: 22px; height: 2px;
    background: var(--neutral-700); border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-header {
    text-align: center; margin-bottom: 3rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600; line-height: 1.25;
    margin-bottom: .75rem; color: var(--neutral-900);
}
.section-desc {
    color: var(--neutral-500); font-size: 1.05rem; max-width: 520px; margin-inline: auto;
}
.section-cta {
    text-align: center; margin-top: 3rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #fef9c3 100%);
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero__shape {
    position: absolute; border-radius: 50%;
    opacity: .4; filter: blur(40px);
}
.hero__shape--1 { width: 400px; height: 400px; top: -100px; right: -100px; background: rgba(34,197,94,.3); }
.hero__shape--2 { width: 300px; height: 300px; bottom: -80px; left: 10%; background: rgba(234,179,8,.3); }
.hero__shape--3 { width: 200px; height: 200px; top: 30%; left: -60px; background: rgba(249,115,22,.2); }

.hero__container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}

.hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--white); color: var(--green-600);
    border: 1px solid var(--green-100);
    padding: .35rem .9rem; border-radius: var(--radius-full);
    font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15; font-weight: 600;
    color: var(--neutral-900); margin-bottom: 1.25rem;
}
.hero__title em {
    font-style: normal; color: var(--green-600);
}

.hero__desc {
    color: var(--neutral-700); font-size: 1.05rem;
    max-width: 480px; line-height: 1.7; margin-bottom: 2rem;
}

.hero__actions {
    display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem;
}

.hero__stats {
    display: flex; gap: 2rem;
}
.hero__stat {
    display: flex; flex-direction: column;
}
.hero__stat-num {
    font-size: 1.5rem; font-weight: 800; color: var(--green-600);
    line-height: 1;
}
.hero__stat-label {
    font-size: .8rem; color: var(--neutral-500); font-weight: 500;
    margin-top: .15rem;
}

.hero__visual {
    display: flex; align-items: center; justify-content: center;
}
.hero__fruit-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; width: 100%; max-width: 380px;
}
.hero__fruit-item {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-size: 2.2rem;
    transition: transform 300ms ease;
    border: 2px solid transparent;
    border-color: color-mix(in srgb, var(--c) 20%, transparent);
    animation: floatIn 400ms ease calc(var(--i) * 60ms) both;
}
.hero__fruit-item:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: var(--shadow-lg);
}

@keyframes floatIn {
    from { opacity: 0; transform: scale(.7) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================
   KEUNGGULAN
   ============================================ */
.keunggulan {
    padding: 5rem 0;
    background: var(--white);
}
.keunggulan__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.keunggulan__item {
    text-align: center; padding: 2rem 1.5rem;
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}
.keunggulan__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.keunggulan__icon {
    font-size: 2.5rem; margin-bottom: 1rem; display: block;
}
.keunggulan__item h3 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem;
    color: var(--neutral-900);
}
.keunggulan__item p {
    color: var(--neutral-500); font-size: .9rem; line-height: 1.65;
}

/* ============================================
   PRODUK GRID & CARDS
   ============================================ */
.produk-section {
    padding: 5rem 0;
    background: var(--neutral-50);
}
.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.produk-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.produk-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.produk-card__emoji-wrap {
    position: relative;
    background: color-mix(in srgb, var(--accent, #22c55e) 12%, #fff);
    padding: 2.5rem 1rem;
    display: flex; align-items: center; justify-content: center;
}
.produk-card__emoji { font-size: 4rem; line-height: 1; display: block; }

.produk-card__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.55); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; letter-spacing: .05em;
    border-radius: 0;
}

.produk-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex; flex-direction: column; gap: .5rem; flex: 1;
}
.produk-card__kategori {
    font-size: .75rem; font-weight: 700; letter-spacing: .08em;
    color: var(--accent, var(--green-600));
    text-transform: uppercase;
}
.produk-card__nama {
    font-size: 1.05rem; font-weight: 700; color: var(--neutral-900);
    line-height: 1.3;
}
.produk-card__desc {
    font-size: .88rem; color: var(--neutral-500); line-height: 1.6; flex: 1;
}
.produk-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: .5rem; margin-top: .75rem;
}
.produk-card__harga {
    display: flex; align-items: baseline; gap: .15rem;
}
.produk-card__currency {
    font-size: .8rem; font-weight: 600; color: var(--neutral-500);
}
.produk-card__price {
    font-size: 1.2rem; font-weight: 800; color: var(--neutral-900);
}
.produk-card__satuan {
    font-size: .78rem; color: var(--neutral-500);
}

/* ---------- Filter Bar ---------- */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem;
}
.filter-btn {
    padding: .4rem 1.1rem;
    border-radius: var(--radius-full);
    background: var(--white); color: var(--neutral-700);
    border: 1.5px solid var(--neutral-200);
    font-size: .88rem; font-weight: 600;
    cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.filter-btn:hover { border-color: var(--green-600); color: var(--green-600); }
.filter-btn--active {
    background: var(--green-600); color: var(--white); border-color: var(--green-600);
}

/* ---------- Empty State ---------- */
.empty-state {
    text-align: center; padding: 4rem 2rem;
}
.empty-state__icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 1.5rem; color: var(--neutral-500); }

/* ============================================
   CARA PESAN
   ============================================ */
.cara-pesan {
    padding: 5rem 0;
    background: var(--white);
}
.cara-pesan__steps {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap;
}
.cara-pesan__step {
    display: flex; align-items: flex-start; gap: 1rem;
    max-width: 240px;
}
.cara-pesan__num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green-600); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800; flex-shrink: 0;
}
.cara-pesan__content h3 {
    font-size: 1rem; font-weight: 700; margin-bottom: .35rem;
}
.cara-pesan__content p {
    font-size: .88rem; color: var(--neutral-500); line-height: 1.6;
}
.cara-pesan__arrow {
    font-size: 2rem; color: var(--neutral-200); flex-shrink: 0;
    line-height: 1; margin-top: .5rem;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fef9c3 100%);
}
.form-card {
    background: var(--white); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.form-card__text {
    padding: 3rem;
    background: var(--green-600); color: var(--white);
}
.form-card__text h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem;
    line-height: 1.3;
}
.form-card__text p {
    opacity: .9; line-height: 1.7; margin-bottom: 1.5rem; font-size: .95rem;
}
.form-card__perks { display: flex; flex-direction: column; gap: .5rem; }
.form-card__perks li { font-size: .9rem; opacity: .9; }

.form-card__form {
    padding: 3rem;
    display: flex; flex-direction: column; gap: 1.25rem;
}

.form-group {
    display: flex; flex-direction: column; gap: .4rem;
}
.form-group label {
    font-size: .85rem; font-weight: 600; color: var(--neutral-700);
}
.form-group input,
.form-group textarea {
    padding: .65rem 1rem;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-size: .95rem; color: var(--neutral-900);
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.form-error { font-size: .8rem; color: #dc2626; font-weight: 500; }

/* ============================================
   TESTIMONI
   ============================================ */
.testimoni {
    padding: 5rem 0;
    background: var(--neutral-50);
}
.testimoni__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimoni__card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 1.75rem; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: .75rem;
}
.testimoni__stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: .05em; }
.testimoni__card > p {
    color: var(--neutral-700); font-size: .95rem; line-height: 1.7;
    font-style: italic; flex: 1;
}
.testimoni__author {
    display: flex; align-items: center; gap: .75rem; margin-top: .5rem;
}
.testimoni__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-100); color: var(--green-800);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.testimoni__author strong {
    display: block; font-size: .9rem; color: var(--neutral-900);
}
.testimoni__author span { font-size: .8rem; color: var(--neutral-500); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
    color: var(--white);
}
.cta-banner__content { text-align: center; max-width: 560px; margin-inline: auto; }
.cta-banner__emoji { font-size: 2rem; letter-spacing: .25rem; display: block; margin-bottom: 1.25rem; }
.cta-banner__content h2 {
    font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600; margin-bottom: .75rem; line-height: 1.2;
}
.cta-banner__content p { opacity: .9; margin-bottom: 2rem; font-size: 1.05rem; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 4rem 0;
    text-align: center; color: var(--white);
}
.page-hero--green { background: linear-gradient(135deg, #14532d, #22c55e); }
.page-hero--orange { background: linear-gradient(135deg, #7c2d12, #f97316); }
.page-hero--red { background: linear-gradient(135deg, #7f1d1d, #ef4444); }

.page-hero h1 {
    font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600; margin-bottom: .75rem; line-height: 1.2;
}
.page-hero p {
    opacity: .9; font-size: 1.05rem; max-width: 480px; margin-inline: auto;
}

/* ============================================
   TENTANG
   ============================================ */
.tentang-section { padding: 5rem 0; }

.tentang__story {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem;
    align-items: start; margin-bottom: 5rem;
}
.tentang__story-text h2 {
    font-family: var(--font-serif); font-size: 2rem; font-weight: 600;
    margin-bottom: 1.25rem; color: var(--neutral-900);
}
.tentang__story-text p {
    color: var(--neutral-700); line-height: 1.8; margin-bottom: 1rem;
    font-size: .98rem;
}

.tentang__story-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    background: var(--green-50); border-radius: var(--radius-lg);
    padding: 2rem;
}
.tentang__stat {
    text-align: center;
}
.tentang__stat-num {
    display: block; font-size: 2.2rem; font-weight: 800;
    color: var(--green-600); line-height: 1;
}
.tentang__stat span:last-child {
    font-size: .82rem; color: var(--neutral-500); font-weight: 500; margin-top: .25rem; display: block;
}

.tentang__values h2 {
    font-family: var(--font-serif); font-size: 2rem;
    font-weight: 600; margin-bottom: 2rem; text-align: center;
}
.tentang__values-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.tentang__value-card {
    padding: 2rem; border-radius: var(--radius-lg);
    background: var(--neutral-50); text-align: center;
}
.tentang__value-card > span { font-size: 2rem; display: block; margin-bottom: .75rem; }
.tentang__value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.tentang__value-card p { font-size: .88rem; color: var(--neutral-500); line-height: 1.65; }

/* ============================================
   KONTAK
   ============================================ */
.kontak-section { padding: 5rem 0; }
.kontak__grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.kontak__info h2 {
    font-family: var(--font-serif); font-size: 2rem; font-weight: 600;
    margin-bottom: 2rem;
}
.kontak__item {
    display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start;
}
.kontak__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.4; }
.kontak__item h4 { font-size: .9rem; font-weight: 700; color: var(--neutral-900); margin-bottom: .25rem; }
.kontak__item p, .kontak__item a {
    font-size: .9rem; color: var(--neutral-500); line-height: 1.6;
}
.kontak__item a:hover { color: var(--green-600); }

.kontak__form-wrap h2 {
    font-family: var(--font-serif); font-size: 2rem; font-weight: 600;
    margin-bottom: 2rem;
}
.kontak__form {
    background: var(--neutral-50); border-radius: var(--radius-lg);
    padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--neutral-900); color: var(--neutral-200);
    padding: 4rem 0 2rem;
}
.footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
    margin-bottom: 3rem;
}
.footer__logo {
    font-size: 1.3rem; font-weight: 700; color: var(--white);
    display: inline-flex; align-items: center; gap: .35rem;
    margin-bottom: 1rem; text-decoration: none;
}
.footer__tagline {
    font-size: .88rem; line-height: 1.7; color: var(--neutral-500); margin-bottom: 1.25rem;
    max-width: 280px;
}
.footer__socials { display: flex; gap: .75rem; }
.footer__socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    color: var(--neutral-400); transition: all var(--transition);
}
.footer__socials a:hover { background: var(--green-600); color: var(--white); }

.footer__links h4 {
    font-size: .85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--white); margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__links li, .footer__links a {
    font-size: .88rem; color: var(--neutral-500); transition: color var(--transition);
}
.footer__links a:hover { color: var(--green-400); }

.footer__contact h4 {
    font-size: .85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--white); margin-bottom: 1rem;
}
.footer__contact p {
    font-size: .88rem; color: var(--neutral-500); margin-bottom: .5rem; line-height: 1.6;
}
.footer__contact a { color: var(--neutral-500); transition: color var(--transition); }
.footer__contact a:hover { color: var(--green-400); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: .5rem;
}
.footer__bottom p { font-size: .82rem; color: var(--neutral-600); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero__container { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__visual { order: -1; }
    .hero__fruit-grid { max-width: 320px; grid-template-columns: repeat(4, 1fr); }
    .hero__stats { gap: 1.5rem; }

    .form-card { grid-template-columns: 1fr; }
    .form-card__text { padding: 2rem; }
    .form-card__form { padding: 2rem; }

    .tentang__story { grid-template-columns: 1fr; gap: 2.5rem; }
    .kontak__grid { grid-template-columns: 1fr; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .navbar__nav {
        display: none; flex-direction: column;
        position: absolute; top: var(--navbar-h); left: 0; right: 0;
        background: var(--white); padding: 1.25rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--neutral-200);
        gap: .25rem;
    }
    .navbar__nav.open { display: flex; }
    .navbar__burger { display: flex; }

    .hero__fruit-grid { grid-template-columns: repeat(4, 1fr); gap: .5rem; }
    .hero__fruit-item { font-size: 1.5rem; border-radius: var(--radius-md); }

    .cara-pesan__steps { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .cara-pesan__arrow { display: none; }

    .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
