/* ═══════════════════════════════════════════════════════════
   RASA FOODS — Home Page ("Eat Rasa." redesign)
   Rounded deep-green hero frame · split display typography
   · butter-gold accents · cream sections
   Fonts: Bricolage Grotesque (display) / Fraunces italic
   (accents) / Poppins (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Greens — deep forest */
  --green-980: #071F16;
  --green-950: #0A2A1E;
  --green-900: #0F3D2C;
  --green-800: #14523A;
  --green-700: #1B6B4B;
  --green-600: #22875F;
  --mint: #BFE3CC;
  --mint-soft: #8FC7A8;

  /* Butter gold — signature accent */
  --gold: #F2B90D;
  --gold-soft: #F6CE4E;
  --gold-deep: #C99402;
  --gold-tint: #FBF0D2;

  /* Creams & sage */
  --cream: #FBF7EC;
  --cream-2: #F3EDDC;
  --sage: #DCE6DA;

  --ink: #182A20;
  --ink-soft: #41564A;
  --muted: #6E8175;
  --line: #E9E3D0;
  --white: #FFFEF9;

  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-accent: "Fraunces", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 12px rgba(24, 42, 32, 0.06);
  --shadow-md: 0 14px 36px rgba(24, 42, 32, 0.12);
  --shadow-lg: 0 28px 70px rgba(7, 31, 22, 0.28);
  --shadow-gold: 0 12px 28px rgba(242, 185, 13, 0.35);
  --container: 1220px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sage);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

main > section:not(.hero) { background: var(--cream); }
main > section.section-alt { background: var(--cream-2); }
main > section.section-dark { background: var(--green-950); }

/* ── Typography helpers ────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
}
.eyebrow-light { color: var(--mint-soft); }
.eyebrow-gold { color: var(--gold); }
.eyebrow-gold::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--green-700);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-title em { color: var(--gold); }
.section-sub { color: var(--muted); max-width: 560px; font-size: 1rem; }
.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-inline: auto; }
.section-head-center .eyebrow::after {
  content: "";
  width: 26px; height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
}
.section { padding: 96px 0; }
.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.section-head-inline { max-width: 640px; }
.section-head-inline .section-head { margin-bottom: 0; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-icon { width: 17px; height: 17px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-gold {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(242, 185, 13, 0.45); }

.btn-dark {
  background: var(--green-900);
  color: var(--cream);
  box-shadow: 0 12px 26px rgba(15, 61, 44, 0.3);
}
.btn-dark:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(15, 61, 44, 0.38); }

.btn-light {
  background: var(--white);
  color: var(--green-900);
  box-shadow: 0 12px 30px rgba(7, 31, 22, 0.35);
}
.btn-light:hover { transform: translateY(-2px); background: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 1.6px solid var(--green-700);
}
.btn-ghost:hover { background: var(--green-900); border-color: var(--green-900); color: var(--cream); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.6px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }

/* ══════════════ HEADER (floating over hero frame) ══════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-top: 30px;
  transition: padding 0.3s ease;
}
.header-inner {
  width: min(1340px, 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 12px;
  border-radius: 999px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.brand { flex: none; }
.brand-logo {
  height: 56px;
  width: auto;
  background: var(--white);
  border-radius: 999px;
  padding: 7px 16px;
  box-shadow: 0 6px 20px rgba(7, 31, 22, 0.25);
}

.site-header.is-scrolled { padding-top: 10px; }
.site-header.is-scrolled .header-inner {
  background: rgba(251, 247, 236, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(24, 42, 32, 0.14);
}
.site-header.is-scrolled .nav-link { color: var(--ink-soft); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active { color: var(--green-800); background: rgba(27, 107, 75, 0.1); }
.site-header.is-scrolled .btn-nav-cta {
  color: var(--green-900);
  border-color: var(--green-800);
}
.site-header.is-scrolled .btn-nav-cta:hover { background: var(--green-900); color: var(--cream); }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 254, 249, 0.92);
  padding: 9px 6px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-soft); }
.caret { width: 10px; transition: transform 0.25s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  width: 250px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 12px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.dropdown a:hover { background: var(--gold-tint); color: var(--green-800); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.btn-nav-cta {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 12px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-nav-cta:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.nav-cta-mobile { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.hamburger span {
  width: 24px; height: 2.6px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.site-header.is-scrolled .hamburger span { background: var(--green-900); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ══════════════ HERO — rounded deep-green frame ══════════════ */
