/* ================================================
   RENTZOO — Mobile-First Professional Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --black:    #0f0f0f;
  --dark:     #1a1a1a;
  --dark2:    #242424;
  --gray-7:   #333;
  --gray-5:   #666;
  --gray-4:   #999;
  --gray-2:   #e0e0e0;
  --gray-1:   #f4f4f4;
  --white:    #ffffff;
  --gold:     #FFC045;
  --gold-d:   #e6a800;
  --teal:     #0d838a;
  --green:    #25D366;
  --green-d:  #1db954;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1100px;
  --ease: all .22s ease;
  --r: 12px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { 
  font-family: var(--font); 
  background: var(--white); 
  color: var(--gray-5); 
  line-height: 1.7; 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden; 
  animation: pageFadeIn 0.5s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container { max-width: var(--max); width: 92%; margin: 0 auto; }

/* ---- Section spacing (mobile first) ---- */
.section-white { padding: 60px 0; background: var(--white); }
.section-gray  { padding: 60px 0; background: var(--gray-1); }
.section-teal  { padding: 60px 0; background: var(--teal); color: var(--white); }
.section-teal .section-title, .section-teal .section-head h2 { color: var(--white); }
.section-teal p, .section-teal .sub { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.section-teal strong { color: var(--gold); }
.section-teal .label { background: var(--black); color: var(--gold); border-color: var(--black); }

.section-brand { padding: 60px 0; background: var(--gold); border-top: 1px solid var(--black); border-bottom: 1px solid var(--black); color: var(--black); }

.section-brand h2, .section-brand .section-title, .section-brand .section-head h2, .section-brand .about-body h2 { color: var(--black); }
.section-brand p, .section-brand .sub, .section-brand .about-body p { color: rgba(0, 0, 0, 0.85); font-weight: 500; }
.section-brand .label { background: var(--black); color: var(--gold); border-color: var(--black); }
.section-brand .btn-outline { border-color: var(--black); color: var(--black); font-weight: 700; }
.section-brand .btn-outline:hover { background: var(--black); color: var(--gold); }

.ps-card { background: var(--teal); color: #fff; border: 2px solid var(--black); box-shadow: 4px 4px 0 var(--black); }
.ps-card h3 { color: #fff !important; font-size: 1.2rem; font-weight: 800; }
.ps-card p { color: #fff !important; font-weight: 500; }
.ps-list li { color: #fff !important; font-weight: 500; }
.ps-icon { background: rgba(0,0,0,0.25); color: var(--white); }
.ps-problem .ps-icon { color: var(--white); background: rgba(255,255,255,0.15); }
.section-brand .pill { background: var(--white); border: 2px solid var(--black); box-shadow: 2px 2px 0 var(--black); }

/* ---- Labels & Headers ---- */
.label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255,192,69,.12);
  border: 1px solid rgba(255,192,69,.25);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}

.label-light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .sub { margin: 0 auto; }

.section-head h2 {
  font-size: clamp(1.65rem, 5.5vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.sub {
  font-size: .95rem;
  color: var(--gray-4);
  max-width: 520px;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--ease);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: var(--gray-7); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--green-d); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-d); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--gray-7);
  border: 1.5px solid var(--gray-2);
}
.btn-outline:hover { border-color: var(--black); color: var(--black); }

.btn-nav-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  font-weight: 700;
}
.btn-nav-outline:hover {
  background: var(--black);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-dark:hover { background: rgba(255,255,255,.08); }

.mt { margin-top: 24px; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo img { height: 40px; width: auto; }

.nav-logo span {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
  letter-spacing: -.02em;
}

/* Mobile: Top Slide-Down Drawer */
.nav-links {
  position: absolute;
  top: 100%; /* drops down right under the navbar */
  left: 0;
  width: 100%;
  background: var(--white);
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid var(--black);
  z-index: 950;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  
  /* Robust drawer animation using max-height */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  max-height: 400px; /* enough to show all links */
}

.nav-links li {
  width: 100%;
  border-bottom: 1px solid var(--gray-2);
}

.nav-links li:last-child {
  border-bottom: none;
}

.nav-links li a {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  text-align: left;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.nav-links li a:active {
  opacity: 0.7;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--gray-1);
}

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

.nav-cta-btn {
  display: inline-flex;
  font-size: .58rem;
  padding: 5px 8px;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

/* Modern hamburger with animated bars */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              background 0.3s ease;
  transform-origin: center;
}

.hamburger.active span {
  background: var(--black);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay for the menu */
.nav-overlay {
  display: none !important;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  padding: 110px 0 60px;
  background: var(--teal);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gray-7);
}

.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.2rem, 10vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  text-align: left;
}

.highlight { color: var(--gold); }

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 90%;
  text-align: left;
}

