/* ============================================================
   HENOVAFRESH DESIGN SYSTEM v2.1
   Fonts: Oswald (headings) + Roboto (body)
   Brand: #6DC820 | #7ED321 | #00B4AA | #1E96D3 | #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --hf-green:        #6DC820;
    --hf-green-2:      #7ED321;
    --hf-green-dark:   #5aaa18;
    --hf-green-light:  #edfad3;
    --hf-teal:         #00B4AA;
    --hf-teal-dark:    #009990;
    --hf-teal-light:   #d0f5f3;
    --hf-blue:         #1E96D3;
    --hf-blue-dark:    #1680b8;
    --hf-blue-light:   #daf0fb;
    --hf-white:        #FFFFFF;
    --hf-dark:         #1a1a2e;
    --hf-text:         #2d2d2d;
    --hf-gray:         #f8f7f7;
    --hf-border:       #ddd;
    --font-heading:    'Oswald', serif;
    --font-body:       'Roboto', sans-serif;
    --padding-section: 100px 0;
    --max-width:       1170px;
    --max-width-wide:  1400px;
    --radius:          15px;
    --transition:      0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--hf-text); background: var(--hf-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.hf-title { display: block; font-family: var(--font-heading); font-size: 48px; font-weight: 700; line-height: 1.15; text-transform: uppercase; color: var(--hf-text); }
.hf-title-white { color: var(--hf-white); }
.hf-title-green { color: var(--hf-green); }
.hf-title-teal  { color: var(--hf-teal); }
.hf-title-blue  { color: var(--hf-blue); }
.hf-subtitle { font-size: 18px; font-weight: 300; line-height: 1.6; color: var(--hf-text); }
.hf-subtitle-white { color: rgba(255,255,255,0.75); }
.hf-label { font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--hf-green); }
.hf-label-teal  { color: var(--hf-teal); }
.hf-label-blue  { color: var(--hf-blue); }
.hf-label-white { color: rgba(255,255,255,0.6); }
@media (max-width: 991px) { .hf-title { font-size: 36px; } }
@media (max-width: 767px)  { .hf-title { font-size: 28px; } }

/* ══════════════════════════════════════════
   BUTTONS — hard offset shadow (Revive-style)
══════════════════════════════════════════ */
.hf-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 14px 36px; border-radius: 4px;
    cursor: pointer; border: none;
    transition: all 0.12s ease;
    text-decoration: none; line-height: 1;
}
.hf-btn-dark   { background: var(--hf-dark);   color: var(--hf-white); box-shadow: 4px 4px 0 0 var(--hf-green); }
.hf-btn-dark:hover { background: #2d2d4a; box-shadow: 2px 2px 0 0 var(--hf-green); transform: translate(2px,2px); color: var(--hf-white); }

.hf-btn-green  { background: var(--hf-green);  color: var(--hf-white); box-shadow: 4px 4px 0 0 #1a1a2e; }
.hf-btn-green:hover { background: var(--hf-green-2); box-shadow: 2px 2px 0 0 #1a1a2e; transform: translate(2px,2px); color: var(--hf-white); }

.hf-btn-green2 { background: var(--hf-green-2); color: var(--hf-white); box-shadow: 4px 4px 0 0 #1a1a2e; }
.hf-btn-green2:hover { background: var(--hf-green); box-shadow: 2px 2px 0 0 #1a1a2e; transform: translate(2px,2px); color: var(--hf-white); }

.hf-btn-teal   { background: var(--hf-teal);   color: var(--hf-white); box-shadow: 4px 4px 0 0 #1a1a2e; }
.hf-btn-teal:hover { background: var(--hf-teal-dark); box-shadow: 2px 2px 0 0 #1a1a2e; transform: translate(2px,2px); color: var(--hf-white); }

.hf-btn-blue   { background: var(--hf-blue);   color: var(--hf-white); box-shadow: 4px 4px 0 0 #1a1a2e; }
.hf-btn-blue:hover { background: var(--hf-blue-dark); box-shadow: 2px 2px 0 0 #1a1a2e; transform: translate(2px,2px); color: var(--hf-white); }

.hf-btn-outline { background: transparent; color: var(--hf-white); border: 2px solid rgba(255,255,255,0.7); box-shadow: 4px 4px 0 0 rgba(255,255,255,0.2); }
.hf-btn-outline:hover { background: var(--hf-white); color: var(--hf-dark); border-color: var(--hf-white); box-shadow: 2px 2px 0 0 rgba(255,255,255,0.2); transform: translate(2px,2px); }

.hf-btn-outline-dark { background: transparent; color: var(--hf-text); border: 2px solid var(--hf-text); box-shadow: 4px 4px 0 0 var(--hf-text); }
.hf-btn-outline-dark:hover { background: var(--hf-text); color: var(--hf-white); box-shadow: 2px 2px 0 0 var(--hf-text); transform: translate(2px,2px); }

/* Social auth button */
.hf-btn-social {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 13px 24px; background: var(--hf-white); border: 2px solid var(--hf-border);
    border-radius: 4px; box-shadow: 4px 4px 0 0 var(--hf-border);
    font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--hf-text); cursor: pointer; transition: all 0.12s ease;
    text-decoration: none;
}
.hf-btn-social:hover { border-color: var(--hf-blue); box-shadow: 4px 4px 0 0 var(--hf-blue); transform: translate(-2px,-2px); color: var(--hf-text); }

/* ── LAYOUT ── */
.hf-container      { max-width: var(--max-width);      margin: 0 auto; padding: 0 24px; }
.hf-container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 24px; }

#hf-scroll-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--hf-green), var(--hf-teal), var(--hf-blue)); z-index: 9999; width: 0%; transition: width 0.1s linear; }

.hf-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hf-reveal.in { opacity: 1; transform: translateY(0); }
.hf-reveal-delay-1 { transition-delay: 0.1s; }
.hf-reveal-delay-2 { transition-delay: 0.2s; }
.hf-reveal-delay-3 { transition-delay: 0.3s; }
.hf-reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════ NAV ══ */
.hf-nav { background: var(--hf-dark); position: sticky; top: 0; z-index: 500; border-bottom: 3px solid var(--hf-green); }
.hf-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1300px; margin: 0 auto; padding: 0 24px; gap: 16px; }
.hf-nav-logo img { height: 44px; width: auto; display: block; }
.hf-nav-logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--hf-white); letter-spacing: 0.02em; }
.hf-nav-logo-text span { color: var(--hf-green); }
.hf-nav-links { display: flex; align-items: center; gap: 4px; }
.hf-nav-link { font-family: var(--font-heading); font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); padding: 6px 12px; border-radius: 4px; transition: all var(--transition); }
.hf-nav-link:hover, .hf-nav-link.active { color: var(--hf-white); background: rgba(255,255,255,0.08); }
.hf-nav-cta { font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--hf-green); color: var(--hf-white); padding: 11px 24px; border-radius: 4px; box-shadow: 4px 4px 0 0 #1a1a2e; transition: all 0.12s ease; white-space: nowrap; }
.hf-nav-cta:hover { background: var(--hf-green-2); box-shadow: 2px 2px 0 0 #1a1a2e; transform: translate(2px,2px); color: var(--hf-white); }
.hf-nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 4px; }
.hf-nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--hf-white); border-radius: 2px; }

/* Mobile menu */
.hf-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 600; }
.hf-mobile-overlay.open { display: block; }
.hf-mobile-sheet { position: fixed; bottom: 0; left: 0; right: 0; background: #0a150a; border-top: 3px solid var(--hf-green); border-radius: 20px 20px 0 0; padding: 16px 20px 40px; z-index: 700; transform: translateY(100%); transition: transform 0.3s ease; }
.hf-mobile-sheet.open { transform: translateY(0); }
.hf-mobile-sheet-handle { width: 40px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 4px; margin: 0 auto 20px; }
.hf-mobile-link { display: block; font-family: var(--font-heading); font-size: 16px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color var(--transition); }
.hf-mobile-link:hover { color: var(--hf-white); }
.hf-mobile-actions { display: flex; gap: 12px; margin-top: 20px; }
.hf-mobile-actions .hf-btn { flex: 1; text-align: center; }

/* Public bottom nav (mobile) */
.hf-pub-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--hf-white); border-top: 2px solid var(--hf-border); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); z-index: 400; height: 62px; }
.hf-pub-nav-items { display: flex; align-items: stretch; height: 100%; }
.hf-pub-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 10px; font-weight: 700; font-family: var(--font-heading); letter-spacing: 0.04em; text-transform: uppercase; color: #9ca3af; text-decoration: none; transition: color var(--transition); background: transparent; border: none; cursor: pointer; padding: 6px 4px; }
.hf-pub-nav-item.active { color: var(--hf-green); }
.hf-pub-nav-icon { width: 36px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 20px; transition: background var(--transition); }
.hf-pub-nav-item.active .hf-pub-nav-icon { background: rgba(109,200,32,0.12); }
.hf-pub-nav-center .hf-pub-nav-icon { width: 44px; height: 44px; background: var(--hf-green); border-radius: 50%; margin-top: -18px; box-shadow: 4px 4px 0 0 #1a1a2e; color: var(--hf-white); }

@media (max-width: 767px) {
    .hf-pub-nav { display: block; }
    .hf-nav-links, .hf-nav-right-desktop { display: none; }
    .hf-nav-hamburger { display: flex; }
    main { padding-bottom: 62px; }
}

/* ══════════════════════════════════════════ HERO ══ */
.hf-hero { background: #0f1a0a; overflow: hidden; min-height: 600px; display: flex; align-items: stretch; }
.hf-hero-inner { max-width: 1300px; margin: 0 auto; padding: 80px 24px; display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; }
.hf-hero-content { position: relative; z-index: 2; max-width: 600px; flex-shrink: 0; }
.hf-hero .hf-title { font-size: 62px; color: var(--hf-white); margin-bottom: 20px; line-height: 1.05; }
.hf-hero .hf-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 18px; max-width: 480px; }
.hf-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero cups (right side visual) */
.hf-hero-cups { flex: 1; display: flex; align-items: flex-end; justify-content: center; gap: 0; min-height: 460px; position: relative; }
.hf-hero-cup { width: 200px; flex-shrink: 0; text-align: center; position: relative; transition: transform 0.3s ease; cursor: default; }
.hf-hero-cup:hover { transform: translateY(-12px); }
.hf-hero-cup-circle { width: 170px; height: 170px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 80px; border: 3px solid rgba(255,255,255,0.15); position: relative; z-index: 2; }
.hf-hero-cup-circle-1 { background: radial-gradient(circle at 35% 35%, var(--hf-green-2), var(--hf-green-dark)); box-shadow: 5px 5px 0 0 #1a1a2e; }
.hf-hero-cup-circle-2 { background: radial-gradient(circle at 35% 35%, var(--hf-teal), var(--hf-teal-dark)); box-shadow: 5px 5px 0 0 #1a1a2e; width: 210px; height: 210px; font-size: 96px; }
.hf-hero-cup-circle-3 { background: radial-gradient(circle at 35% 35%, var(--hf-blue), var(--hf-blue-dark)); box-shadow: 5px 5px 0 0 #1a1a2e; }
.hf-hero-cup-label { font-family: var(--font-heading); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); }
.hf-hero-cup-2 { margin-top: -24px; }
/* Teal band at bottom of hero */
.hf-hero-band { position: absolute; bottom: 0; left: -9999px; right: -9999px; height: 130px; background: var(--hf-teal-light); z-index: 1; }

@media (max-width: 1024px) { .hf-hero .hf-title { font-size: 46px; } .hf-hero-cup { width: 160px; } .hf-hero-cup-circle { width: 140px; height: 140px; font-size: 60px; } .hf-hero-cup-circle-2 { width: 170px; height: 170px; font-size: 72px; } }
@media (max-width: 767px) { .hf-hero-inner { flex-direction: column; padding: 52px 20px 0; gap: 24px; } .hf-hero .hf-title { font-size: 36px; } .hf-hero-cups { min-height: 260px; width: 100%; } .hf-hero-cup { width: 110px; } .hf-hero-cup-circle { width: 100px; height: 100px; font-size: 44px; } .hf-hero-cup-circle-2 { width: 120px; height: 120px; font-size: 52px; } .hf-hero-band { height: 70px; } }

/* ══════════════════════════════════════════ STATS ══ */
.hf-stats { background: var(--hf-teal-light); padding: var(--padding-section); }
.hf-stats-inner { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; gap: 32px; }
.hf-stats-item { text-align: center; flex: 1; min-width: 200px; padding: 0 16px; }
.hf-stats-number { font-family: var(--font-heading); font-size: 64px; font-weight: 700; line-height: 1; color: var(--hf-teal-dark); margin-bottom: 12px; display: block; }
.hf-stats-label { font-family: var(--font-heading); font-size: 18px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; display: block; }
.hf-stats-desc { font-size: 16px; font-weight: 300; color: #444; line-height: 1.5; }
@media (max-width: 767px) { .hf-stats-inner { flex-direction: column; } .hf-stats-item { display: flex; align-items: center; text-align: left; padding: 0; min-width: unset; } .hf-stats-number { font-size: 42px; min-width: 100px; margin-bottom: 0; margin-right: 16px; } }

/* ══════════════════════════════════════════ HOW IT WORKS ══ */
.hf-how { background: var(--hf-gray); padding: var(--padding-section); }
.hf-how .hf-title { text-align: center; margin-bottom: 60px; }
.hf-how-list { display: flex; justify-content: space-around; max-width: 1200px; margin: 0 auto; padding: 0 24px; gap: 20px; }
.hf-how-item { text-align: center; max-width: 260px; flex: 1; }
.hf-how-icon { width: 90px; height: 90px; border-radius: 50%; background: var(--hf-white); border: 3px solid var(--hf-green); box-shadow: 4px 4px 0 0 var(--hf-green); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--hf-green); flex-shrink: 0; }
.hf-how-item strong { display: block; font-family: var(--font-heading); font-size: 20px; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; }
.hf-how-item p { font-size: 16px; font-weight: 300; line-height: 1.6; color: #555; }
.hf-how-cta { text-align: center; margin-top: 48px; }
@media (max-width: 767px) { .hf-how .hf-title { margin-bottom: 40px; } .hf-how-list { flex-direction: column; align-items: center; } .hf-how-item { max-width: 340px; width: 100%; } }

/* ══════════════════════════════════════════ MENU DIG SECTION (Revive-style overflow) ══ */
.hf-dig { padding: 60px 0 0; position: relative; }
.hf-dig::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 280px; background: var(--hf-teal-light); z-index: 0; }
.hf-dig-inner { display: flex; align-items: flex-start; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.hf-dig-info { width: 340px; flex-shrink: 0; padding: 20px 40px 0; }
.hf-dig-info .hf-title { margin-bottom: 20px; }
.hf-dig-info .hf-subtitle { font-size: 16px; font-weight: 300; margin-bottom: 32px; }
.hf-dig-arrows { display: flex; gap: 12px; margin-top: 32px; }
.hf-dig-arrow { width: 50px; height: 50px; border-radius: 50%; background: var(--hf-white); border: 2px solid var(--hf-text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.12s ease; box-shadow: 3px 3px 0 0 var(--hf-text); flex-shrink: 0; }
.hf-dig-arrow:hover { border-color: var(--hf-teal); box-shadow: 3px 3px 0 0 var(--hf-teal); transform: translate(-1px,-1px); }
.hf-dig-arrow-next svg { transform: rotate(180deg); }
.hf-dig-cups { flex: 1; overflow: hidden; }
.hf-dig-cups-track { display: flex; gap: 0; overflow-x: auto; padding: 0 0 16px 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
.hf-dig-cups-track::-webkit-scrollbar { display: none; }
.hf-dig-cup-slide { flex-shrink: 0; width: 280px; text-align: center; padding: 0 16px; scroll-snap-align: start; }
.hf-dig-cup-img { width: 100%; height: 380px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; border: 2px solid rgba(0,0,0,0.08); box-shadow: 6px 6px 0 0 var(--hf-teal-dark); }
.hf-dig-cup-placeholder { width: 100%; height: 380px; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 100px; border: 2px solid rgba(0,0,0,0.08); box-shadow: 6px 6px 0 0 var(--hf-teal-dark); }
.hf-dig-cup-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; display: block; }
.hf-dig-cup-desc { font-size: 14px; font-weight: 300; color: #666; line-height: 1.5; }
.hf-dig-footer { background: var(--hf-teal-light); padding: 32px 0 80px; text-align: center; position: relative; z-index: 2; }
@media (max-width: 767px) { .hf-dig-inner { flex-direction: column; } .hf-dig-info { width: 100%; padding: 0 24px; text-align: center; margin-bottom: 24px; } .hf-dig-arrows { justify-content: center; } .hf-dig-cup-slide { width: 220px; } .hf-dig-cup-img, .hf-dig-cup-placeholder { height: 280px; } .hf-dig::after { height: 200px; } }

/* ══════════════════════════════════════════ SPLIT TEAL ══ */
.hf-split-teal { background: var(--hf-teal-light); padding: var(--padding-section); }
.hf-split-inner { display: flex; align-items: center; justify-content: center; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; gap: 60px; }
.hf-split-content { flex: 1; max-width: 460px; }
.hf-split-content .hf-title { margin-bottom: 36px; }
.hf-split-numbered-list { margin-bottom: 36px; }
.hf-split-numbered-list li { display: flex; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.hf-split-numbered-list li:last-child { border-bottom: none; }
.hf-split-num { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--hf-teal); min-width: 56px; letter-spacing: 1px; }
.hf-split-text strong { display: block; font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.hf-split-text span { font-size: 16px; font-weight: 300; color: #555; }
.hf-split-image { flex-shrink: 0; padding: 0 12px 12px 0; }
.hf-split-image img { border-radius: var(--radius); border: 2px solid var(--hf-text); box-shadow: 10px 10px 0 0 var(--hf-teal); max-width: 380px; width: 100%; }
@media (max-width: 900px) { .hf-split-inner { flex-direction: column; gap: 40px; } .hf-split-content { max-width: 100%; text-align: center; } .hf-split-image img { box-shadow: 6px 6px 0 0 var(--hf-teal); max-width: 420px; } }

/* ══════════════════════════════════════════ SPLIT ACCENT (green-light) ══ */
.hf-split-accent { padding: var(--padding-section); }
.hf-split-accent .hf-title { text-align: center; margin-bottom: 60px; }
.hf-split-accent-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.hf-split-accent-img-wrap { flex-shrink: 0; padding: 0 0 10px 0; }
.hf-split-accent-img { border-radius: var(--radius); border: 2px solid var(--hf-text); box-shadow: 10px 10px 0 0 var(--hf-green); width: 520px; height: 440px; object-fit: cover; display: block; }
.hf-split-accent-content { flex: 1; max-width: 540px; padding: 60px 24px 60px 60px; position: relative; z-index: 2; }
.hf-split-accent-content::before { content: ''; position: absolute; top: 0; bottom: 0; left: -9999px; right: -9999px; background: var(--hf-green-light); z-index: -1; }
.hf-split-accent-content strong { display: block; font-family: var(--font-heading); font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.hf-split-accent-content p { font-size: 17px; font-weight: 300; line-height: 1.7; margin-bottom: 16px; color: #444; }
@media (max-width: 767px) { .hf-split-accent-inner { flex-direction: column; padding: 0 20px; } .hf-split-accent-img { width: 100%; height: auto; box-shadow: 6px 6px 0 0 var(--hf-green); } .hf-split-accent-content { width: 100%; padding: 32px 0 60px; text-align: center; } }

/* ══════════════════════════════════════════ LOCATION TYPES ══ */
.hf-location-types { background: var(--hf-gray); padding: 60px 0; }
.hf-location-types .hf-title { text-align: center; margin-bottom: 40px; font-size: 32px; }
.hf-location-types-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-location-type-item { background: var(--hf-white); border: 2px solid var(--hf-border); border-radius: var(--radius); box-shadow: 4px 4px 0 0 var(--hf-border); padding: 28px 32px; text-align: center; width: 220px; transition: all 0.12s ease; }
.hf-location-type-item:hover { border-color: var(--hf-green); box-shadow: 4px 4px 0 0 var(--hf-green); transform: translate(-2px,-2px); }
.hf-location-type-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.hf-location-type-item strong { font-family: var(--font-heading); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; display: block; }

/* ══════════════════════════════════════════ CTA SECTIONS ══ */
.hf-cta-dark { background: var(--hf-dark); padding: var(--padding-section); text-align: center; }
.hf-cta-dark .hf-title { color: var(--hf-white); margin-bottom: 20px; }
.hf-cta-dark .hf-subtitle { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; }
.hf-cta-dark-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hf-cta-green { background: var(--hf-green); padding: var(--padding-section); text-align: center; }
.hf-cta-green .hf-title { color: var(--hf-white); margin-bottom: 20px; }
.hf-cta-green .hf-subtitle { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 36px; }
.hf-cta-teal { background: var(--hf-teal); padding: var(--padding-section); text-align: center; }
.hf-cta-teal .hf-title { color: var(--hf-white); margin-bottom: 20px; }
.hf-cta-teal .hf-subtitle { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 36px; }
.hf-cta-blue { background: var(--hf-blue); padding: var(--padding-section); text-align: center; }
.hf-cta-blue .hf-title { color: var(--hf-white); margin-bottom: 20px; }
.hf-cta-blue .hf-subtitle { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 36px; }

/* ══════════════════════════════════════════ PARTNER ══ */
.hf-partner { background: var(--hf-gray); padding: var(--padding-section); }
.hf-partner-inner { display: flex; align-items: center; gap: 60px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-partner-content { flex: 1; }
.hf-partner-content .hf-title { margin-bottom: 20px; }
.hf-partner-content .hf-subtitle { margin-bottom: 32px; }
.hf-partner-benefits { margin-bottom: 36px; }
.hf-partner-benefits li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--hf-border); font-size: 17px; font-weight: 400; }
.hf-partner-benefits li:last-child { border-bottom: none; }
.hf-partner-benefits li::before { content: ''; width: 22px; height: 22px; border-radius: 50%; background: var(--hf-green); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' fill='none'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; box-shadow: 2px 2px 0 0 var(--hf-green-dark); }
.hf-partner-image { flex-shrink: 0; width: 380px; padding: 0 10px 10px 0; }
.hf-partner-image img { border-radius: var(--radius); border: 2px solid var(--hf-text); box-shadow: 10px 10px 0 0 var(--hf-green); width: 100%; }
@media (max-width: 900px) { .hf-partner-inner { flex-direction: column; } .hf-partner-image { width: 100%; max-width: 420px; margin: 0 auto; padding: 0 8px 8px 0; } .hf-partner-image img { box-shadow: 6px 6px 0 0 var(--hf-green); } }

/* ══════════════════════════════════════════ WAITLIST ══ */
.hf-waitlist { background: var(--hf-dark); padding: var(--padding-section); }
.hf-waitlist-inner { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 24px; }
.hf-waitlist .hf-title { color: var(--hf-white); margin-bottom: 16px; }
.hf-waitlist .hf-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.hf-waitlist-perks { display: flex; justify-content: center; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.hf-waitlist-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════ PAGE HEADER ══ */
.hf-page-header { background: var(--hf-dark); padding: 70px 24px; text-align: center; position: relative; overflow: hidden; border-bottom: 3px solid var(--hf-green); }
.hf-page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(109,200,32,0.12) 0%, transparent 70%); }
.hf-page-header > * { position: relative; z-index: 1; }
.hf-page-header .hf-title { color: var(--hf-white); margin-bottom: 12px; }
.hf-page-header .hf-subtitle { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; }
.hf-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.08em; }
.hf-breadcrumb a { color: rgba(255,255,255,0.55); }
.hf-breadcrumb a:hover { color: var(--hf-green); }
.hf-breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════ AUTH ══ */
.hf-auth-section { background: var(--hf-gray); min-height: calc(100vh - 73px); display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.hf-auth-card { background: var(--hf-white); border-radius: var(--radius); border: 2px solid var(--hf-border); box-shadow: 8px 8px 0 0 var(--hf-green); width: 100%; max-width: 480px; overflow: hidden; }
.hf-auth-card-header { background: var(--hf-dark); padding: 36px 36px 28px; border-bottom: 3px solid var(--hf-green); }
.hf-auth-card-title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--hf-white); margin-bottom: 6px; }
.hf-auth-card-subtitle { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); }
.hf-auth-card-body { padding: 36px; }
.hf-auth-divider { text-align: center; margin: 24px 0; position: relative; font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #9ca3af; }
.hf-auth-divider::before, .hf-auth-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 30px); height: 1px; background: var(--hf-border); }
.hf-auth-divider::before { left: 0; }
.hf-auth-divider::after { right: 0; }
.hf-auth-footer { padding: 20px 36px; background: var(--hf-gray); border-top: 1px solid var(--hf-border); text-align: center; font-size: 14px; font-weight: 300; color: #666; }
.hf-auth-footer a { color: var(--hf-teal); font-weight: 600; }
.hf-auth-footer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════ PRODUCTS ══ */
.hf-products-section { padding: var(--padding-section); background: var(--hf-white); }
.hf-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-product-card { background: var(--hf-white); border: 2px solid var(--hf-border); border-radius: var(--radius); overflow: hidden; box-shadow: 4px 4px 0 0 var(--hf-border); transition: all 0.12s ease; position: relative; }
.hf-product-card:hover { border-color: var(--hf-green); box-shadow: 6px 6px 0 0 var(--hf-green); transform: translate(-2px,-2px); }
.hf-product-card-img-wrap { position: relative; overflow: hidden; height: 240px; background: var(--hf-gray); }
.hf-product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hf-product-card:hover .hf-product-card-img-wrap img { transform: scale(1.05); }
.hf-product-card-body { padding: 20px; }
.hf-product-card-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.hf-product-card-desc { font-size: 14px; font-weight: 300; color: #666; margin-bottom: 16px; line-height: 1.5; }
.hf-product-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--hf-border); }
.hf-product-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--hf-teal-dark); }
.hf-product-badge { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: var(--hf-green-light); color: var(--hf-green-dark); position: absolute; top: 12px; left: 12px; border: 2px solid var(--hf-green); box-shadow: 2px 2px 0 0 var(--hf-green-dark); }
.hf-fav-btn { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: var(--hf-white); border: 2px solid var(--hf-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); color: #ccc; box-shadow: 2px 2px 0 0 var(--hf-border); }
.hf-fav-btn:hover, .hf-fav-btn.active { color: #e53e3e; border-color: #e53e3e; box-shadow: 2px 2px 0 0 #b91c1c; }

/* ══════════════════════════════════════════ BLOG ══ */
.hf-blog-section { padding: var(--padding-section); background: var(--hf-white); }
.hf-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-blog-card { border: 2px solid var(--hf-border); border-radius: var(--radius); overflow: hidden; transition: all 0.12s ease; background: var(--hf-white); box-shadow: 4px 4px 0 0 var(--hf-border); }
.hf-blog-card:hover { border-color: var(--hf-teal); box-shadow: 6px 6px 0 0 var(--hf-teal); transform: translate(-2px,-2px); }
.hf-blog-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.hf-blog-card-body { padding: 24px; }
.hf-blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.1em; color: var(--hf-teal); margin-bottom: 12px; }
.hf-blog-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.3; margin-bottom: 12px; color: var(--hf-text); display: block; }
.hf-blog-card-title:hover { color: var(--hf-teal); }
.hf-blog-card-excerpt { font-size: 14px; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 20px; }
.hf-blog-card-read { font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hf-green); display: inline-flex; align-items: center; gap: 6px; }
.hf-blog-card-read:hover { color: var(--hf-green-dark); }

/* ══════════════════════════════════════════ FORMS ══ */
.hf-form-group { margin-bottom: 24px; }
.hf-form-label { display: block; font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; color: var(--hf-text); }
.hf-form-input, .hf-form-textarea, .hf-form-select { width: 100%; padding: 14px 18px; border: 2px solid var(--hf-border); border-radius: 4px; font-family: var(--font-body); font-size: 15px; color: var(--hf-text); background: var(--hf-white); outline: none; transition: all var(--transition); appearance: none; box-shadow: 3px 3px 0 0 var(--hf-border); }
.hf-form-input:focus, .hf-form-textarea:focus, .hf-form-select:focus { border-color: var(--hf-teal); box-shadow: 3px 3px 0 0 var(--hf-teal); }
.hf-form-textarea { resize: vertical; min-height: 140px; }
.hf-form-error { font-size: 13px; color: #e53e3e; margin-top: 6px; display: block; }
.hf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hf-form-check { display: flex; align-items: flex-start; gap: 10px; }
.hf-form-check input[type="checkbox"] { width: 18px; height: 18px; border: 2px solid var(--hf-border); border-radius: 3px; flex-shrink: 0; margin-top: 2px; cursor: pointer; accent-color: var(--hf-green); }
.hf-form-check label { font-size: 14px; font-weight: 300; color: #555; cursor: pointer; line-height: 1.5; }
@media (max-width: 600px) { .hf-form-row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════ FAQ ══ */
.hf-faq-section { padding: var(--padding-section); background: var(--hf-white); }
.hf-faq-wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.hf-faq-item { border-bottom: 2px solid var(--hf-border); }
.hf-faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-family: var(--font-heading); font-size: 18px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; color: var(--hf-text); transition: color var(--transition); background: none; border: none; width: 100%; text-align: left; gap: 16px; }
.hf-faq-question:hover { color: var(--hf-teal); }
.hf-faq-question.open { color: var(--hf-teal); }
.hf-faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--hf-gray); border: 2px solid var(--hf-border); box-shadow: 2px 2px 0 0 var(--hf-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); color: var(--hf-text); }
.hf-faq-question.open .hf-faq-icon { background: var(--hf-teal); color: var(--hf-white); border-color: var(--hf-teal); box-shadow: 2px 2px 0 0 var(--hf-teal-dark); transform: rotate(45deg); }
.hf-faq-answer { display: none; padding: 0 0 22px; font-size: 16px; font-weight: 300; line-height: 1.7; color: #555; }
.hf-faq-answer.open { display: block; }

/* ══════════════════════════════════════════ CART ══ */
.hf-cart-section { padding: var(--padding-section); background: var(--hf-gray); }
.hf-cart-inner { display: grid; grid-template-columns: 1fr 360px; gap: 32px; max-width: var(--max-width-wide); margin: 0 auto; padding: 0 24px; }
.hf-cart-items { background: var(--hf-white); border-radius: var(--radius); padding: 24px; border: 2px solid var(--hf-border); box-shadow: 4px 4px 0 0 var(--hf-border); }
.hf-cart-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--hf-border); }
.hf-cart-item:last-child { border-bottom: none; }
.hf-cart-item-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 2px solid var(--hf-border); }
.hf-cart-item-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.hf-cart-item-price { font-size: 15px; color: var(--hf-teal-dark); font-weight: 500; }
.hf-qty { display: flex; align-items: center; gap: 0; border: 2px solid var(--hf-border); border-radius: 4px; overflow: hidden; box-shadow: 3px 3px 0 0 var(--hf-border); }
.hf-qty button { width: 36px; height: 36px; background: var(--hf-gray); border: none; cursor: pointer; font-size: 18px; font-weight: 700; color: var(--hf-text); transition: background var(--transition); }
.hf-qty button:hover { background: var(--hf-teal-light); }
.hf-qty input { width: 48px; text-align: center; border: none; border-left: 1px solid var(--hf-border); border-right: 1px solid var(--hf-border); font-size: 15px; font-weight: 700; padding: 0; height: 36px; outline: none; font-family: var(--font-heading); }
.hf-cart-summary { background: var(--hf-white); border-radius: var(--radius); padding: 28px; height: fit-content; position: sticky; top: 90px; border: 2px solid var(--hf-border); box-shadow: 6px 6px 0 0 var(--hf-green); }
.hf-cart-summary-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--hf-border); }
.hf-cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; padding: 8px 0; color: #555; }
.hf-cart-summary-total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 20px; font-weight: 700; text-transform: uppercase; padding: 16px 0; border-top: 2px solid var(--hf-text); margin-top: 8px; }
@media (max-width: 900px) { .hf-cart-inner { grid-template-columns: 1fr; } .hf-cart-summary { position: static; } }