.hero { padding: clamp(10px, 1.6vw, 24px); }
.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 44px);
  min-height: calc(100svh - clamp(20px, 3.2vw, 48px));
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(34, 135, 95, 0.5) 0%, transparent 60%),
    radial-gradient(820px 480px at -8% 108%, rgba(20, 82, 58, 0.65) 0%, transparent 56%),
    linear-gradient(155deg, var(--green-900) 0%, var(--green-950) 55%, var(--green-980) 100%);
  box-shadow: var(--shadow-lg);
}

/* decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.ring-1 { width: 620px; height: 620px; top: -240px; right: -180px; }
.ring-2 { width: 420px; height: 420px; bottom: 8%; left: -160px; border-color: rgba(255, 255, 255, 0.06); }
.ring-3 { width: 240px; height: 240px; top: 20%; left: 5%; border-style: dashed; border-color: rgba(246, 206, 78, 0.22); animation: ringSpin 40s linear infinite; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 420px at 50% 42%, rgba(242, 185, 13, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 128px;
  padding-bottom: 10px;
}

.hero-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(10px, 3vh, 30px);
}

/* split display words around central product collage */
.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.hero-words { display: contents; }
.hero-word {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  user-select: none;
}
.hero-word--left { grid-column: 1; grid-row: 1; color: var(--white); justify-self: end; }
.hero-word--right { grid-column: 3; grid-row: 1; color: var(--gold); justify-self: start; }
.hero-word--right em { font-style: normal; color: var(--white); }

/* giant ghost watermark words behind (reference detail) */
.hero-ghost {
  position: absolute;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 12vw, 11rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(6, 25, 18, 0.28);
  user-select: none;
  pointer-events: none;
}
.hero-ghost--left { left: 2%; top: -24%; }
.hero-ghost--right { right: 1%; top: -24%; }

.hero-circle {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  margin-inline: clamp(-90px, -4.5vw, -40px);
  width: clamp(320px, 41vw, 610px);
  animation: heroFloat 7s ease-in-out infinite alternate;
}
.hero-img {
  width: 100%;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.04);
}
@keyframes heroFloat {
  from { transform: translateY(8px); }
  to   { transform: translateY(-10px); }
}

/* floating info chips */
.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(7, 31, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 12px 18px 12px 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(7, 31, 22, 0.4);
}
.hero-float img {
  width: 58px; height: 58px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
}
.hero-float--right { flex-direction: row-reverse; padding: 12px 12px 12px 18px; }
.hero-float-text { display: flex; flex-direction: column; gap: 1px; }
.hero-float-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.hero-float-text span { font-size: 0.76rem; color: rgba(255, 254, 249, 0.72); }
.hf-bar {
  width: 44px; height: 3px;
  border-radius: 2px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--gold), rgba(242, 185, 13, 0.15));
}
.hero-float--left { left: 5%; top: 34%; }
.hero-float--right { right: 5%; top: 54%; }

/* ── hero bottom — angled cream panels (reference V-notch) ── */
.hero-bottom {
  position: relative;
  z-index: 4;
  margin-top: clamp(10px, 3vh, 34px);
  background: var(--sage);
}
.hero-bottom-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr 0.95fr;
  align-items: stretch;
  min-height: clamp(240px, 30vh, 320px);
}
.hb-panel {
  background: var(--cream);
  padding: 34px clamp(24px, 3.5vw, 58px) 42px;
}
.hb-left {
  clip-path: polygon(0 110px, 100% 0, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.hb-right {
  clip-path: polygon(0 0, 100% 110px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.hb-top { display: block; }
.hb-divider {
  display: block;
  height: 1px;
  background: var(--line);
  margin-top: 20px;
}
.hb-right > .hb-divider { align-self: stretch; width: 100%; margin-top: 0; }
.hb-center {
  background: linear-gradient(160deg, var(--green-950), var(--green-980));
  border-radius: 0 0 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding: 30px 24px 48px;
}
.hb-center p { color: var(--mint); font-size: 0.95rem; max-width: 320px; }

.hb-socials { display: flex; gap: 12px; }
.hb-socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green-800);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.hb-socials a:first-child { background: var(--gold); border-color: transparent; color: var(--green-950); }
.hb-socials a:hover { transform: translateY(-3px); background: var(--green-800); color: var(--cream); }
.hb-socials svg { width: 18px; height: 18px; }
.hb-tagline {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  max-width: 290px;
}
.hb-tagline strong { color: var(--green-700); }

.hb-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 22px 8px 8px;
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hb-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.hb-play {
  width: 30px; height: 30px;
  background: var(--white);
  color: var(--green-800);
  border-radius: 50%;
  padding: 8px;
}
.hb-stat { display: flex; align-items: center; gap: 16px; }
.hb-stat strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.3rem);
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hb-stat span { font-size: 0.8rem; line-height: 1.4; color: var(--ink-soft); }
.hb-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s;
}
.hb-link svg { width: 14px; height: 14px; }
.hb-link:hover { color: var(--gold-deep); }

/* ══════════════ PRODUCTS ══════════════ */
.products { padding-top: 104px; }
.view-all { flex: none; }

.p-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.p-tab {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  transition: all 0.22s ease;
}
.p-tab:hover { border-color: var(--green-600); color: var(--green-800); }
.p-tab.is-active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(15, 61, 44, 0.3);
}