/* Buttons — stacked on mobile */
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-btns .btn { width: 100%; }

.btn-large {
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  justify-content: center;
}

.btn-ghost-quiet {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.btn-ghost-quiet:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* Compact equipment snippets for mobile */
.equipment-snippet {
  background: var(--gold);
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 16px;
  margin-top: 10px;
}

.snippet-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.snippet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.snippet-tags span {
  background: var(--black);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--black);
}

/* Stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 44px;
}

.stat-item {
  padding: 20px 16px;
  background: rgba(255,255,255,.03);
  text-align: left;
}

.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  font-weight: 400;
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}

.trust-inner {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}

.trust-inner::-webkit-scrollbar { display: none; }

.trust-inner span {
  font-size: .8rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .5px;
  flex-shrink: 0;
}

/* ================================================
   PROBLEM / SOLUTION
   ================================================ */
.ps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-card {
  padding: 32px 24px;
  border-radius: var(--r);
  border: 1px solid var(--gray-2);
  transition: var(--ease);
}

.ps-problem .ps-title-ico { background: rgba(255,82,82,0.1); }
.ps-solution .ps-title-ico { background: rgba(37,211,102,0.1); }

.ps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ps-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--gray-1);
}

/* Icon background handled globally in ps-icon */

.ps-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 10px;
}

.ps-card p {
  font-size: .88rem;
  color: var(--gray-4);
  line-height: 1.7;
}

.ps-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-5);
  line-height: 1.5;
}

.x { color: var(--white); font-weight: 800; flex-shrink: 0; margin-top: 1px; opacity: 0.9; }
.chk { color: var(--white); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ================================================
   WHY CHOOSE
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-card {
  padding: 32px 24px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  background: var(--gold);
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-icon {
  font-size: 1.4rem;
  margin-bottom: 24px;
  width: 48px; height: 48px;
  background: var(--gray-1);
  color: var(--black);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--white);
  color: var(--black);
}

.why-card:hover p {
  color: rgba(0,0,0,0.85);
  font-weight: 500;
}

.why-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: .88rem;
  color: var(--gray-5);
  line-height: 1.6;
}

/* ================================================
   ABOUT PREVIEW
   ================================================ */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-img {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(15%);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.ab-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.ab-lbl { font-size: .68rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .5px; }

.about-body { padding-top: 24px; }

.about-body h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-body p {
  font-size: .9rem;
  color: var(--gray-4);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--gray-1);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-7);
  border: 1px solid var(--gray-2);
}

/* ================================================
   FAQ
   ================================================ */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.active { border-color: var(--black); }

.faq-q {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.faq-q span:first-child {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

.faq-ico {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-4);
  transition: transform .3s ease, color .2s;
}

.faq-item.active .faq-ico { transform: rotate(45deg); color: var(--gold-d); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.active .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 20px 18px;
  font-size: .9rem;
  color: var(--gray-5);
  line-height: 1.7;
}

/* ================================================
   CTA CARD
   ================================================ */
.cta-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,192,69,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta-btns .btn { width: 100%; max-width: 320px; }

.store-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--ease);
  min-width: 140px;
}

