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

:root {
  --accent:   #e8001c;
  --hover:    #ff1a32;
  --gold:     #d4af37;
  --gold-dim: #b89b5e;
  --black:    #080808;
  --grey:     #1a1a1a;
  --red:      #e8001c;
  --white:    #d4af37;
  --dim:      #b89b5e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  backdrop-filter: blur(4px);
}

.nav-logo {
  /* SWAP FONT: change to 'Anton', 'Teko', 'Oswald', or 'Russo One' */
  font-family: 'Russo One', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img { height: 38px; width: auto; object-fit: contain; display: none; }
.nav-logo img.loaded { display: block; }
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-join {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #080808;
  background: var(--accent);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-join:hover { background: var(--hover); transform: scale(1.04); }

/* ── SHARED SECTION STYLES ── */
.section-header { margin-bottom: 5rem; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #080808;
  background: var(--accent);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, background 0.2s;
}
.btn-primary:hover { background: var(--hover); transform: translateY(-2px); }

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--white); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer {
  background: var(--grey);
  border-top: 1px solid rgba(212,175,55,0.08);
  padding: 2.5rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(184,155,94,0.4);
  text-transform: uppercase;
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--dim);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-instagram svg {
  width: 20px; height: 20px;
  fill: var(--dim);
  transition: fill 0.2s;
}
.footer-instagram:hover { color: #e1306c; }
.footer-instagram:hover svg { fill: #e1306c; }

/* ── MACHINES / EQUIPMENT CARDS ── */
.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.07);
}

.machine-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: transform 0.3s;
}

/* background image layer */
.machine-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.75);
  transition: filter 0.5s, transform 0.6s;
  transform: scale(1.05);
}
.machine-card:hover .machine-card-bg {
  filter: brightness(0.75) saturate(1);
  transform: scale(1);
}

/* red left bar */
.machine-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height 0.4s;
  z-index: 2;
}
.machine-card:hover::before { height: 100%; }

/* dark gradient so text stays readable */
.machine-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 40%, rgba(8,8,8,0.3) 100%);
  z-index: 1;
}

.machine-card-content {
  position: relative;
  z-index: 3;
}

.machine-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.machine-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.machine-desc {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.65;
  font-weight: 300;
}

/* Show More button */
.machines-more {
  margin-top: 3rem;
  text-align: center;
}
.btn-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 1rem 3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-more::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-more:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-more:hover::after { transform: translateX(4px); }

/* ── PRICING SLASH ── */
.plan-original {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  color: rgba(184,155,94,0.45);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* ── "GOOD VALUE" PLAN BADGE ── */
.plan-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.plan-card.good-value {
  border-color: rgba(212,175,55,0.25);
  background: linear-gradient(135deg, rgba(212,175,55,0.04), transparent);
}

/* ── REVIEWS (click-to-pause toggle) ── */
.reviews-track-wrapper {
  overflow: hidden;
  margin-top: 4rem;
  -webkit-mask: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  cursor: pointer;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-reviews 40s linear infinite;
  transition: animation-play-state 0.1s;
}
.reviews-track.paused { animation-play-state: paused; }

@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--grey);
  border: 1px solid rgba(212,175,55,0.1);
  padding: 2rem 2.5rem;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  user-select: none;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(232,0,28,0.15);
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.review-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.review-source {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--dim);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.review-source::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l3.66-2.84z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* pause hint */
.reviews-pause-hint {
  text-align: center;
  margin-top: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(184,155,94,0.35);
}

/* ── FLOATING BUTTON GROUP ── */
.fab-group {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* ── WHATSAPP BUTTON ── */
#whatsapp-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #0d0d0d;
  border: 1px solid rgba(232,0,28,0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  position: relative;
}
#whatsapp-btn::before {
  content: 'WhatsApp';
  position: absolute;
  right: calc(100% + 0.8rem);
  background: #0d0d0d;
  border: 1px solid rgba(232,0,28,0.3);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#whatsapp-btn:hover::before { opacity: 1; }
#whatsapp-btn:hover {
  background: rgba(232,0,28,0.12);
  border-color: var(--accent);
  transform: scale(1.08);
}
#whatsapp-btn svg { width: 26px; height: 26px; fill: #25D366; }

/* ── CHATBOT BUTTON ── */
#chatbot-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(232,0,28,0.4);
  transition: transform 0.2s, background 0.2s;
}
#chatbot-btn:hover { background: var(--hover); transform: scale(1.08); }
#chatbot-btn svg { width: 26px; height: 26px; fill: #080808; }

/* ── "TALK TO ME!" BUBBLE ── */
.chat-bubble-label {
  background: var(--accent);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232,0,28,0.45);
  animation: bubbleBounce 2.4s ease-in-out infinite;
  pointer-events: none;
  position: relative;
}
.chat-bubble-label::after {
  content: '';
  position: absolute;
  bottom: -7px; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--accent);
}
@keyframes bubbleBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
body.chat-open .chat-bubble-label { display: none; }