.p-carousel-wrap { position: relative; }
.p-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  scroll-behavior: smooth;
}
.p-track::-webkit-scrollbar { display: none; }

.p-card {
  flex: 0 0 calc(25% - 17px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.p-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.p-card.is-hidden { display: none; }

.p-media { position: relative; aspect-ratio: 1 / 0.82; overflow: hidden; background: var(--cream-2); }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.p-card:hover .p-media img { transform: scale(1.07); }
.p-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-800);
  color: var(--cream);
  border-radius: 999px;
  padding: 5px 12px;
}
.p-badge-alt { background: var(--gold); color: var(--green-950); }
.p-badge-hot { background: #D9534F; color: #fff; }

.p-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.p-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.25; }
.p-desc { color: var(--muted); font-size: 0.84rem; flex: 1; }
.p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
}
.p-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-800);
}
.p-price span { font-size: 0.72rem; color: var(--muted); }
.p-add {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--green-800);
  display: grid;
  place-items: center;
  transition: all 0.22s ease;
}
.p-add:hover { background: var(--green-800); color: var(--cream); transform: scale(1.08) rotate(-8deg); }
.p-add svg { width: 19px; height: 19px; }

.p-nav {
  position: absolute;
  top: 34%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--green-900);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: all 0.22s ease;
  z-index: 5;
}
.p-nav:hover { background: var(--green-900); border-color: var(--green-900); color: var(--cream); }
.p-nav svg { width: 19px; height: 19px; }
.p-prev { left: -20px; }
.p-next { right: -20px; }