/* ══════════════════════════════════════════ SCAN ORDER / MACHINE ══ */
.hf-scan-section { padding: var(--padding-section); background: var(--hf-gray); }
.hf-machine-card { background: var(--hf-white); border-radius: var(--radius); overflow: hidden; max-width: 680px; margin: 0 auto; border: 2px solid var(--hf-border); box-shadow: 6px 6px 0 0 var(--hf-teal); }
.hf-machine-card-header { background: var(--hf-dark); padding: 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--hf-teal); }
.hf-machine-card-name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--hf-white); letter-spacing: 0.04em; }
.hf-machine-status { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; }
.hf-machine-status-online  { background: var(--hf-green-light); color: var(--hf-green-dark); border: 2px solid var(--hf-green); box-shadow: 2px 2px 0 0 var(--hf-green-dark); }
.hf-machine-status-offline { background: #fee2e2; color: #dc2626; border: 2px solid #dc2626; box-shadow: 2px 2px 0 0 #b91c1c; }
.hf-machine-card-body { padding: 32px; }

/* ══════════════════════════════════════════ MAP / LOCATIONS ══ */
.hf-map-section { padding: 48px 0 0; background: var(--hf-white); }
.hf-map-filters { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 32px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hf-filter-btn { font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 20px; border-radius: 4px; border: 2px solid var(--hf-border); background: var(--hf-white); color: var(--hf-text); cursor: pointer; transition: all 0.12s ease; text-decoration: none; display: inline-block; box-shadow: 3px 3px 0 0 var(--hf-border); }
.hf-filter-btn:hover, .hf-filter-btn.active { background: var(--hf-dark); border-color: var(--hf-dark); color: var(--hf-white); box-shadow: 3px 3px 0 0 var(--hf-green); }
#hf-map { width: 100%; height: 480px; }
.hf-machines-list { max-width: var(--max-width); margin: 0 auto; padding: 48px 24px; }
.hf-machines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.hf-machine-list-card { background: var(--hf-white); border: 2px solid var(--hf-border); border-radius: var(--radius); padding: 24px; box-shadow: 4px 4px 0 0 var(--hf-border); transition: all 0.12s ease; }
.hf-machine-list-card:hover { border-color: var(--hf-green); box-shadow: 6px 6px 0 0 var(--hf-green); transform: translate(-2px,-2px); }
.hf-machine-list-card-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.hf-machine-list-card-addr { font-size: 14px; color: #666; margin-bottom: 16px; font-weight: 300; }
.hf-machine-list-card-footer { display: flex; align-items: center; justify-content: space-between; }

/* ══════════════════════════════════════════ TEAM ══ */
.hf-team-section { padding: var(--padding-section); background: var(--hf-gray); }
.hf-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-team-card { background: var(--hf-white); border-radius: var(--radius); overflow: hidden; border: 2px solid var(--hf-border); box-shadow: 6px 6px 0 0 var(--hf-teal); transition: all 0.12s ease; }
.hf-team-card:hover { border-color: var(--hf-teal); box-shadow: 8px 8px 0 0 var(--hf-teal); transform: translate(-2px,-2px); }
.hf-team-card-header { background: var(--hf-dark); padding: 36px 24px; text-align: center; border-bottom: 3px solid var(--hf-teal); }
.hf-team-avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--hf-teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--hf-white); border: 3px solid rgba(255,255,255,0.2); box-shadow: 4px 4px 0 0 rgba(0,0,0,0.3); }
.hf-team-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--hf-white); margin-bottom: 6px; }
.hf-team-role { font-size: 13px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.12em; color: var(--hf-green); }
.hf-team-card-body { padding: 24px; font-size: 15px; font-weight: 300; line-height: 1.7; color: #555; }

/* ══════════════════════════════════════════ CHECKOUT ══ */
.hf-checkout-section { padding: var(--padding-section); background: var(--hf-gray); }
.hf-checkout-inner { display: grid; grid-template-columns: 1fr 380px; gap: 32px; max-width: var(--max-width-wide); margin: 0 auto; padding: 0 24px; }
.hf-checkout-panel { background: var(--hf-white); border-radius: var(--radius); padding: 32px; border: 2px solid var(--hf-border); box-shadow: 4px 4px 0 0 var(--hf-border); }
.hf-checkout-panel-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--hf-border); }
.hf-machine-select-card { border: 2px solid var(--hf-border); border-radius: 10px; padding: 18px; cursor: pointer; transition: all 0.12s ease; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; box-shadow: 3px 3px 0 0 var(--hf-border); }
.hf-machine-select-card:hover { border-color: var(--hf-green); box-shadow: 3px 3px 0 0 var(--hf-green); }
.hf-machine-select-card.selected { border-color: var(--hf-green); background: var(--hf-green-light); box-shadow: 3px 3px 0 0 var(--hf-green-dark); }
.hf-machine-select-card.offline { opacity: 0.5; cursor: not-allowed; }
.hf-machine-select-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.hf-machine-select-addr { font-size: 13px; color: #666; font-weight: 300; }
@media (max-width: 900px) { .hf-checkout-inner { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════ PROMO ══ */
.hf-promo-wrap { display: flex; gap: 10px; margin-top: 16px; }
.hf-promo-input { flex: 1; padding: 12px 16px; border: 2px solid var(--hf-border); border-radius: 4px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; outline: none; transition: all var(--transition); box-shadow: 3px 3px 0 0 var(--hf-border); }
.hf-promo-input:focus { border-color: var(--hf-teal); box-shadow: 3px 3px 0 0 var(--hf-teal); }
.hf-promo-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--hf-teal-light); color: var(--hf-teal-dark); padding: 8px 14px; border-radius: 4px; font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 2px solid var(--hf-teal); box-shadow: 2px 2px 0 0 var(--hf-teal-dark); }
.hf-promo-remove { background: none; border: none; cursor: pointer; color: var(--hf-teal-dark); font-size: 16px; line-height: 1; padding: 0; }

/* ══════════════════════════════════════════ FLASH TOASTS ══ */
.hf-flash-wrap { position: fixed; top: 86px; right: 24px; z-index: 9999; max-width: 380px; width: calc(100vw - 48px); }
.hf-flash { background: var(--hf-white); border-radius: 8px; box-shadow: 6px 6px 0 0 var(--hf-text); display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; animation: hfFlashIn 0.3s ease; border: 2px solid var(--hf-border); }
.hf-flash-success { border-color: var(--hf-green); box-shadow: 6px 6px 0 0 var(--hf-green-dark); }
.hf-flash-error   { border-color: #ef4444; box-shadow: 6px 6px 0 0 #b91c1c; }
.hf-flash-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hf-flash-icon-success { background: var(--hf-green-light); color: var(--hf-green-dark); }
.hf-flash-icon-error   { background: #fee2e2; color: #dc2626; }
.hf-flash-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.hf-flash-desc  { font-size: 13px; color: #666; margin-top: 3px; }
@keyframes hfFlashIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ══════════════════════════════════════════ COOKIE ══ */
.hf-cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; padding: 16px 24px; }
.hf-cookie-inner { max-width: 900px; margin: 0 auto; background: var(--hf-dark); border: 2px solid var(--hf-green); box-shadow: 6px 6px 0 0 var(--hf-green); border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hf-cookie-text { flex: 1; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; min-width: 240px; }
.hf-cookie-text strong { color: var(--hf-white); }
.hf-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.hf-cookie-reject { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 20px; border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.55); background: transparent; border-radius: 4px; cursor: pointer; transition: all 0.12s ease; box-shadow: 3px 3px 0 0 rgba(255,255,255,0.1); }
.hf-cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: var(--hf-white); }

/* ══════════════════════════════════════════ FOOTER ══ */
.hf-footer { background: var(--hf-dark); border-top: 3px solid var(--hf-green); }
.hf-footer-main { padding: 70px 0 48px; }
.hf-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hf-footer-brand-logo img { height: 42px; margin-bottom: 16px; }
.hf-footer-tagline { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.6; margin-bottom: 24px; }
.hf-footer-social { display: flex; gap: 10px; }
.hf-footer-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.12s ease; box-shadow: 2px 2px 0 0 rgba(0,0,0,0.3); }
.hf-footer-social-btn:hover { background: var(--hf-green); border-color: var(--hf-green); color: var(--hf-white); box-shadow: 2px 2px 0 0 var(--hf-green-dark); }
.hf-footer-col-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; display: block; }
.hf-footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.45); padding: 4px 0; transition: color var(--transition); }
.hf-footer-link:hover { color: var(--hf-white); }
.hf-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.hf-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.hf-footer-bottom { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.06); max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.28); }
.hf-footer-legal { display: flex; gap: 24px; }
.hf-footer-legal a { color: rgba(255,255,255,0.35); font-size: 13px; }
.hf-footer-legal a:hover { color: var(--hf-white); }
@media (max-width: 767px) {
    .hf-footer-grid { grid-template-columns: 1fr; gap: 0; }
    .hf-footer-col-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 16px 0; cursor: pointer; text-align: left; }
    .hf-footer-col-toggle .hf-footer-col-label { margin-bottom: 0; }
    .hf-footer-col-links { display: none; padding: 8px 0 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .hf-footer-col-links.open { display: block; }
    .hf-footer-brand { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 28px; }
    .hf-footer-bottom { flex-direction: column; text-align: center; }
    .hf-footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .hf-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hf-footer-col-toggle { display: none; }
    .hf-footer-col-links { display: block !important; }
}