/* ── CHATBOT ── */
#chatbot-window {
  position: fixed;
  bottom: 8rem; right: 2rem;
  z-index: 200;
  width: 340px;
  max-height: 480px;
  background: #101010;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 12px 48px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
#chatbot-window.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.chat-header {
  background: var(--grey);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.chat-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.chat-header-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.chat-close {
  background: none;
  border: none;
  color: var(--dim);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.chat-close:hover { color: var(--accent); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.15) transparent;
}
.chat-msg {
  max-width: 85%;
  padding: 0.65rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  border-radius: 2px;
}
.chat-msg.bot {
  background: var(--grey);
  color: var(--gold-dim);
  align-self: flex-start;
  border-left: 2px solid var(--accent);
}
.chat-msg.user {
  background: rgba(232,0,28,0.12);
  color: var(--gold);
  align-self: flex-end;
  border-right: 2px solid var(--accent);
}
.chat-msg.typing { opacity: 0.5; font-style: italic; }
.chat-input-row {
  display: flex;
  border-top: 1px solid rgba(212,175,55,0.1);
}
.chat-input-row input {
  flex: 1;
  background: #0a0a0a;
  border: none;
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  padding: 0.9rem 1rem;
  outline: none;
}
.chat-input-row input::placeholder { color: rgba(184,155,94,0.3); }
.chat-input-row button {
  background: var(--accent);
  border: none;
  color: #080808;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 0 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-input-row button:hover { background: var(--hover); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  #contact { grid-template-columns: 1fr !important; gap: 3rem !important; }
}
/* Review avatars (live Google reviews) */
.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a;
  font-size: 1rem;
}

/* Always show hamburger */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}
@media (min-width: 769px) {
  .nav-hamburger { display: flex; } /* visible on all sizes — sidebar is supplementary */
}

/* ── HAMBURGER ── */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  transition: background 0.2s, transform 0.3s, opacity 0.3s;
}
.nav-hamburger:hover span { background: var(--red); }
.sidebar-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sidebar-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.sidebar-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.sidebar-open .sidebar-overlay { opacity: 1; pointer-events: all; }

/* ── SIDEBAR DRAWER ── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #0d0d0d;
  border-right: 1px solid rgba(212,175,55,0.1);
  z-index: 400;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.sidebar-open .sidebar { transform: translateX(0); }

.sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.sidebar-logo {
  font-family: 'Russo One', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.sidebar-logo span { color: var(--red); }
.sidebar-close {
  background: none; border: none;
  color: var(--dim); font-size: 1.2rem;
  cursor: pointer; transition: color 0.2s; line-height: 1;
}
.sidebar-close:hover { color: var(--accent); }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.sidebar-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sidebar-nav a::before { content: '—'; color: var(--red); font-size: 0.9rem; opacity: 0; transition: opacity 0.2s; }
.sidebar-nav a:hover { color: var(--accent); padding-left: 0.5rem; }
.sidebar-nav a:hover::before { opacity: 1; }

.sidebar-details {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}
.sidebar-detail-item a { color: var(--dim); text-decoration: none; }
.sidebar-detail-item a:hover { color: var(--gold); }
.sidebar-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
}
.sidebar-cta {
  display: block;
  margin-top: 2rem;
  background: var(--accent);
  color: #080808;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-cta:hover { background: var(--hover); }

/* ── BMI CALCULATOR ── */
#bmi {
  background: #0a0a0a;
  border-top: 1px solid rgba(212,175,55,0.06);
  border-bottom: 1px solid rgba(212,175,55,0.06);
  padding: 4rem 6vw;
}
.bmi-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.bmi-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bmi-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.bmi-inputs {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.bmi-field { display: flex; flex-direction: column; gap: 0.4rem; }
.bmi-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
}
.bmi-input-wrap {
  display: flex;
  align-items: center;
  background: #161616;
  border: 1px solid rgba(212,175,55,0.15);
  transition: border-color 0.2s;
}
.bmi-input-wrap:focus-within { border-color: var(--red); }
.bmi-input-wrap input {
  background: none; border: none;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  width: 70px;
  padding: 0.6rem 0.8rem;
  outline: none;
}
.bmi-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }
.bmi-input-wrap span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--dim); padding-right: 0.8rem;
}
.bmi-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent); color: #080808;
  border: none; padding: 0.7rem 1.6rem;
  cursor: pointer; transition: background 0.2s; height: 42px;
}
.bmi-btn:hover { background: var(--hover); }
.bmi-result { margin-top: 1.2rem; }
.bmi-score-wrap {
  display: flex; align-items: baseline;
  gap: 1rem; margin-bottom: 0.8rem;
}
.bmi-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; line-height: 1; color: var(--gold);
}
.bmi-category {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.bmi-bar-track {
  height: 4px;
  background: rgba(212,175,55,0.1);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.bmi-bar-fill {
  height: 100%; border-radius: 2px;
  transition: width 0.6s ease, background 0.4s;
}
.bmi-bar-labels {
  display: flex; justify-content: space-between;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(184,155,94,0.35);
}
@media (max-width: 768px) {
  .bmi-inner { grid-template-columns: 1fr; gap: 2rem; }
}