/* ============================================================
   SMARTKETO — Ketone Flux · Portugal
   Design: Bold neo-editorial / kinetic metabolic energy
   ============================================================ */

:root {
  --ink:           #0A0612;
  --ink-soft:      #1A1228;
  --lime:          #C8F135;
  --lime-dim:      #A8D12A;
  --coral:         #FF4D6D;
  --teal:          #2DD4BF;
  --violet:        #8B5CF6;
  --cream:         #F5F0E8;
  --bg-deep:       var(--ink);
  --bg-mid:        var(--ink-soft);
  --bg-light:      var(--cream);
  --bg-warm:       #EDE6DA;
  --surface:       #FFFFFF;
  --surface-dark:  var(--ink-soft);
  --text-dark:     var(--ink);
  --text-mid:      #3D3550;
  --text-muted:    #6B6280;
  --text-on-dark:  #F5F0E8;
  --accent:        var(--coral);
  --accent-dark:   #E8365A;
  --accent-light:  #FFE4EA;
  --accent-glow:   rgba(255,77,109,0.35);
  --accent-2:      var(--teal);
  --accent-2-lt:   #CCFBF1;
  --accent-warm:   var(--lime);
  --gold:          var(--lime);
  --gold-lt:       #F0FCD4;
  --sand:          var(--bg-warm);
  --sand-mid:      #C4BAB0;
  --border:        rgba(10,6,18,0.10);
  --border-soft:   rgba(10,6,18,0.05);
  --border-dark:   rgba(255,255,255,0.10);
  --shadow-sm:     0 2px 12px rgba(10,6,18,0.08);
  --shadow-md:     0 12px 40px rgba(10,6,18,0.12);
  --shadow-lg:     0 24px 64px rgba(10,6,18,0.18);
  --shadow-glow:   0 0 60px rgba(200,241,53,0.25);
  --shadow-coral:  0 8px 32px rgba(255,77,109,0.30);
  --radius-xl:     28px;
  --radius-lg:     20px;
  --radius-md:     14px;
  --radius-sm:     8px;
  --max-width:     1180px;
  --font-display:  'Unbounded', system-ui, sans-serif;
  --font-sans:     'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif:    var(--font-display);
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.08); }
  66%       { transform: translate(-20px, 25px) scale(0.95); }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { display: block; }

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--ink);
  color: var(--lime);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-bottom: 2px solid var(--lime);
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 4%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  gap: 20px;
  background: rgba(10,6,18,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200,241,53,0.18);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(10,6,18,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--teal) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(200,241,53,0.40);
  position: relative;
}

.brand-logo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 15px;
  border: 1px solid rgba(200,241,53,0.35);
}

.brand-logo svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
}

.brand-text-wrap { display: grid; gap: 0; }

.brand-tagline {
  font-size: 0.58rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.nav { display: flex; align-items: center; gap: 2px; }

.nav-link {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(200,241,53,0.12);
  color: var(--lime);
}

.nav-cta {
  background: var(--lime) !important;
  color: var(--ink) !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 4px 20px rgba(200,241,53,0.35);
  margin-left: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(200,241,53,0.50);
  background: var(--lime) !important;
  color: var(--ink) !important;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.badge-green  { background: rgba(45,212,191,0.15); color: var(--teal); border: 1px solid rgba(45,212,191,0.30); }
.badge-amber  { background: rgba(200,241,53,0.15); color: var(--lime-dim); border: 1px solid rgba(200,241,53,0.30); }
.badge-gold   { background: var(--gold-lt); color: #5A6B0A; border: 1px solid rgba(200,241,53,0.35); }
.badge-ad     { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.10); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--coral);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 14px 40px rgba(255,77,109,0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid rgba(200,241,53,0.45);
}

.btn-outline:hover {
  background: rgba(200,241,53,0.10);
  border-color: var(--lime);
  color: var(--lime);
}

.hero .btn-outline {
  color: var(--lime);
  border-color: rgba(200,241,53,0.40);
}

.hero .btn-outline:hover {
  background: rgba(200,241,53,0.12);
}

.btn-amber {
  background: var(--lime);
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(200,241,53,0.35);
}

.btn-amber:hover { transform: translateY(-2px); color: var(--ink); }

.btn-lg { padding: 17px 38px; font-size: 0.95rem; }

/* ── HERO ── */
.hero {
  background: var(--ink);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
  color: var(--text-on-dark);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,241,53,0.22), transparent 70%);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,77,109,0.18), transparent 70%);
  bottom: 5%; left: -8%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,212,191,0.15), transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -8s;
}

