/* =========================================================
   VENUS™ — Premium Editorial Design System
   Inspired by: Agroton, GreenWorld, Atacama references
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

/* ─── Design Tokens ────────────────────────────────────── */
:root {
  /* Fonts */
  --font-display: 'Merriweather', serif;
  --font-body:    'Merriweather', serif;

  /* Palette — Navy-driven */
  --ink:        #0c1f3f;   /* Matches --navy */
  --ink-2:      #1e3a5f;   /* Matches --navy-mid */
  --ink-3:      #3b526b;   /* Darkened for WCAG AA contrast */
  --bg:         #f8f7f4;   /* warm off-white like reference */
  --bg-card:    #ffffff;
  --bg-dark:    #0c1f3f;   /* Matches --navy */
  --bg-mid:     #eceae5;   /* warm light grey */

  /* Brand */
  --gold:       #e8a020;
  --gold-light: #fef3c7;
  --navy:       #0c1f3f;   /* deep anchor navy from logo */
  --navy-mid:   #1e3a5f;

  /* Structure */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-pill: 999px;

  --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 12px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.12);

  --nav-h:      140px;
  --container:  1200px;
  --pad:        clamp(16px, 4vw, 32px);
  --section-y:  clamp(72px, 10vw, 120px);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset & Base ─────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-weight: 500;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ───────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.t-h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.t-h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.t-h3 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.t-body-lg { font-size: 1.2rem; line-height: 1.65; color: var(--ink-2); }
.t-body { font-size: 1.05rem; line-height: 1.65; color: var(--ink-2); }
.t-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.t-gold { color: var(--gold); }
.t-light { color: rgba(255,255,255,0.85); }

/* ─── Layout ───────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* Flex helpers */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ─── Buttons (Reference Inspired — Pill Shape) ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--navy); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #d4911a; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(17,19,24,0.25);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

.btn-arrow::after { content: ' →'; }

/* ─── Navigation ───────────────────────────────────────── */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  background: rgba(248,247,244,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17,19,24,0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transform: scale(1.9);
  transform-origin: left center;
  margin-left: -32px;
}
/* Center links block */
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid rgba(17,19,24,0.1);
  border-radius: var(--radius-pill);
  padding: 6px 8px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease);
}
.nav-link:hover, .nav-link.active {
  background: var(--bg);
  color: var(--ink);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  inset: var(--nav-h) 0 0;
  background: var(--bg-card);
  z-index: 999;
  padding: 32px var(--pad);
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-mid);
  border-radius: 0;
  color: var(--ink);
}

@media (max-width: 960px) {
  .nav-center { display: none; }
  .hamburger { display: flex; }
}

