/* KetoGenix DE - Full-Screen Split Hero & Live Ketosis Macro Slider */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

:root {
  --bg-dark: #0A192F;
  --bg-card: #112240;
  --bg-card-light: #233554;
  --accent-lime: #84CC16;
  --accent-cyan: #38BDF8;
  --text-white: #F8FAFC;
  --text-muted: #8892B0;
  --border: rgba(255, 255, 255, 0.12);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-lime: 0 10px 30px rgba(132, 204, 22, 0.2);
  --radius-card: 24px;
  --radius-btn: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 5rem 0; }

.top-notice { background: #112240; color: #8892B0; padding: 0.45rem 1rem; font-size: 0.8rem; text-align: center; border-bottom: 1px solid var(--border); }
.top-bar { background: var(--accent-lime); color: #0A192F; font-weight: 700; padding: 0.5rem 0; font-size: 0.85rem; }
.header { position: sticky; top: 0; z-index: 1000; background: rgba(10, 25, 47, 0.95); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.7rem; font-weight: 800; color: white; display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); }
.logo-badge { width: 42px; height: 42px; background: var(--accent-lime); color: #0A192F; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-lime); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-link { font-weight: 500; color: #CCD6F6; transition: color 0.2s; }
.nav-link:hover { color: var(--accent-lime); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.85rem 1.8rem; font-weight: 700; font-size: 0.95rem; border-radius: var(--radius-btn); border: none; cursor: pointer; transition: all 0.25s; }
.btn-primary { background: var(--accent-lime); color: #0A192F; box-shadow: var(--shadow-lime); }
.btn-primary:hover { background: #65A30D; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--border); color: white; background: transparent; }
.btn-block { width: 100%; }

.badge { display: inline-block; padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; }
.badge-lime { background: rgba(132, 204, 22, 0.15); color: var(--accent-lime); border: 1px solid rgba(132, 204, 22, 0.3); }
.badge-cyan { background: rgba(56, 189, 248, 0.15); color: var(--accent-cyan); border: 1px solid rgba(56, 189, 248, 0.3); }

/* SPLIT HERO WITH LIVE MACRO SLIDER */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; min-height: 80vh; }
.hero-card { background: var(--bg-card); border: 2px solid var(--accent-lime); border-radius: 28px; padding: 2.5rem; box-shadow: var(--shadow-lime); }

.macro-slider { width: 100%; margin: 1.5rem 0; accent-color: var(--accent-lime); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2.2rem; }

.form-control { width: 100%; padding: 0.9rem 1.2rem; background: rgba(255, 255, 255, 0.06); border: 2px solid var(--border); border-radius: 12px; font-family: var(--font-body); font-size: 0.95rem; color: white; margin-top: 0.4rem; }
.form-control:focus { outline: none; border-color: var(--accent-lime); }

.footer { background: #020C1B; border-top: 1px solid var(--border); padding: 4.5rem 0 2rem 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #8892B0; }
.footer-links a:hover { color: white; }

@media (max-width: 992px) { .hero-split { grid-template-columns: 1fr; } }