.hero-watermark {
  position: absolute;
  bottom: -5%;
  left: -2%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,241,53,0.08);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--coral));
  border-radius: 2px;
}

.hero-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-family: var(--font-display);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw + 0.5rem, 3.8rem);
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
  text-shadow: 0 0 40px rgba(200,241,53,0.45);
  display: inline-block;
}

.hero-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.75;
}

.hero-intro strong { color: #fff; }

/* Bento features */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.70);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.hero-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(200,241,53,0.25);
  background: rgba(200,241,53,0.05);
}

.hero-feature--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(200,241,53,0.08) 0%, rgba(45,212,191,0.06) 100%);
  border-color: rgba(200,241,53,0.20);
  font-size: 0.9rem;
}

.hero-feature--accent {
  background: rgba(255,77,109,0.08);
  border-color: rgba(255,77,109,0.20);
}

.hero-feature-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: rgba(200,241,53,0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  border: 1px solid rgba(200,241,53,0.20);
}

.hero-feature--accent .hero-feature-icon {
  background: rgba(255,77,109,0.15);
  border-color: rgba(255,77,109,0.25);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--lime), var(--teal), var(--coral), var(--violet), var(--lime));
  animation: pulse-glow 4s ease-in-out infinite;
  opacity: 0.35;
  filter: blur(2px);
}

.hero-product-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  position: relative;
  z-index: 1;
  transform: rotate(2deg);
  transition: transform 0.4s;
}

.hero-product-card:hover { transform: rotate(0deg) scale(1.02); }

.hero-product-card img {
  width: 85%;
  margin: 0 auto 20px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.40));
}

.product-price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 26px;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(200,241,53,0.35);
}

.price-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; font-family: var(--font-display); opacity: 0.7; }
.price-value { font-size: 1.8rem; font-weight: 800; font-family: var(--font-display); line-height: 1.1; }
.price-sub   { font-size: 0.72rem; opacity: 0.65; font-weight: 600; }

.floating-badge {
  position: absolute;
  background: var(--ink-soft);
  border: 1px solid rgba(200,241,53,0.25);
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.76rem;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  z-index: 2;
}

.fb-top-right { top: -12px; right: -20px; animation: orb-drift 6s ease-in-out infinite; }
.fb-bottom-left { bottom: 16px; left: -24px; color: var(--coral); border-color: rgba(255,77,109,0.30); animation: orb-drift 8s ease-in-out infinite reverse; }

/* ── MARQUEE TRUST BAR ── */
.trust-bar {
  background: var(--lime);
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.trust-items {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 16px 24px;
  flex-shrink: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-icon {
  width: 34px; height: 34px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transform: rotate(-4deg);
}

/* ── SECTIONS ── */
.section { padding: 80px 0; position: relative; }
.section-sm { padding: 48px 0; }

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

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-eyebrow.centered { justify-content: center; }

.eyebrow-line {
  width: 32px; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--lime));
  border-radius: 2px;
}

.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-family: var(--font-display);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0;
  line-height: 1.7;
}

.section-subtitle.wide { max-width: 720px; }

/* ── ARTICLE ── */
.article-section {
  background: var(--surface);
  position: relative;
}

.article-section::before {
  content: '01';
  position: absolute;
  top: 40px; right: 5%;
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10,6,18,0.05);
  line-height: 1;
  pointer-events: none;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-dark);
  margin: 0 0 16px;
  font-weight: 700;
}

.article-body p {
  color: var(--text-mid);
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-body p:last-child { margin-bottom: 0; }

.pull-quote {
  border-left: 4px solid var(--lime);
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--accent-2-lt) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  position: relative;
}

.pull-quote::before {
  content: '❝';
  position: absolute;
  top: -8px; left: 12px;
  font-size: 2rem;
  color: var(--lime);
  opacity: 0.5;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  color: var(--ink);
  margin: 0 !important;
  line-height: 1.55;
  font-weight: 600;
}

.article-sidebar { display: grid; gap: 20px; }

.sidebar-card {
  background: var(--ink);
  color: var(--text-on-dark);
  border: 1px solid rgba(200,241,53,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.sidebar-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(200,241,53,0.15), transparent 70%);
}

