/* ═══════════════════════════════════════════════════════════════
   HiFashions v4 — Dark Gold Theme
   Built to match the existing HTML structure on all 8 pages
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --black:   #07070c;
  --black2:  #0d0d14;
  --gold:    #f5b800;
  --gold2:   #e0a500;
  --white:   #f8f4ec;
  --muted:   rgba(248,244,236,0.55);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --container: 1200px;
  --header-h:  70px;

  /* keep old var names for any inline style references in HTML */
  --space-xs: 8px; --space-sm: 16px; --space-md: 24px;
  --space-lg: 36px; --space-xl: 56px;
  --color-gold: #f5b800;
  --font-size-sm: 12px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

/* ─── PROGRESS BAR ───────────────────────────────────────────── */
#progress-bar {
  position: fixed; top:0; left:0; width:0%; height:3px;
  background: var(--gold);
  z-index: 9999; pointer-events: none;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(245,184,0,0.3);
}

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top:0; left:0; right:0; z-index: 900;
  height: var(--header-h);
  background: rgba(7,7,12,0);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(7,7,12,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(245,184,0,0.15);
}
.navbar {
  display: flex; align-items: center;
  height: var(--header-h); gap: 0;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo img {
  height: 38px; width: auto; max-width: 120px;
  object-fit: contain; border-radius: 3px;
}
.logo h1 {
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 900;
  color: var(--white); letter-spacing: 0.04em; line-height: 1;
  white-space: nowrap;
}

/* Nav links — centered */
.nav-menu {
  flex: 1; display: flex; justify-content: center;
}
.nav-menu ul {
  display: flex; align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  list-style: none;
}
.nav-menu a {
  color: rgba(248,244,236,0.68);
  text-decoration: none;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; padding: 4px 0;
  transition: color 0.2s; white-space: nowrap;
}
.nav-menu a::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:1px; background:var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width:100%; }

/* Nav end */
.navbar-end {
  flex-shrink: 0; display: flex; align-items: center; gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-menu.mobile-open {
  display: flex !important;
  position: absolute; top: var(--header-h); left:0; right:0;
  background: rgba(7,7,12,0.97);
  border-top: 1px solid rgba(245,184,0,0.15);
  padding: 24px clamp(20px,4vw,56px) 32px; z-index: 800;
}
.nav-menu.mobile-open ul {
  flex-direction: column; gap: 18px; align-items: flex-start;
}
.nav-menu.mobile-open a { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 4px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold, .btn-primary {
  background: var(--gold); color: var(--black);
  box-shadow: 0 4px 20px rgba(245,184,0,0.2);
}
.btn-gold:hover, .btn-primary:hover {
  background: #ffe066; color: var(--black);
  box-shadow: 0 8px 32px rgba(245,184,0,0.35);
}
.btn-white {
  background: rgba(248,244,236,0.12); color: var(--white);
  border: 1.5px solid rgba(248,244,236,0.45);
}
.btn-white:hover {
  background: rgba(248,244,236,0.22); border-color: var(--white);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(248,244,236,0.3);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 18px; font-size: 10px; }

.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 8px 18px; border-radius: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #ffe066; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   HERO — full page (index.html)
   The section uses inline style="background-image:url(...)"
   We add overlay via ::before and style the content
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  /* Let inline background-image show — only set positioning */
  background-size: cover !important;
  background-position: center center !important;
  background-color: var(--black); /* fallback */
  margin-top: 0; padding-top: 0;
  overflow: hidden;
}
/* Dark overlay via ::before */
.hero::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(110deg, rgba(7,7,12,0.88) 42%, rgba(7,7,12,0.45) 100%);
  z-index: 1;
}
.hero .container {
  position: relative; z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.01em; color: var(--white);
  max-width: 680px; margin-bottom: 22px;
}
.hero p {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(248,244,236,0.65); line-height: 1.7;
  max-width: 520px; margin-bottom: 36px;
}
.hero .btn { margin-right: 12px; margin-bottom: 12px; }