/* ─── Section Label (like reference "■ Tag Here") ─────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

/* ─── Bento Grid Cards ─────────────────────────────────── */
.bento {
  display: grid;
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(17,19,24,0.07);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
.bento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.bento-card.dark {
  background: var(--bg-dark);
  color: #fff;
  border-color: transparent;
}
.bento-card.dark .t-h3 { color: #fff; }

/* Stat Card (floating badge style from reference) */
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid rgba(17,19,24,0.08);
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.stat-card .stat-num.gold { color: var(--gold); }
.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
}

/* Product Card (Pomelli Style) */
.product-card {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  height: 480px; /* compact portrait card */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-card .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Keep the product visible */
  z-index: 0;
  background: transparent;
  padding: 0;
}
.product-card .card-body { 
  position: relative;
  z-index: 2;
  padding: 40px 32px 32px; 
  background: linear-gradient(to top, rgba(17,19,24,0.95) 0%, rgba(17,19,24,0) 100%);
}
.product-card .card-body .t-h3 { 
  color: #ffffff; 
  font-size: 24px; /* Scaled down further for card context */
}
.product-card .card-body .t-body { color: rgba(255,255,255,0.85); }

.product-card .card-tag {
  display: inline-block;
  background: var(--bg-card);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-card .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.product-card .btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

/* ─── Hero Section ─────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(48px, 8vw, 96px);
  background: var(--bg);
}

/* ─── Cursor-Reactive Gradient Headline ────────────────── */
.reactive-gradient {
  /* Default: no gradient, just normal text inheriting its color */
  position: relative;
  --base-color: var(--navy);
  color: var(--base-color);
  transition: color 0.2s ease;
}

/* Apply gradient mask ONLY on hover */
.reactive-gradient:hover,
.reactive-gradient:hover .tw-type-container {
  /* True Apple/Google style: a smooth silver spotlight exactly around the cursor */
  background-image: radial-gradient(circle 160px at var(--x, 50%) var(--y, 50%), #b0bac7 0%, var(--base-color) 60%, var(--base-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Graceful fallback for touch/mobile devices without pointer */
@media (hover: none) and (pointer: coarse) {
  .reactive-gradient,
  .reactive-gradient .tw-type-container {
    background-image: radial-gradient(circle 160px at var(--x, 50%) var(--y, 50%), #b0bac7 0%, var(--base-color) 60%, var(--base-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: spotlight-loop 6s infinite alternate ease-in-out;
  }
}
@keyframes spotlight-loop {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 20%; }
  100% { background-position: 50% 100%; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(17,19,24,0.1);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-eyebrow span { color: var(--gold); }

/* ─── Marquee / Ticker Strip ───────────────────────────── */
.marquee-strip {
  background: var(--ink);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Feature Row (Image + Text alternating) ─────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 960px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
}
.feature-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-mid);
}
.feature-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.feature-text { max-width: 540px; }

/* Check List */
.check-list { margin: 24px 0 32px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17,19,24,0.07);
  font-size: 1.05rem;
  color: var(--ink-2);
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ─── Page Header ──────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(48px, 8vw, 80px);
  background: var(--bg-dark);
  text-align: left;
}
.page-hero h1 { color: #fff; }
.page-hero .t-body-lg { color: rgba(255,255,255,0.65); max-width: 600px; margin-top: 16px; }

/* ─── Gallery Grid ─────────────────────────────────────── */
.gallery-grid {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  padding-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-grid::-webkit-scrollbar {
  height: 8px;
}
.gallery-grid::-webkit-scrollbar-track {
  background: var(--bg-mid);
  border-radius: 4px;
}
.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.gallery-grid .product-card {
  flex: 0 0 320px;
  height: 400px; /* Slightly smaller than the 480px homepage cards */
  max-width: 85vw;
  scroll-snap-align: center;
}
@media (max-width: 768px) { 
  .gallery-grid .product-card { flex: 0 0 280px; height: 360px; }
}

/* ─── Forms ────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1.5px solid rgba(17,19,24,0.15);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }

/* ─── Footer ───────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  padding-top: 80px;
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo-img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-desc { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-link { font-size: 0.95rem; color: rgba(255,255,255,0.65); font-weight: 500; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-contact-item { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-contact-item strong { color: rgba(255,255,255,0.8); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-link { font-size: 0.875rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

/* ─── Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Utility ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
/* ? Product Explorer ? */
.product-explorer {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .product-explorer { flex-direction: column; gap: 40px; }
}

/* Sidebar */
.explorer-sidebar {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 960px) {
  .explorer-sidebar { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; gap: 24px; }
}

.sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}

.explorer-tab {
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
}
.explorer-tab:hover {
  background: var(--bg-mid);
  color: var(--ink);
}
.explorer-tab.active {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
}

/* Content Area */
.explorer-content {
  flex: 1;
  min-width: 0;
}

.explorer-pane {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}
.explorer-pane.active {
  display: block;
}

.pane-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-mid);
  margin-bottom: 32px;
  max-width: 360px;
}
.pane-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ? WhatsApp Floating Button ? */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-float svg {
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.whatsapp-float span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 16px 24px;
}

.whatsapp-float:hover span {
  max-width: 150px;
  opacity: 1;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .whatsapp-float:hover {
    padding: 16px; /* Do not expand on mobile since hover is sticky */
  }
  .whatsapp-float:hover span {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
  }
}

/* ? Founder Section ? */
.founder-row {
  display: flex;
  gap: 64px;
  align-items: center;
  background: var(--bg-mid);
  padding: 64px;
  border-radius: var(--radius-xl);
  margin: 80px 0;
}
.founder-img-wrap {
  flex: 0 0 350px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-content {
  flex: 1;
}
@media (max-width: 960px) {
  .founder-row {
    flex-direction: column;
    padding: 32px;
    gap: 32px;
  }
  .founder-img-wrap {
    flex: none;
    width: 100%;
    height: 350px;
  }
}

/* ─── Testimonials Scroll ──────────────────────────────── */
.testimonials-scroll {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}
.testimonials-scroll::-webkit-scrollbar-track {
  background: var(--bg-mid);
  border-radius: 4px;
}
.testimonials-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.testimonial-card {
  flex: 0 0 400px;
  max-width: 85vw;
  scroll-snap-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17,19,24,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 300px;
    padding: 32px 24px;
  }
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-quote::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: -24px;
  left: -16px;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-top: 2px;
}

/* Models Grid for Products Page */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.model-card {
  background: var(--bg-card, #f8f9fa);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-color: var(--gold);
}

.model-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(232, 160, 32, 0.05);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--gold);
}

.model-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark, #1f2937);
  line-height: 1.3;
}