.sidebar-card--light {
  background: var(--gold-lt);
  color: var(--text-dark);
  border-color: rgba(200,241,53,0.35);
}

.sidebar-card--light::after { display: none; }

.sidebar-card--light .sidebar-card-title { color: var(--ink); }

.sidebar-card--light p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lime);
  margin: 0 0 14px;
}

.ingredient-list { display: grid; gap: 8px; }

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.ingredient-item:hover { border-color: rgba(200,241,53,0.25); }

.ingredient-num {
  width: 30px; height: 30px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.ingredient-name { font-size: 0.86rem; font-weight: 600; color: #fff; }
.ingredient-desc { font-size: 0.74rem; color: rgba(255,255,255,0.45); }

/* ── STATS ── */
.stats-strip {
  background: linear-gradient(270deg, var(--coral), var(--violet), var(--teal), var(--coral));
  background-size: 300% 300%;
  animation: gradient-shift 8s ease infinite;
  padding: 0;
  position: relative;
}

.stats-strip .container { padding: 56px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  color: #fff;
  padding: 24px 16px;
  background: rgba(0,0,0,0.20);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s;
}

.stat-item:hover { transform: translateY(-6px) rotate(-1deg); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(200,241,53,0.40);
}

.stat-label {
  font-size: 0.82rem;
  opacity: 0.88;
  font-weight: 600;
}

.stat-divider { display: none; }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--cream);
  position: relative;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--lime) 0, var(--lime) 20px, var(--coral) 20px, var(--coral) 40px, var(--teal) 40px, var(--teal) 60px);
}

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

.step-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: left;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--lime);
}

.step-card:nth-child(2)::before { background: var(--coral); }
.step-card:nth-child(3)::before { background: var(--teal); }

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,241,53,0.30);
}

.step-number {
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 0 18px;
  transform: rotate(-6deg);
  box-shadow: 4px 4px 0 var(--lime);
}

.step-card:nth-child(2) .step-number { color: var(--coral); box-shadow: 4px 4px 0 var(--coral); }
.step-card:nth-child(3) .step-number { color: var(--teal); box-shadow: 4px 4px 0 var(--teal); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '★';
  position: absolute;
  top: 20px; right: 8%;
  font-size: 12rem;
  color: rgba(200,241,53,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .section-title { color: #fff; }
.testimonials-section .eyebrow-text { color: var(--lime); }

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,241,53,0.25);
}

.testimonial-card--offset { margin-top: 32px; }

.testimonial-card--highlight {
  background: linear-gradient(135deg, rgba(200,241,53,0.10) 0%, rgba(45,212,191,0.08) 100%);
  border-color: rgba(200,241,53,0.25);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px; right: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(200,241,53,0.08);
  line-height: 1;
}

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--lime); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 10px; }

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.author-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.author-location { font-size: 0.76rem; color: rgba(255,255,255,0.40); }

.disclaimer-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 28px;
  font-style: italic;
}

/* ── PRODUCT ── */
.product-section {
  background: var(--cream);
  position: relative;
}

.product-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(200,241,53,0.06));
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-visual {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg at 50% 50%, var(--lime), var(--coral), var(--teal), var(--lime));
  opacity: 0.12;
}

.product-visual img {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.40));
}

.product-info { display: grid; gap: 20px; }

.product-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.03em;
}

.product-name::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--lime));
  margin-top: 10px;
  border-radius: 2px;
}

.product-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.product-benefits { display: grid; gap: 10px; }

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.25s, border-color 0.25s;
}

.benefit-row:hover {
  transform: translateX(6px);
  border-color: rgba(200,241,53,0.40);
}

.benefit-icon {
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-family: var(--font-display);
}

.benefit-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ── ORDER ── */
.order-section {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--teal), var(--lime));
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.order-info { display: grid; gap: 20px; }
.order-info .section-title { color: #fff; }
.order-info .eyebrow-text { color: var(--lime); }

.order-price-block {
  background: rgba(200,241,53,0.08);
  border: 2px solid rgba(200,241,53,0.25);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-price-label { font-size: 0.85rem; opacity: 0.75; font-weight: 600; }
.order-price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(200,241,53,0.35);
}
.order-price-note { font-size: 0.76rem; opacity: 0.55; margin-top: 4px; }

.order-guarantees { display: grid; gap: 10px; }

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.guarantee-icon { font-size: 1.1rem; }

/* ── FORM ── */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--lime), var(--teal));
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 22px;
}