/* ─── HERO SM — inner pages ──────────────────────────────────── */
.hero-sm {
  position: relative;
  /* inline background-image is set per page */
  background-size: cover !important;
  background-position: center center !important;
  background-color: var(--black); /* fallback */
  padding: calc(var(--header-h) + 72px) 0 64px;
  overflow: hidden;
}
.hero-sm::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(7,7,12,0.9) 40%, rgba(7,7,12,0.6) 100%);
}
/* Gold accent line */
.hero-sm::after {
  content:''; position:absolute; left:clamp(20px,6vw,80px); bottom:0;
  width:48px; height:3px; background:var(--gold);
}
.hero-sm .container { position: relative; z-index: 1; }
.hero-sm h1, .hero-sm h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900; line-height: 1.05; color: var(--white);
  margin-bottom: 14px;
}
.hero-sm p {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(248,244,236,0.6); max-width: 520px; line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════════ */
.marquee-section { overflow: hidden; }
.marquee-row { display: flex; width: max-content; }
.marquee-row.row-1 { animation: mqLeft 28s linear infinite; background: var(--gold); }
.marquee-row.row-2 { animation: mqRight 28s linear infinite; background: var(--black); border-top: 1px solid rgba(245,184,0,0.18); }
@keyframes mqLeft  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes mqRight { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 26px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
.row-1 .marquee-item { color: var(--black); }
.row-2 .marquee-item { color: rgba(248,244,236,0.5); }
.marquee-dot { width:5px; height:5px; background:currentColor; border-radius:50%; flex-shrink:0; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(52px, 8vh, 88px) 0;
}
.section.bg-light, .bg-light {
  background: var(--black2);
}
.section-title {
  margin-bottom: clamp(28px, 4vh, 48px);
}
.section-title.text-center { text-align: center; }
.section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900; color: var(--white); line-height: 1.1;
  margin-bottom: 12px;
}
.section-title p {
  font-size: clamp(13px, 1.15vw, 15px);
  color: var(--muted); line-height: 1.7;
  max-width: 640px;
}
.section-title.text-center p { margin: 0 auto; }

/* inline h2/p CTAs in sections */
.section.text-center h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900; color: var(--white); margin-bottom: 14px;
}
.section.text-center > .container > p { color: var(--muted); margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--gold);
  padding: clamp(36px, 6vh, 64px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 28px; text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; color: var(--black);
  line-height: 1; display: block;
}
.stat-label {
  margin-top: 5px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(7,7,12,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════════════════════════ */
.grid { display: grid; gap: clamp(18px, 2.5vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 > div > img, .grid-2 > div > a > img {
  width:100%; border-radius:6px; object-fit:cover; aspect-ratio: 4/3;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */
.card {
  background: var(--black2);
  border: 1px solid rgba(245,184,0,0.1);
  border-radius: 4px;
  padding: clamp(22px, 2.5vw, 32px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: rgba(245,184,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,184,0,0.08);
}
.card-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.card h3 {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 9px;
}
.card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.card a { color: var(--gold); }
.card a:hover { text-decoration: underline; }
.card.text-center { text-align: center; }
.card.text-center .card-icon { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════════ */
.product-card {
  background: var(--black2);
  border: 1px solid rgba(245,184,0,0.1);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: block; color: inherit;
}
.product-card:hover {
  border-color: rgba(245,184,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,184,0,0.1);
}
.product-img {
  width:100%; height: 220px; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-body { padding: 18px 20px 22px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.product-specs { display: flex; flex-direction: column; gap: 4px; }
.product-specs span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.product-specs strong { color: rgba(248,244,236,0.75); }
.product-body > p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   FILTER BUTTONS
═══════════════════════════════════════════════════════════════ */
.filter-buttons {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(22px,3vh,36px);
}
.filter-buttons.text-center { justify-content: center; }
.filter-btn {
  background: transparent; color: rgba(248,244,236,0.6);
  border: 1px solid rgba(245,184,0,0.25);
  padding: 8px 18px; border-radius: 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════════ */
.timeline {
  position: relative; max-width: 820px; margin: 0 auto;
}
.timeline::before {
  content:''; position:absolute; left:18px; top:0; bottom:0; width:1px;
  background: linear-gradient(to bottom, var(--gold), rgba(245,184,0,0.08));
}
.timeline-item {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 24px; padding-bottom: 40px;
}
.timeline-dot {
  width:12px; height:12px; border-radius:50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,184,0,0.18); margin-top:6px; flex-shrink:0;
}
.timeline-era {
  font-size:10px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold); display:block; margin-bottom:6px;
}
.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(17px,2vw,22px); font-weight:700; color:var(--white); margin-bottom:8px;
}
.timeline-content p { font-size:13px; color:var(--muted); line-height:1.65; }

/* ═══════════════════════════════════════════════════════════════
   SPEC / CAPABILITY CARDS  (capabilities, quality, infrastructure)
═══════════════════════════════════════════════════════════════ */
.spec-card {
  background: var(--black2);
  border: 1px solid rgba(245,184,0,0.1);
  border-radius: 4px; padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.spec-card:hover { border-color: rgba(245,184,0,0.35); transform: translateY(-3px); }
.spec-card h3 {
  font-family: var(--font-serif);
  font-size: 17px; font-weight:700; color:var(--gold); margin-bottom:10px;
}
.spec-card p, .spec-card ul { font-size:13px; color:var(--muted); line-height:1.65; }
.spec-card ul { padding-left:16px; list-style:disc; }

/* ═══════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display:block; font-size:11px; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  color:rgba(248,244,236,0.6); margin-bottom:8px;
}
input[type="text"], input[type="email"], input[type="tel"],
textarea, select,
.form-group input, .form-group textarea, .form-group select {
  width:100%; background:rgba(248,244,236,0.04);
  border:1px solid rgba(245,184,0,0.2); border-radius:4px;
  color:var(--white); font-family:var(--font-sans);
  font-size:14px; padding:12px 15px; outline:none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance:none; appearance:none;
}
input:focus, textarea:focus, select:focus { border-color:var(--gold); background:rgba(245,184,0,0.04); }
input::placeholder, textarea::placeholder { color:rgba(248,244,236,0.22); }
select option { background:var(--black); color:var(--white); }
input.error, textarea.error { border-color:#ef4444 !important; }
.error-message { font-size:11px; color:#ef4444; margin-top:4px; display:block; }

/* ═══════════════════════════════════════════════════════════════
   READY STOCK TABLE
═══════════════════════════════════════════════════════════════ */
table {
  width:100%; border-collapse:collapse; font-size:13px;
}
th {
  background:rgba(245,184,0,0.08); color:var(--gold);
  padding:11px 15px; text-align:left; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; font-size:10px;
  border-bottom:1px solid rgba(245,184,0,0.2);
}
td {
  padding:11px 15px; color:var(--muted);
  border-bottom:1px solid rgba(248,244,236,0.06); vertical-align:middle;
}
tr:hover td { background:rgba(245,184,0,0.03); color:var(--white); }
.stock-available { color:#4ade80; font-weight:600; }
.stock-limited   { color:var(--gold); font-weight:600; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background:#040409;
  border-top:1px solid rgba(245,184,0,0.14);
}
.footer-inner { padding:clamp(44px,6vh,80px) 0 0; }
.footer-grid {
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:clamp(28px,4vw,52px);
  padding-bottom:48px;
}
.footer-brand {}
.footer-logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; margin-bottom:14px;
}
.footer-logo img { height:36px; width:auto; max-width:110px; object-fit:contain; border-radius:3px; }
.footer-logo span {
  font-family:var(--font-serif); font-size:17px; font-weight:900;
  color:var(--white); letter-spacing:0.04em;
}
.footer-tagline {
  font-size:13px; color:rgba(248,244,236,0.4);
  line-height:1.65; max-width:270px; margin-bottom:20px;
}
.footer-col h4 {
  font-size:10px; font-weight:700; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul a {
  font-size:13px; color:rgba(248,244,236,0.45);
  text-decoration:none; transition:color 0.2s;
}
.footer-col ul a:hover { color:var(--white); }
.footer-col p, .footer-col address p {
  font-size:13px; color:rgba(248,244,236,0.45); line-height:1.65; margin-bottom:8px;
}
.footer-col a[href^="tel"], .footer-col a[href^="mailto"] {
  color:rgba(248,244,236,0.45); transition:color 0.2s;
}
.footer-col a[href^="tel"]:hover, .footer-col a[href^="mailto"]:hover { color:var(--gold); }
.footer-wa {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--gold); color:var(--black) !important;
  padding:9px 16px; border-radius:4px;
  font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  transition:background 0.2s, transform 0.2s;
}
.footer-wa:hover { background:#ffe066; transform:translateY(-1px); }
.footer-bottom {
  border-top:1px solid rgba(248,244,236,0.07);
  padding:18px 0;
}
.footer-bottom p { font-size:11px; color:rgba(248,244,236,0.26); text-align:center; }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position:fixed; bottom:90px; right:28px; z-index:700;
  width:52px; height:52px; border-radius:50%;
  background:#25d366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  transition:transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width:28px; height:28px; fill:#fff; }

/* ─── BACK TO TOP (both class and ID variants) ───────────────── */
.back-to-top, #back-top {
  position:fixed; bottom:30px; right:28px; z-index:800;
  width:44px; height:44px; border-radius:50%;
  background:var(--gold); color:var(--black);
  border:none; cursor:pointer; font-size:18px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  opacity:0; transform:translateY(12px);
  transition:opacity 0.3s, transform 0.3s, box-shadow 0.2s;
  box-shadow:0 4px 20px rgba(245,184,0,0.3);
}
.back-to-top.visible, #back-top.show {
  opacity:1; transform:translateY(0);
}
.back-to-top:hover, #back-top:hover {
  box-shadow:0 8px 32px rgba(245,184,0,0.5); transform:translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.fade-in {
  opacity:0; transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   UTILS
═══════════════════════════════════════════════════════════════ */
.text-center { text-align:center; }
.text-muted   { color:var(--muted); }
.mt-5         { margin-top:36px; }

/* ─── FORM SUCCESS MESSAGES ──────────────────────────────────── */
#quickInquirySuccess, #formSuccess {
  background:rgba(74,222,128,0.1) !important;
  border:1px solid rgba(74,222,128,0.3) !important;
  color:#4ade80 !important; border-radius:6px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-menu { display:none; }
  .hamburger { display:flex; }
  .nav-cta { display:none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:22px; }
  .footer-brand { grid-column:span 2; }
  .hero { min-height:80vh; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .timeline::before { left:12px; }
  .timeline-item { grid-template-columns:28px 1fr; }
  .whatsapp-float { bottom:84px; right:20px; }
  .back-to-top, #back-top { right:20px; bottom:28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { grid-column:span 1; }
  .btn { padding:11px 20px; font-size:11px; }
}