/* branded tiles (products without photos) */
.cat-media--branded { display: grid; place-items: center; }
.branded-tile {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.branded-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: 0.55;
}
.branded-tile::after {
  content: "";
  position: absolute;
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 26px solid rgba(255, 255, 255, 0.10);
  top: -70px; right: -70px;
}
.tile-icon { width: 42%; max-width: 96px; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22)); position: relative; z-index: 1; }
.tile-gold  { background: linear-gradient(140deg, #D9A30A, #F2B90D); }
.tile-green { background: linear-gradient(140deg, #14523A, #1B6B4B); }
.tile-red   { background: linear-gradient(140deg, #C9463F, #E06A55); }

.products-cta {
  margin-top: 44px;
  text-align: center;
  background: var(--gold-tint);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.products-cta p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 20px; }
.products-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════ TAGLINE BANNER — rounded green card ══════════════ */
.tagline-banner { padding: 0 0 8px; }
.tagline-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(700px 320px at 88% -10%, rgba(242, 185, 13, 0.16), transparent 60%),
    linear-gradient(120deg, var(--green-900), var(--green-950));
  color: var(--white);
  padding: clamp(56px, 7vw, 84px) clamp(28px, 5vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.tagline-deco {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.tagline-inner { position: relative; }
.tagline-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.tag-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.tagline-card p { color: rgba(255, 254, 249, 0.75); max-width: 640px; margin: 0 auto 28px; }
.tagline-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 254, 249, 0.85);
}
.tagline-meta strong { color: var(--gold-soft); }
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); }

/* ══════════════ FEATURES ══════════════ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.fi-green { background: #E4F0E8; color: var(--green-700); }
.fi-blue  { background: #E7F1FB; color: #2E7DD1; }
.fi-gold  { background: var(--gold-tint); color: var(--gold-deep); }
.fi-red   { background: #FBEBEA; color: #D9534F; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* ══════════════ WHO WE SERVE ══════════════ */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.serve-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.serve-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.serve-media { aspect-ratio: 16 / 10; overflow: hidden; }
.serve-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.serve-card:hover .serve-media img { transform: scale(1.07); }
.serve-body { padding: 22px 24px 26px; }
.serve-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.serve-body h3::after {
  content: "→";
  color: var(--gold-deep);
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.22s ease, margin-left 0.22s ease;
}
.serve-card:hover .serve-body h3::after { opacity: 1; margin-left: 12px; }
.serve-body p { color: var(--muted); font-size: 0.9rem; }

/* ══════════════ HOW IT WORKS ══════════════ */
.section-dark { position: relative; overflow: hidden; }
.how-ring {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  top: -200px; right: -140px;
  pointer-events: none;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(242, 185, 13, 0.35); transform: translateY(-5px); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step h3 { color: var(--white); font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: rgba(255, 254, 249, 0.68); font-size: 0.88rem; }

/* ══════════════ CERTIFICATIONS ══════════════ */
.certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.certs-content > p { color: var(--muted); margin-bottom: 30px; }
.cert-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cert-badge {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 17px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cert-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--gold-tint);
  color: var(--green-800);
  display: grid;
  place-items: center;
}
.cert-icon svg { width: 22px; height: 22px; }
.cert-badge strong { display: block; font-family: var(--font-display); font-size: 0.93rem; }
.cert-badge span { font-size: 0.78rem; color: var(--muted); }

.certs-visual { position: relative; }
.certs-visual img { border-radius: 28px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.certs-float {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(7, 31, 22, 0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.certs-float strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-soft); }
.certs-float span { font-size: 0.78rem; color: rgba(255, 254, 249, 0.75); }

/* ══════════════ EXPORT ══════════════ */
.export-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.export-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: var(--white);
  padding: 20px;
}
.export-content > p { color: var(--muted); margin-bottom: 28px; }
.export-list { display: grid; gap: 14px; }
.export-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.export-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.el-icon { font-size: 1.35rem; line-height: 1.3; }
.export-list strong { display: block; font-family: var(--font-display); font-size: 0.96rem; }
.export-list span:not(.el-icon) { font-size: 0.85rem; color: var(--muted); }

/* ══════════════ CTA BANNER — rounded green card ══════════════ */
.cta-banner { padding: 8px 0; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(700px 340px at 10% -10%, rgba(242, 185, 13, 0.22), transparent 58%),
    linear-gradient(120deg, var(--green-950), var(--green-800));
  padding: clamp(52px, 6vw, 76px) clamp(28px, 5vw, 68px);
  box-shadow: var(--shadow-lg);
}
.cta-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px dashed rgba(246, 206, 78, 0.25);
  bottom: -180px; right: -100px;
  pointer-events: none;
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.cta-card h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.cta-card h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 500; color: var(--gold); }
.cta-card p { color: rgba(255, 254, 249, 0.75); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════ ABOUT ══════════════ */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}
.about-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-badge::before {
  content: "";
  position: absolute;
  top: 14px; left: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.about-badge strong { font-family: var(--font-display); font-size: 0.98rem; }
.about-badge span { font-size: 0.78rem; color: var(--muted); }
.about-lead { color: var(--ink-soft); font-size: 1.03rem; margin-bottom: 26px; }
.about-points { display: grid; gap: 16px; margin-bottom: 32px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.ap-check {
  flex: none;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.about-points strong { display: block; font-family: var(--font-display); font-size: 0.98rem; }
.about-points span { font-size: 0.87rem; color: var(--muted); }

/* ══════════════ TESTIMONIALS ══════════════ */
.t-slider-wrap { position: relative; }
.t-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 4px 22px;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.t-card blockquote { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.t-card figcaption img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-tint);
}
.t-card strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.t-card figcaption span { font-size: 0.8rem; color: var(--muted); }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 12px; }
.t-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--green-900);
  display: grid;
  place-items: center;
  transition: all 0.22s ease;
}
.t-btn:hover { background: var(--green-900); border-color: var(--green-900); color: var(--cream); }
.t-btn svg { width: 18px; height: 18px; }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: #D8CFB4;
  transition: all 0.25s ease;
}
.t-dot.is-active { background: var(--green-800); width: 26px; }

/* ══════════════ BLOG ══════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16 / 9.5; overflow: hidden; background: var(--cream-2); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.blog-card:hover .blog-media img { transform: scale(1.07); }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--gold-tint);
  border-radius: 999px;
  padding: 5px 12px;
}
.blog-body h3 { font-family: var(--font-display); font-size: 1.14rem; font-weight: 700; }
.blog-body p { color: var(--muted); font-size: 0.88rem; flex: 1; }
.blog-read { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--green-700); }
.blog-card:hover .blog-read { color: var(--gold-deep); }

/* ══════════════ FOOTER ══════════════ */
.site-footer {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(34, 135, 95, 0.25), transparent 60%),
    var(--green-980);
  color: rgba(255, 254, 249, 0.78);
  padding: 76px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr; gap: 44px; padding-bottom: 52px; }