.form { display: grid; gap: 16px; }

.form-group { display: grid; gap: 6px; }

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--lime-dim);
  box-shadow: 0 0 0 4px rgba(200,241,53,0.20);
  background: #fff;
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: var(--font-display);
  cursor: pointer;
  box-shadow: var(--shadow-coral);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,77,109,0.45);
}

.form-legal {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

.form-legal a { color: var(--coral); text-decoration: underline; }

/* ── BLOG ── */
.blog-section { background: var(--surface); }

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

.blog-card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,241,53,0.40);
}

.blog-card-img {
  height: 180px;
  background: var(--ink);
  overflow: hidden;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: linear-gradient(135deg, rgba(200,241,53,0.15), rgba(255,77,109,0.12));
}

.blog-card-body { padding: 22px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card-date { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; }

.blog-card-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--lime);
  padding: 3px 9px;
  border-radius: 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--coral);
  margin-top: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── DISCLAIMER ── */
.disclaimer-section { background: var(--cream); }

.disclaimer-box {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}

.disclaimer-box::before {
  content: '!';
  position: absolute;
  top: -14px; left: 28px;
  width: 28px; height: 28px;
  background: var(--coral);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}

.disclaimer-icon {
  width: 44px; height: 44px;
  background: var(--gold-lt);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-text { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }
.disclaimer-text strong { color: var(--text-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 28px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--coral) 33%, var(--teal) 66%, var(--lime) 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 28px;
}

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: var(--teal); }

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  margin-top: 12px;
  line-height: 1.65;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.footer-links { display: grid; gap: 8px; }

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-link:hover { color: var(--lime); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.footer-contact-item a { color: var(--teal); }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-contact-icon { font-size: 0.9rem; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 680px;
}

.footer-legal a { color: rgba(255,255,255,0.50); text-decoration: underline; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  font-family: var(--font-display);
}

/* ── CONTENT PAGES ── */
.content-page {
  padding: 40px 0 60px;
  background: var(--cream);
}

.content-wrap { max-width: 780px; margin: 0 auto; }

.content-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--teal));
}

.content-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 16px 0 24px;
}

.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

.content-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 16px;
}

.content-card p:last-child { margin-bottom: 0; }
.content-card strong { color: var(--text-dark); }
.content-card a { color: var(--coral); text-decoration: underline; }

.content-card ul {
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 16px;
}

/* ── BLOG PAGES ── */
.blog-page { padding: 40px 0 60px; background: var(--cream); }

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.post-page { padding: 40px 0 60px; background: var(--cream); }

.post-wrap { max-width: 740px; margin: 0 auto; }

.post-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--coral));
}

.post-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid var(--border);
}

.post-hero-img img { width: 100%; height: auto; object-fit: cover; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

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

.post-cat {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--lime);
  padding: 3px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
}

.post-card h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 20px;
  line-height: 1.25;
}

.post-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 16px;
}

.post-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,18,0.75);
  z-index: 200;
  backdrop-filter: blur(8px);
}

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  height: 100%;
  background: var(--ink);
  padding: 28px 24px;
  display: grid;
  gap: 6px;
  align-content: start;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--lime);
}

.mobile-nav.open { display: block; }

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--lime);
  justify-self: end;
  padding: 4px 8px;
}

.mobile-nav-link {
  display: block;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-display);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(200,241,53,0.10);
  color: var(--lime);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header { top: 8px; margin-bottom: -60px; }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-grid,
  .product-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bento-grid { grid-template-columns: 1fr; }
  .hero-feature--wide { grid-column: span 1; }

  .hero-product-card { max-width: 360px; margin: 0 auto; transform: none; }
  .hero-watermark { font-size: 6rem; }

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

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

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--offset { margin-top: 0; }

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

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

  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hero { padding: 88px 0 48px; }
  .section { padding: 56px 0; }

  .hero h1 { font-size: 2rem; }

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

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

  .content-card,
  .post-card { padding: 28px 22px; }

  .order-price-block { flex-direction: column; text-align: center; gap: 8px; }

  .fb-top-right,
  .fb-bottom-left { display: none; }

  .header-inner { border-radius: 20px; padding: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