/* ══════════════════════════════════════════ SECTION HEADER ══ */
.hf-section-header { text-align: center; margin-bottom: 56px; padding: 0 24px; }
.hf-section-header .hf-label { margin-bottom: 12px; }
.hf-section-header .hf-title { margin-bottom: 16px; }
.hf-section-header .hf-subtitle { max-width: 520px; margin: 0 auto; }

/* ══════════════════════════════════════════ UTILITY ══ */
.hf-text-center { text-align: center; }
.hf-mt-8  { margin-top: 8px; }  .hf-mt-16 { margin-top: 16px; } .hf-mt-24 { margin-top: 24px; }
.hf-mt-32 { margin-top: 32px; } .hf-mt-48 { margin-top: 48px; }
.hf-mb-8  { margin-bottom: 8px; }  .hf-mb-16 { margin-bottom: 16px; } .hf-mb-24 { margin-bottom: 24px; }
.hf-mb-32 { margin-bottom: 32px; } .hf-mb-48 { margin-bottom: 48px; }
.hf-divider { height: 2px; background: var(--hf-border); max-width: var(--max-width); margin: 0 auto; }
.hf-alert { padding: 16px 20px; border-radius: 6px; font-size: 14px; margin-bottom: 20px; border: 2px solid transparent; }
.hf-alert-success { background: var(--hf-green-light); border-color: var(--hf-green); color: var(--hf-green-dark); box-shadow: 3px 3px 0 0 var(--hf-green-dark); }
.hf-alert-error   { background: #fee2e2; border-color: #ef4444; color: #b91c1c; box-shadow: 3px 3px 0 0 #b91c1c; }
.hf-alert-info    { background: var(--hf-blue-light); border-color: var(--hf-blue); color: var(--hf-blue-dark); box-shadow: 3px 3px 0 0 var(--hf-blue-dark); }
.hf-empty { text-align: center; padding: 80px 24px; }
.hf-empty-icon { font-size: 64px; margin-bottom: 20px; display: block; opacity: 0.3; }
.hf-empty-title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; color: var(--hf-text); }
.hf-empty-text { font-size: 16px; font-weight: 300; color: #888; margin-bottom: 32px; }
.hf-confirm-card { max-width: 560px; margin: 60px auto; background: var(--hf-white); border-radius: var(--radius); border: 2px solid var(--hf-border); overflow: hidden; text-align: center; box-shadow: 8px 8px 0 0 var(--hf-teal); }
.hf-confirm-card-header { background: var(--hf-teal); padding: 40px 24px; border-bottom: 3px solid var(--hf-teal-dark); }
.hf-confirm-card-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 3px solid rgba(255,255,255,0.4); }
.hf-confirm-card-title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--hf-white); }
.hf-confirm-card-body { padding: 36px; }
.hf-release-code { font-family: var(--font-heading); font-size: 42px; font-weight: 700; letter-spacing: 0.2em; color: var(--hf-teal-dark); background: var(--hf-teal-light); padding: 20px; border-radius: 8px; display: block; margin: 20px 0; border: 2px solid var(--hf-teal); box-shadow: 4px 4px 0 0 var(--hf-teal-dark); }
.hf-legal-section { padding: var(--padding-section); background: var(--hf-white); }
.hf-legal-content { max-width: 780px; margin: 0 auto; padding: 0 24px; font-size: 16px; font-weight: 300; line-height: 1.8; color: #444; }
.hf-legal-content h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--hf-text); margin: 40px 0 16px; }
.hf-legal-content p { margin-bottom: 16px; }
.hf-legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.hf-legal-content ul li { margin-bottom: 8px; }
.hf-legal-content a { color: var(--hf-teal); }
.hf-legal-content a:hover { text-decoration: underline; }
.hf-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.hf-pagination a, .hf-pagination span { font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--hf-border); border-radius: 4px; color: var(--hf-text); transition: all 0.12s ease; box-shadow: 3px 3px 0 0 var(--hf-border); }
.hf-pagination a:hover { border-color: var(--hf-teal); color: var(--hf-teal); box-shadow: 3px 3px 0 0 var(--hf-teal); }
.hf-pagination .active { background: var(--hf-dark); border-color: var(--hf-dark); color: var(--hf-white); box-shadow: 3px 3px 0 0 var(--hf-green); }
.hf-spinner { width: 36px; height: 36px; border: 3px solid var(--hf-border); border-top-color: var(--hf-green); border-radius: 50%; animation: hfSpin 0.7s linear infinite; margin: 40px auto; }
@keyframes hfSpin { to { transform: rotate(360deg); } }
@media (max-width: 991px) { :root { --padding-section: 70px 0; } }
@media (max-width: 767px)  { :root { --padding-section: 50px 0; } .hf-container, .hf-container-wide { padding: 0 16px; } }