.store-badge:hover { background: rgba(255,255,255,.1); }
.store-badge svg { fill: var(--white); height: 22px; width: auto; }

.store-txt { display: flex; flex-direction: column; text-align: left; }
.s-sm { font-size: .58rem; font-weight: 500; text-transform: uppercase; color: rgba(255,255,255,.5); line-height: 1; margin-bottom: 2px; }
.s-lg { font-size: .9rem; font-weight: 700; line-height: 1; letter-spacing: -.01em; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 52px 0 0;
  background: var(--black);
  color: rgba(255,255,255,.55);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo span { color: var(--white); }
.footer-brand .nav-logo img { filter: brightness(1); }

.footer-brand p {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}

.footer-socials a svg { fill: rgba(255,255,255,.45); transition: var(--ease); }
.footer-socials a:hover { border-color: rgba(255,255,255,.3); }
.footer-socials a:hover svg { fill: var(--white); }

/* Footer links — 2-col grid on mobile */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
  transition: var(--ease);
}

.footer-col a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
  transition: var(--ease);
  line-height: 1.5;
}

a.footer-contact-row:hover { color: var(--white); }

.footer-contact-row span { flex-shrink: 0; font-size: .8rem; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.25); }

.footer-bottom-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: .74rem;
  color: rgba(255,255,255,.3);
  transition: var(--ease);
}

.footer-bottom-links a:hover { color: var(--white); }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 20px; right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-tip {
  padding: 7px 12px;
  background: var(--black);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--ease);
  pointer-events: none;
  white-space: nowrap;
}

.wa-float:hover .wa-tip { opacity: 1; transform: translateY(0); }

.wa-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37,211,102,.3);
  transition: var(--ease);
}
.wa-btn:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
}

/* WhatsApp Status Beacon */
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* WhatsApp Intent Modal */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.wa-modal-overlay.active { opacity: 1; visibility: visible; }

.wa-modal {
  width: 100%;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-modal-overlay.active .wa-modal { transform: translateY(0); }

.wa-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.wa-modal-header h3 { margin: 0; font-size: 1.1rem; color: var(--black); font-weight: 800; }
.wa-modal-header .close-btn { background: var(--gray-2); border: none; font-size: 1.5rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--black); }

.wa-modal-body { display: flex; flex-direction: column; gap: 12px; }

.wa-intent-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--ease);
}
.wa-intent-btn:hover { background: var(--white); border-color: var(--gold); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.wa-intent-icon { font-size: 1.8rem; }
.wa-intent-text strong { display: block; color: var(--black); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.wa-intent-text span { display: block; color: var(--gray-5); font-size: 0.8rem; line-height: 1.4; color: var(--gray-6); }

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   ABOUT PAGE
   ================================================ */
.page-hero {
  padding: 100px 0 48px;
  background: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.025em;
  margin: 8px auto 12px;
  max-width: 600px;
  line-height: 1.2;
}

.page-hero .sub { margin: 0 auto; text-align: center; }

/* Mission/Vision */
.mv-header { text-align: center; margin-bottom: 36px; }

.mv-grid { display: flex; flex-direction: column; gap: 16px; }

.mv-card {
  padding: 28px 24px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--white);
  transition: var(--ease);
}
.mv-card:hover { border-color: var(--gray-4); }

.mv-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-1);
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-d);
  margin-bottom: 16px;
}

.mv-card h3 { font-weight: 700; font-size: 1.1rem; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.mv-card p { font-size: .9rem; color: var(--gray-4); line-height: 1.8; }

/* Team */
.team-section { background: var(--gray-1); }
.team-header { text-align: center; margin-bottom: 40px; }
.team-header .sub { margin: 0 auto; }

.team-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.team-grid::-webkit-scrollbar { display: none; }

.team-card {
  flex: 0 0 82%;
  max-width: 320px;
  scroll-snap-align: center;
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--gray-2);
  transition: var(--ease);
}
.team-card:hover { border-color: var(--gray-4); }