/* Accessibility & Tap Targets */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 24px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
a, button, .btn {
  min-height: 44px;
  min-width: 44px;
}

/* =========================================================
   MOBILE RESPONSIVENESS OVERRIDES
   Applied globally for screens <= 768px
   ========================================================= */
@media (max-width: 768px) {
  /* 1. Layout & Overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  .wrap {
    padding-inline: 16px;
  }
  .section, .section-sm {
    padding-block: 48px;
  }
  
  /* 2. Typography & Readability */
  .t-display { font-size: 36px !important; line-height: 1.2 !important; }
  .t-h1 { font-size: 32px !important; line-height: 1.2 !important; }
  .t-h2 { font-size: 28px !important; line-height: 1.3 !important; }
  .t-h3 { font-size: 24px !important; line-height: 1.3 !important; }
  .t-body-lg { font-size: 1.05rem !important; }
  .t-body { font-size: 0.95rem !important; }
  
  /* 3. Navigation & Hamburger Menu */
  .nav-center {
    display: none !important; /* Hide desktop nav */
  }
  .hamburger {
    display: flex !important; /* Show hamburger */
  }
  .nav-inner {
    padding-inline: 16px;
  }
  .nav-logo img {
    height: 50px !important; /* Scale logo down */
    transform: scale(1.2) !important;
    margin-left: 10px !important;
  }
  #navbar {
    height: 80px !important;
  }
  html {
    scroll-padding-top: 80px;
  }
  
  /* Mobile Drawer Styling */
  #navDrawer {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    overflow-y: auto;
  }
  #navDrawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  #navDrawer .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: block;
    border-radius: var(--radius-sm);
  }

  /* 4. Hero Section & Images */
  .hero-top-row {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-pills {
    position: static !important;
    transform: none !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    margin-top: 16px !important;
    gap: 8px !important;
  }
  .hero-pill {
    padding: 8px 14px !important;
    font-size: 0.8rem !important;
  }
  .hero-wrapper {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Image wrappers that might overflow */
  .feature-img-wrap, .pane-img-wrap {
    height: auto !important;
    min-height: 250px !important;
  }

  /* 5. Grid Layouts */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .feature-grid {
    grid-template-columns: 1fr !important;
  }

  /* 6. Tap Targets Constraint */
  a, button, .btn {
    min-height: 44px !important;
    min-width: 44px !important;
  }
}

/* =========================================================
   MOBILE RESPONSIVENESS OVERHAUL (max-width: 768px)
   ========================================================= */
@media (max-width: 768px) {
  /* 1. Global Overflow & Spacing */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  .wrap {
    padding-inline: 16px !important;
  }
  .section, .section-sm {
    padding-block: 48px !important;
  }

  /* 2. Typography Scaling */
  .t-display {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }
  .t-h1, .t-h2, .t-h3 {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }
  .t-body-lg {
    font-size: 1.05rem !important;
  }
  .t-body {
    font-size: 1rem !important;
  }

  /* 3. Navigation & Header */
  .nav-center {
    display: none !important;
  }
  .nav-right .btn-dark {
    display: none !important; /* Hide contact btn in header on mobile to save space */
  }
  .hamburger {
    display: flex !important;
  }
  .nav-logo img {
    height: 50px !important;
    transform: scale(1.5) !important;
    margin-left: -8px !important;
  }
  .nav-inner {
    padding-inline: 16px !important;
  }
  #navbar {
    height: 80px !important;
  }

  /* 4. Mobile Drawer */
  .mobile-nav {
    width: 100% !important;
    max-width: none !important;
    right: -100% !important;
    padding: 80px 24px !important;
  }
  .mobile-nav.open {
    right: 0 !important;
  }

  /* 5. Hero Section */
  .hero {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 48px !important;
  }
  .hero-top-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center;
  }
  .hero-pills {
    position: relative !important;
    transform: none !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    top: auto !important;
    right: auto !important;
    margin-top: 24px;
  }

  /* 6. Grid Layouts & Cards */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .card, .product-card, .feature-card {
    margin-bottom: 16px !important;
  }
  
  /* 7. Image Scaling */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* 8. Tap Targets (Fallback safety) */
  a, button, .btn, .social-link {
    min-height: 44px;
    min-width: 44px;
  }

  /* 9. Footer fixes */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }
  .footer-logo {
    justify-content: center !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .footer-links {
    align-items: center !important;
  }
}