/* ============================================================
   NEW SECTIONS v2.2 — appended, no conflicts with existing classes
   Hero split, smoothie cups, tech split, pitch deck, investors
   ============================================================ */

/* ══════════════════════════════════════════
   HERO — REVIVE SPLIT (new classes only)
   .hf-hero-left / .hf-hero-right — replace old .hf-hero-inner
══════════════════════════════════════════ */
.hf-hero {
    display: flex;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background: transparent;
    align-items: stretch;
}
.hf-hero-left {
    width: 50%;
    background: #0a1206;
    display: flex;
    align-items: center;
    padding: 80px 56px 80px 48px;
    position: relative;
    flex-shrink: 0;
}
.hf-hero-left::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 320px; height: 200px;
    background: radial-gradient(ellipse at bottom left, rgba(109,200,32,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hf-hero-left-inner { position: relative; z-index: 2; max-width: 560px; }
.hf-hero-left .hf-title { font-size: 58px; color: #fff; line-height: 1.05; margin-bottom: 20px; }
.hf-hero-left .hf-subtitle { color: rgba(255,255,255,0.72); margin-bottom: 40px; font-size: 18px; max-width: 440px; }
.hf-hero-left .hf-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hf-hero-right {
    flex: 1;
    background: var(--hf-teal-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.hf-hero-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(0,180,170,0.15) 0%, transparent 100%);
    pointer-events: none;
}
.hf-hero-teal-band {
    width: 100%;
    height: 60px;
    background: var(--hf-teal-light);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Smoothie cups */
.hf-cups-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding: 40px 24px 0;
    position: relative;
    z-index: 2;
    width: 100%;
}
.hf-sv-cup {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
    cursor: default;
    flex-shrink: 0;
}
.hf-sv-cup:hover { transform: translateY(-10px); }
.hf-sv-straw { width: 7px; height: 64px; border-radius: 4px; margin-bottom: -6px; position: relative; z-index: 5; flex-shrink: 0; }
.hf-sv-lid { width: 104px; height: 18px; border-radius: 50px; background: rgba(255,255,255,0.22); border: 2.5px solid rgba(255,255,255,0.55); position: relative; z-index: 4; flex-shrink: 0; }
.hf-sv-body { width: 104px; height: 196px; position: relative; clip-path: polygon(7% 0%, 93% 0%, 85% 100%, 15% 100%); margin-top: -2px; overflow: hidden; flex-shrink: 0; }
.hf-sv-body-fill { position: absolute; inset: 0; }
.hf-sv-body-top { position: absolute; top: 0; left: 0; right: 0; height: 35%; display: flex; align-items: center; justify-content: center; font-size: 32px; padding-top: 8px; z-index: 2; }
.hf-sv-base { width: 52px; height: 9px; border-radius: 50%; background: rgba(0,0,0,0.18); margin-top: 0; flex-shrink: 0; }
.hf-sv-name { font-family: 'Oswald', serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; margin-top: 10px; color: #2d2d2d; max-width: 110px; line-height: 1.3; }
.hf-sv-cup-center .hf-sv-body { height: 240px; }
.hf-sv-cup-center .hf-sv-lid { width: 118px; }
.hf-sv-cup-center .hf-sv-straw { height: 80px; }
.hf-sv-cup-center .hf-sv-base { width: 60px; }
.hf-sv-cup-center { margin-bottom: 32px; }

@media (max-width: 900px) {
    .hf-hero { flex-direction: column-reverse; min-height: auto; }
    .hf-hero-left { width: 100%; padding: 52px 24px 52px; }
    .hf-hero-left .hf-title { font-size: 36px; }
    .hf-hero-right { width: 100%; min-height: 300px; }
    .hf-sv-straw { height: 40px; }
    .hf-sv-lid { width: 80px; }
    .hf-sv-body { width: 80px; height: 148px; }
    .hf-sv-cup-center .hf-sv-body { height: 178px; }
    .hf-sv-cup-center .hf-sv-lid { width: 90px; }
    .hf-sv-cup-center .hf-sv-straw { height: 54px; }
    .hf-sv-cup-center { margin-bottom: 20px; }
    .hf-sv-base { width: 40px; }
    .hf-sv-body-top { font-size: 22px; }
    .hf-sv-name { font-size: 10px; }
    .hf-cups-group { gap: 8px; padding: 28px 12px 0; }
    .hf-hero-teal-band { height: 40px; }
}
@media (max-width: 480px) {
    .hf-hero-left .hf-title { font-size: 30px; }
    .hf-hero-right { min-height: 240px; }
    .hf-sv-body { height: 120px; width: 68px; }
    .hf-sv-cup-center .hf-sv-body { height: 148px; width: 76px; }
    .hf-sv-lid { width: 68px; height: 14px; }
    .hf-sv-cup-center .hf-sv-lid { width: 76px; }
    .hf-sv-straw { height: 32px; width: 5px; }
    .hf-sv-cup-center .hf-sv-straw { height: 40px; }
}

/* ══════════════════════════════════════════
   MENU DIG — mobile 2-col grid
══════════════════════════════════════════ */
@media (max-width: 767px) {
    .hf-dig-cups-track {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        overflow-x: visible !important;
        padding: 0 16px !important;
        gap: 16px;
        scroll-snap-type: none;
    }
    .hf-dig-cup-slide { width: 100% !important; scroll-snap-align: none; padding: 0; }
    .hf-dig-cup-img, .hf-dig-cup-placeholder { height: 180px !important; box-shadow: 4px 4px 0 0 var(--hf-teal-dark) !important; font-size: 52px !important; }
    .hf-dig-arrows { display: none; }
    .hf-dig-info { width: 100% !important; padding: 0 16px !important; text-align: center; }
    .hf-dig::after { display: none; }
    .hf-dig-footer { background: #fff; padding: 24px 16px 40px; }
    .hf-dig { overflow: hidden; }
    .hf-dig-inner { max-width: 100%; overflow: hidden; }
    .hf-dig-cups { overflow: hidden; width: 100%; }
}

/* ══════════════════════════════════════════
   TECH SPLIT — clean two-column (no ::before tricks)
══════════════════════════════════════════ */
.hf-tech-split-section { overflow: hidden; padding: 0; }
.hf-tech-split-wrap { display: flex; align-items: stretch; min-height: 480px; }
.hf-tech-split-img-col { width: 45%; flex-shrink: 0; position: relative; overflow: hidden; }
.hf-tech-split-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hf-tech-split-img-fallback { width: 100%; height: 100%; min-height: 480px; background: linear-gradient(135deg,#edfad3 0%,#d0f5f3 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; }
.hf-tech-split-img-fallback span { font-size: 80px; }
.hf-tech-split-img-fallback strong { font-family: 'Oswald', serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--hf-green-dark); }
.hf-tech-split-content-col { flex: 1; background: var(--hf-green-light); padding: 80px 60px 80px 64px; display: flex; align-items: center; }
.hf-tech-split-content-inner { max-width: 520px; }
.hf-tech-split-content-inner strong { display: block; font-family: 'Oswald', serif; font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 24px; line-height: 1.3; }
.hf-tech-split-content-inner p { font-size: 17px; font-weight: 300; line-height: 1.7; color: #3d4d3d; margin-bottom: 16px; }
@media (max-width: 900px) {
    .hf-tech-split-wrap { flex-direction: column; }
    .hf-tech-split-img-col { width: 100%; height: 280px; }
    .hf-tech-split-img-col img { height: 280px; }
    .hf-tech-split-img-fallback { min-height: 280px; }
    .hf-tech-split-content-col { padding: 48px 24px; }
    .hf-tech-split-content-inner strong { font-size: 22px; }
}

/* ══════════════════════════════════════════
   PITCH DECK SECTIONS
══════════════════════════════════════════ */
/* Problem strip */
.hf-problem-strip { background: #fff; padding: var(--padding-section); border-top: 3px solid var(--hf-border); }
.hf-problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-problem-card { background: var(--hf-gray); border: 2px solid var(--hf-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: 4px 4px 0 0 var(--hf-border); transition: all 0.12s ease; }
.hf-problem-card:hover { border-color: var(--hf-teal); box-shadow: 4px 4px 0 0 var(--hf-teal); transform: translate(-2px,-2px); }
.hf-problem-card-icon { font-size: 44px; display: block; margin-bottom: 16px; }
.hf-problem-card-title { font-family: 'Oswald', serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.hf-problem-card-text { font-size: 14px; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 16px; }
.hf-problem-arrow { font-family: 'Oswald', serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hf-teal); display: flex; align-items: center; justify-content: center; gap: 6px; }
@media (max-width: 767px) { .hf-problem-grid { grid-template-columns: 1fr; } }

/* Market stats */
.hf-market-strip { background: var(--hf-dark); padding: var(--padding-section); border-top: 3px solid var(--hf-blue); }
.hf-market-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; text-align: center; }
.hf-market-stat-number { font-family: 'Oswald', serif; font-size: 52px; font-weight: 700; line-height: 1; display: block; margin-bottom: 12px; }
.hf-market-stat-label { font-family: 'Oswald', serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); display: block; margin-bottom: 8px; }
.hf-market-stat-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.5; }
@media (max-width: 767px) { .hf-market-inner { grid-template-columns: 1fr; gap: 32px; } }

/* Business model */
.hf-bizmodel { background: var(--hf-gray); padding: var(--padding-section); }
.hf-bizmodel-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-bizmodel-card { background: #fff; border: 2px solid var(--hf-border); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: 4px 4px 0 0 var(--hf-border); transition: all 0.12s ease; }
.hf-bizmodel-card:hover { border-color: var(--hf-green); box-shadow: 4px 4px 0 0 var(--hf-green); transform: translate(-2px,-2px); }
.hf-bizmodel-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.hf-bizmodel-name { font-family: 'Oswald', serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.hf-bizmodel-desc { font-size: 13px; font-weight: 300; color: #666; line-height: 1.6; }
@media (max-width: 900px) { .hf-bizmodel-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .hf-bizmodel-grid { grid-template-columns: 1fr; } }

/* Growth timeline */
.hf-growth { background: #fff; padding: var(--padding-section); }
.hf-growth-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; max-width: 900px; margin: 0 auto; padding: 0 24px; position: relative; }
.hf-growth-grid::before { content: ''; position: absolute; top: 44px; left: calc(16.666% + 24px); right: calc(16.666% + 24px); height: 3px; background: linear-gradient(90deg,var(--hf-green),var(--hf-teal),var(--hf-blue)); }
.hf-growth-step { text-align: center; padding: 0 16px; }
.hf-growth-num { width: 88px; height: 88px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Oswald', serif; font-size: 22px; font-weight: 700; color: #fff; border: 3px solid #fff; position: relative; z-index: 2; }
.hf-growth-year { font-family: 'Oswald', serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.hf-growth-title { font-family: 'Oswald', serif; font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.hf-growth-items { font-size: 14px; font-weight: 300; color: #666; line-height: 1.8; }
@media (max-width: 600px) { .hf-growth-grid { grid-template-columns: 1fr; } .hf-growth-grid::before { display: none; } .hf-growth-step { padding: 0 0 32px; } }

/* Financials */
.hf-financials { background: var(--hf-dark); padding: var(--padding-section); }
.hf-financials-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-fin-highlights { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; margin-top: 48px; }
.hf-fin-hi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid var(--hf-green); border-radius: 8px; padding: 16px 20px; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 12px; }
.hf-fin-hi::before { content: '✓'; color: var(--hf-green); font-weight: 700; font-size: 16px; flex-shrink: 0; }

/* Products 3-col */
.hf-products-3 { background: var(--hf-gray); padding: var(--padding-section); }
.hf-products-3-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-products-3-card { background: #fff; border: 2px solid var(--hf-border); border-radius: var(--radius); overflow: hidden; box-shadow: 6px 6px 0 0 var(--hf-border); text-align: center; transition: all 0.12s ease; }
.hf-products-3-card:hover { border-color: var(--hf-green); box-shadow: 6px 6px 0 0 var(--hf-green); transform: translate(-2px,-2px); }
.hf-products-3-card-header { padding: 40px 24px 24px; }
.hf-products-3-card-icon { font-size: 60px; display: block; margin-bottom: 20px; }
.hf-products-3-card-name { font-family: 'Oswald', serif; font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.hf-products-3-card-tag { font-family: 'Oswald', serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; }
.hf-products-3-card-body { padding: 0 24px 32px; font-size: 14px; font-weight: 300; color: #666; line-height: 1.7; }
@media (max-width: 767px) { .hf-products-3-grid { grid-template-columns: 1fr; } }

/* Innovation 3-col */
.hf-innovation { background: var(--hf-dark); padding: var(--padding-section); }
.hf-innovation-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hf-innovation-card { background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.12s ease; }
.hf-innovation-card:hover { background: rgba(109,200,32,0.1); border-color: var(--hf-green); box-shadow: 4px 4px 0 0 var(--hf-green); transform: translate(-2px,-2px); }
.hf-innovation-icon { font-size: 44px; display: block; margin-bottom: 20px; }
.hf-innovation-title { font-family: 'Oswald', serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 12px; }
.hf-innovation-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }
@media (max-width: 767px) { .hf-innovation-grid { grid-template-columns: 1fr; } }

/* Investors hero */
.hf-inv-hero { background: #0a1206; padding: 80px 24px; text-align: center; border-bottom: 3px solid var(--hf-green); position: relative; overflow: hidden; }
.hf-inv-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center bottom,rgba(109,200,32,0.15) 0%,transparent 70%); }
.hf-inv-hero > * { position: relative; z-index: 1; }

/* Target markets */
.hf-targets { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px 32px; margin-top: 32px; }
.hf-target-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.75); }
.hf-target-item:last-child { border-bottom: none; }
.hf-target-item::before { content: '→'; color: var(--hf-green); font-weight: 700; }

/* Mobile global grid fix for investors page */
@media (max-width: 767px) {
    .hf-innovation-grid,
    .hf-products-3-grid { grid-template-columns: 1fr !important; }
}