.team-card-img {
  width: 100px; height: 100px;
  border-radius: 18px;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 2px solid var(--gray-2);
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0%); transition: filter .3s; }
.team-card:hover .team-card-img img { transform: scale(1.05); }

.team-card h3 { font-weight: 700; font-size: .98rem; color: var(--black); margin-bottom: 4px; }
.team-social { margin-top: 8px; display: flex; justify-content: center; gap: 10px; margin-bottom: 4px; }
.team-social a { color: var(--teal); transition: color .2s; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.team-social a:hover { color: var(--gold); }
.team-card .role { font-size: .7rem; color: var(--gold-d); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.team-card .bio { font-size: .8rem; color: var(--gray-4); line-height: 1.65; margin-top: 12px; }

/* Story */
.story-header { text-align: center; margin-bottom: 36px; }
.story-content { max-width: 680px; margin: 0 auto; }
.story-content p { font-size: .95rem; color: var(--black); line-height: 1.9; margin-bottom: 18px; font-weight: 500; }
.story-content strong { color: var(--teal); font-weight: 800; }

.story-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 40px; }
.story-stat { text-align: center; padding: 24px 12px; border-radius: var(--r); background: var(--gray-1); }
.story-stat .stat-num { font-size: 1.5rem; color: var(--black); }
.story-stat .stat-lbl { font-size: .72rem; margin-top: 4px; }

.text-gold { color: var(--gold-d); }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-page { padding: 90px 0 48px; background: var(--gray-1); }
.legal-grid { display: flex; flex-direction: column; gap: 20px; }

.legal-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--r);
  padding: 20px;
}
.legal-sidebar h4 { font-weight: 700; font-size: .9rem; color: var(--black); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-2); }
.legal-sidebar ul { display: flex; flex-direction: column; gap: 10px; }
.legal-sidebar a { font-size: .85rem; color: var(--gray-5); transition: var(--ease); display: block; }
.legal-sidebar a:hover, .legal-sidebar a.active { color: var(--black); font-weight: 600; }

.legal-content-card { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--r); padding: 28px 20px; }
.legal-content-card .last-updated { font-size: .82rem; color: var(--gray-4); margin-bottom: 20px; display: inline-block; background: var(--gray-1); padding: 5px 10px; border-radius: 4px; font-weight: 500; }

.legal-section-block { margin-bottom: 32px; scroll-margin-top: 80px; }
.legal-section-block:last-child { margin-bottom: 0; }
.legal-section-block h2 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.legal-section-block p { font-size: .9rem; color: var(--gray-5); line-height: 1.8; margin-bottom: 12px; }
.legal-section-block a { color: var(--gold-d); font-weight: 500; }
.legal-section-block a:hover { text-decoration: underline; }

/* ================================================
   CATALOG
   ================================================ */
.catalog-page { padding: 80px 0; background: var(--gray-1); min-height: 100vh; }
.catalog-layout { display: flex; flex-direction: column; gap: 20px; }

.filter-sidebar { background: var(--white); padding: 20px; border-radius: var(--r); border: 1px solid var(--gray-2); }
.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: .9rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.filter-label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--gray-5); font-size: .88rem; cursor: pointer; }
.filter-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold-d); }

.machinery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }

.machine-card { background: var(--white); border-radius: var(--r); border: 1px solid var(--gray-2); overflow: hidden; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.machine-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 24px rgba(255,192,69,.12); }