.footer-logo {
  height: 64px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  width: auto;
  margin-bottom: 22px;
}
.footer-tagline { font-size: 0.9rem; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: background 0.22s ease, transform 0.22s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--green-950); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 11px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col ul a { font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.footer-col ul a:hover { color: var(--gold-soft); padding-left: 4px; }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.85rem; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold-soft); }
.footer-contact strong { color: var(--white); font-weight: 600; }

.newsletter { margin-top: 24px; }
.newsletter label { font-size: 0.8rem; display: block; margin-bottom: 10px; color: rgba(255, 254, 249, 0.65); }
.nl-row { display: flex; gap: 8px; }
.nl-row input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 11px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.nl-row input::placeholder { color: rgba(255, 254, 249, 0.42); }
.nl-row input:focus { border-color: var(--gold); }
.nl-row .btn { padding: 11px 20px; font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom strong { color: var(--white); }
.footer-group { color: rgba(255, 254, 249, 0.5); }

/* ══════════════ WHATSAPP FLOAT ══════════════ */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
  transition: transform 0.24s ease;
  animation: waPulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ══════════════ REVEAL ANIMATIONS ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-circle, .ring-3, .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1180px) {
  .p-card { flex-basis: calc(33.333% - 15px); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .t-card { flex-basis: calc(50% - 12px); }
  .p-prev { left: -10px; }
  .p-next { right: -10px; }
  .hero-float--left { left: 2.5%; }
  .hero-float--right { right: 2.5%; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .header-actions .btn-nav-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(340px, 84vw);
    background: var(--cream);
    box-shadow: -18px 0 50px rgba(7, 31, 22, 0.22);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding: 96px 26px 30px;
    overflow-y: auto;
    z-index: 999;
    border-radius: 24px 0 0 0;
    display: block;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: 12px 14px; font-size: 1rem; font-weight: 500; color: var(--ink-soft) !important; border-radius: 12px; }
  .nav-link:hover, .nav-link.active { color: var(--green-800) !important; background: var(--gold-tint); }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    width: 100%;
    padding: 0 0 8px 14px;
    display: none;
    background: transparent;
  }
  .has-dropdown.open .dropdown { display: grid; }
  .nav-cta-mobile { display: inline-flex; margin-top: 18px; }

  .hero-main { padding-top: 118px; }
  .hero-circle { width: clamp(250px, 52vw, 400px); margin-inline: clamp(-60px, -7vw, -26px); }
  .hero-float { display: none; }
  .hero-ghost { font-size: clamp(5rem, 18vw, 9rem); }

  .hero-bottom { background: var(--sage); }
  .hero-bottom-grid { grid-template-columns: 1fr; min-height: 0; }
  .hb-left, .hb-right { clip-path: none; padding: 30px clamp(22px, 6vw, 44px); }
  .hb-left { border-radius: 26px 26px 0 0; padding-bottom: 10px; }
  .hb-right { padding-top: 10px; }
  .hb-center { order: 3; border-radius: 0 0 26px 26px; padding: 26px clamp(22px, 6vw, 44px) 36px; }

  .p-card { flex-basis: calc(50% - 11px); }
  .certs-grid, .export-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 10px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .hero { padding: 8px; }
  .hero-frame { border-radius: 28px; min-height: 0; }
  .hero-word { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-circle { width: clamp(180px, 54vw, 270px); }
  .hero-eyebrow { letter-spacing: 0.24em; font-size: 11px; }
  .hero-ghost { display: none; }
  .brand-logo { height: 46px; }
  .p-card { flex-basis: 78%; }
  .features-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .t-card { flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .products-cta-btns .btn { width: 100%; }
  .p-prev { left: -6px; }
  .p-next { right: -6px; }
  .wa-float { right: 16px; bottom: 16px; }
}