.machine-img-wrapper { aspect-ratio: 4/3; background: var(--gray-1); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.machine-img-wrapper img { width: 90%; height: 90%; object-fit: contain; transition: transform .3s; }
.machine-card:hover .machine-img-wrapper img { transform: scale(1.05); }

.machine-badge { position: absolute; top: 10px; right: 10px; background: var(--black); color: var(--gold); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; }
.machine-info { padding: 18px; display: flex; flex-direction: column; flex-grow: 1; }
.machine-category { font-size: .75rem; color: var(--gray-4); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.machine-title { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.machine-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.spec-pill { background: var(--gray-1); padding: 5px 10px; border-radius: 4px; font-size: .78rem; color: var(--gray-5); font-weight: 500; }
.machine-action { margin-top: auto; width: 100%; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page { padding: 80px 0; background: var(--gray-1); }
.contact-grid { display: flex; flex-direction: column; gap: 20px; }
.contact-info, .contact-form-card { background: var(--white); padding: 28px 20px; border-radius: var(--r); border: 1px solid var(--gray-2); }

/* ================================================
   PAGE HERO (legal, catalog, etc )
   ================================================ */
.page-cta-btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ================================================
   404 PAGE
   ================================================ */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 0 60px; background: var(--gray-1); text-align: center; }

/* ================================================
   TABLET — 640px+
   ================================================ */
@media (min-width: 640px) {
  .section-white, .section-gray { padding: 80px 0; }

  .hero { padding: 130px 0 80px; }

  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .hero-btns .btn { width: auto; }

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

  .stat-item { padding: 24px 20px; }

  .ps-grid { flex-direction: row; }
  .ps-grid .ps-card { flex: 1; }

  .mv-grid { flex-direction: row; }
  .mv-grid .mv-card { flex: 1; }

  .about-grid { flex-direction: row; align-items: center; gap: 48px; }
  .about-img { flex: 1; }
  .about-body { flex: 1; padding-top: 0; }

  .cta-btns { flex-direction: row; }
  .cta-btns .btn { width: auto; }

  .cta-card { padding: 52px 48px; }

  .footer-top { flex-direction: row; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
  .footer-brand { flex: 1 1 100%; }
  .footer-links { flex: 1; grid-template-columns: repeat(3, 1fr); }

  .footer-bottom { flex-direction: row; text-align: left; }
  .footer-bottom-links { justify-content: flex-end; }

  .legal-grid { flex-direction: row; align-items: start; }
  .legal-sidebar { width: 230px; flex-shrink: 0; position: sticky; top: 80px; }
  .legal-content-card { flex: 1; padding: 40px; }

  .contact-grid { flex-direction: row; }
  .contact-info, .contact-form-card { flex: 1; padding: 40px; }

  .catalog-layout { flex-direction: row; }
  .filter-sidebar { width: 220px; flex-shrink: 0; }

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

/* ================================================
   DESKTOP — 900px+
   ================================================ */
@media (min-width: 900px) {
  .section-white, .section-gray { padding: 100px 0; }

  .nav-inner { height: 66px; }
  .nav-logo img { height: 46px; }
  .nav-logo span { font-size: 1.3rem; }

  /* Inline nav on desktop */
  .nav-links {
    position: static;
    inset: unset;
    width: auto; height: auto; max-width: none; max-height: none; overflow: visible;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 28px;
    box-shadow: none;
    border: none;
    display: flex !important;
    opacity: 1;
    visibility: visible;
  }

  .nav-links li a {
    font-size: .85rem;
    font-weight: 500;
    padding: 0;
    border: none;
    color: var(--gray-5);
    transform: none;
    opacity: 1;
    letter-spacing: 0;
    text-align: left;
  }

  .nav-links li a:hover,
  .nav-links li a.active { color: var(--black); }

  .nav-cta-btn { font-size: .82rem; padding: 10px 18px; }
  .hamburger { display: none; }

  .hero { padding: 180px 0 120px; }
  .hero h1 { font-size: clamp(2.8rem, 4vw, 3.8rem); }
  .hero-sub { font-size: 1.05rem; }

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

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; overflow-x: visible; }
  .team-card { max-width: none; flex: unset; }

  /* 5-member centering */
  .team-grid:has(.team-card:nth-child(5):last-child) { grid-template-columns: repeat(6, 1fr); }
  .team-grid:has(.team-card:nth-child(5):last-child) .team-card { grid-column: span 2; }
  .team-grid:has(.team-card:nth-child(5):last-child) .team-card:nth-child(4) { grid-column: 2 / span 2; }
  .team-grid:has(.team-card:nth-child(5):last-child) .team-card:nth-child(5) { grid-column: 4 / span 2; }

  /* 4-member centering */
  .team-grid:has(.team-card:nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
  .team-grid:has(.team-card:nth-child(4):last-child) .team-card { grid-column: span 2; }
  .team-grid:has(.team-card:nth-child(4):last-child) :is(.team-card:nth-child(3), .team-card:nth-child(4)) { grid-row: 2; }
  
  @media (min-width: 1200px) {
    .team-grid:has(.team-card:nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
    .team-grid:has(.team-card:nth-child(4):last-child) .team-card { grid-column: span 1; }
  }

  .footer-brand { flex: 1 1 auto; max-width: 320px; }
  .footer-links { flex: 1; }

  /* Desktop WhatsApp Modal */
  .wa-modal { width: 440px; border-radius: 16px; margin-bottom: auto; margin-top: auto; }
  .wa-modal-overlay { align-items: center; }

  .wa-float { bottom: 28px; right: 24px; }
}

/* ================================================
   SPLIT-SCREEN VALUE PROP (#7)
   ================================================ */
.dual-value {
  display: flex;
  flex-direction: column;
}

.dual-value-half {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.dual-value-half.demand {
  background: var(--gold);
  color: var(--black);
}

.dual-value-half.supply {
  background: var(--teal);
  color: var(--white);
}

.dual-value-half .dv-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
}

.dual-value-half.demand .dv-label { background: var(--black); color: var(--gold); }
.dual-value-half.supply .dv-label { background: var(--gold); color: var(--black); }

.dual-value-half h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.dual-value-half.demand h2 { color: var(--black); }
.dual-value-half.supply h2 { color: var(--white); }

.dual-value-half p {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .85;
}

.dual-value-half.demand p { color: var(--gray-7); }
.dual-value-half.supply p { color: rgba(255,255,255,.75); }

.dual-value-half .dv-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.dual-value-half .dv-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
}

.dual-value-half.demand .dv-points span { color: var(--black); }
.dual-value-half.supply .dv-points span { color: rgba(255,255,255,.9); }

.dual-value-half .btn { margin-top: 8px; }

@media (min-width: 768px) {
  .dual-value { flex-direction: row; }
  .dual-value-half { flex: 1; padding: 56px 48px; }
  .dual-value-half h2 { font-size: 1.8rem; }
}

/* ================================================
   ROI EARNINGS CALCULATOR (#4)
   ================================================ */
.roi-calc {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: var(--r);
  padding: 28px 24px;
  margin-top: 16px;
}

.roi-calc h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.5);
}

.dual-value-half.supply .roi-calc {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

.dual-value-half.supply .roi-calc h4 { color: rgba(255,255,255,.5); }

.roi-select, .roi-range {
  width: 100%;
  margin-bottom: 12px;
}

.roi-select {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFC045' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.roi-select option {
  background: var(--dark);
  color: var(--white);
}

.roi-days-label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.roi-days-label strong {
  color: var(--gold);
  font-size: .95rem;
}

.roi-range {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.15);
  outline: none;
}

.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--teal);
  cursor: pointer;
  transition: transform .15s ease;
}

.roi-range::-webkit-slider-thumb:hover { transform: scale(1.2); }

.roi-result {
  text-align: center;
  padding: 16px;
  background: rgba(255,192,69, .1);
  border: 1px solid rgba(255,192,69, .25);
  border-radius: 8px;
  margin-top: 12px;
}

.roi-result .roi-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}

.roi-result .roi-sublabel {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ================================================
   INTERACTIVE DUAL FLOWCHART (#8)
   ================================================ */
.flow-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 50px;
  padding: 4px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.flow-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--black);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.flow-tab {
  position: relative;
  flex: 1;
  padding: 12px 20px;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gray-400); /* Use specific color token */
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.4s var(--ease);
  z-index: 2;
}

.flow-tab.active {
  color: var(--gold);
}

.flow-tab:hover:not(.active) { color: var(--black); }

.flow-steps {
  display: none;
  grid-template-columns: 1fr;
  gap: 16px;
}

.flow-steps.active {
  display: grid;
  animation: flowFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flowFadeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.flow-step {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
  transition: all .3s ease;
}

.flow-step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.flow-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.flow-step p {
  font-size: .85rem;
  color: var(--gray-5);
  line-height: 1.6;
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-d);
  font-size: 1.4rem;
  font-weight: 800;
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .flow-steps { grid-template-columns: 1fr auto 1fr auto 1fr; }
  .flow-connector { transform: none; }
}

/* ================================================
   CATALOG TOGGLE SWITCH (#6)
   ================================================ */
.catalog-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.catalog-mode-toggle span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-4);
  transition: color .3s ease;
}

.catalog-mode-toggle span.active { color: var(--black); font-weight: 700; }

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--gray-2);
  border-radius: 50px;
  cursor: pointer;
  transition: background .3s ease;
}

.toggle-switch.earn-mode { background: var(--gold); }

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .3s ease;
}

.toggle-switch.earn-mode::after { transform: translateX(24px); }

.machine-card .earn-price {
  display: none;
  background: rgba(255,192,69, .12);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  font-weight: 700;
  color: var(--gold-d);
  font-size: .95rem;
}

.catalog-earn-mode .machine-card .earn-price { 
  display: block; 
  animation: modeFadeIn 0.4s var(--ease);
}
.catalog-earn-mode .machine-card .machine-action { display: none; }
.catalog-earn-mode .machine-card .machine-badge { 
  background: var(--gold); 
  color: var(--black);
  transition: all 0.4s var(--ease);
}

@keyframes modeFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   APP CTA SECTION
   ================================================ */
.app-cta-card {
  background: var(--dark);
  border-radius: 24px;
  overflow: hidden;
  padding: 40px 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.app-info { flex: 1; z-index: 2; }
.app-info h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.app-info p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

.app-mockup-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 380px;
  z-index: 1;
}

.app-mockup-img {
  max-height: 500px;
  width: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 50px rgba(0,0,0,0.8);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-cta-card:hover .app-mockup-img {
  transform: translateY(0px);
}

/* Coming Soon Tab/Labels */
.coming-soon-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,192,69,0.1);
  color: var(--gold);
  border: 1px solid rgba(255,192,69,0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .app-cta-card {
    flex-direction: row;
    padding: 0 60px;
    text-align: left;
    height: 480px;
    align-items: center;
  }
  .app-info {
    text-align: left;
    padding-bottom: 0;
  }
  .app-info p { margin: 0; }
  .app-mockup-wrapper {
    height: 100%;
    align-items: flex-end;
  }
}

/* ================================================
   WHATSAPP FLOAT WIDGET (RESTORED)
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-tooltip {
  padding: 8px 14px;
  background: var(--black);
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--ease);
  pointer-events: none;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: var(--ease);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: var(--green-d);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .equipment-snippet { 
    padding: 10px 14px; 
    margin-top: 8px; 
    border-width: 1.5px; 
    max-width: 320px; 
    margin-left: 0; 
  }
  .snippet-header { font-size: 0.58rem; margin-bottom: 6px; }
  .snippet-tags span { font-size: 0.68rem; padding: 4px 10px; }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}
