/* ==========================================================================
   BHAROSA — ভরসা  |  Main Stylesheet
   Mobile-first · Bold Bengali Poster Aesthetic · West Bengal Dairy Brand
   ========================================================================== */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Hind+Siliguri:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --red:      #D72027;
  --red-dk:   #961218;
  --gold:     #F9B208;
  --gold-dk:  #D69100;
  --green:    #2E7D32;
  --cream:    #FFF8EC;
  --ink:      #211B17;
  --ink-soft: #5A4E46;
  --wa:       #25D366;
  --white:    #FFFFFF;

  --font-display: 'Baloo Da 2', 'Noto Sans Bengali', sans-serif;
  --font-body:    'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --font-data:    'Poppins', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 9999px;

  --shadow-card: 0 4px 24px rgba(33,27,23,.12);
  --shadow-btn:  0 4px 16px rgba(215,32,39,.35);
  --shadow-gold: 0 4px 16px rgba(249,178,8,.40);
  --shadow-deep: 0 8px 40px rgba(33,27,23,.18);

  --transition:      0.22s ease;
  --transition-slow: 0.40s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── Visible Focus Ring ───────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Reduced Motion ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Typography Scale ─────────────────────────────────────────────────────── */
.t-hero  { font-family: var(--font-display); font-size: clamp(40px, 11vw, 56px);  font-weight: 800; line-height: 1.10; }
.t-h2    { font-family: var(--font-display); font-size: clamp(30px, 7vw,  36px);  font-weight: 800; line-height: 1.15; }
.t-h3    { font-family: var(--font-display); font-size: clamp(20px, 4.5vw, 22px); font-weight: 700; line-height: 1.25; }
.t-body  { font-family: var(--font-body);    font-size: clamp(16px, 2.5vw, 18px); line-height: 1.70; }
.t-small { font-family: var(--font-body);    font-size: clamp(13px, 2vw,  14px);  }
.t-data  { font-family: var(--font-data);    font-size: 13px; letter-spacing: .02em; }

/* ── Section & Container (single source of truth) ────────────────────────── */
.section    { padding: 64px 0; }
.container  {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ── Decorative Divider ───────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 44px;
  max-width: 360px;
}
.divider__line { flex: 1; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 3px; }
.divider__icon { font-size: 24px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════════════════════ */
.header {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 3px 16px rgba(0,0,0,.30);
  border-bottom: 4px solid var(--gold);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  max-width: 940px;
  margin-inline: auto;
}

.header__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__emblem {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(249,178,8,.50));
}

.header__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.header__wordmark-bn {
  display: block;
  font-size: 30px;
  letter-spacing: .01em;
  text-shadow:
    1px  1px 0 var(--red-dk),
   -1px -1px 0 var(--red-dk),
    0    2px 8px rgba(0,0,0,.30);
}

.header__wordmark-en {
  display: block;
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: -1px;
}

.header__wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  min-height: 46px;
}
.header__wa-btn:hover  { background: #1aab52; transform: translateY(-1px); }
.header__wa-btn:active { transform: translateY(0); }
.header__wa-btn svg    { width: 20px; height: 20px; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--red);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 105% 10%, rgba(249,178,8,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at -5%  90%, rgba(150,18,24,.75) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' opacity='.04'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--cream);
  clip-path: ellipse(58% 100% at 50% 100%);
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 56px 20px 88px;
  max-width: 940px;
  margin-inline: auto;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
  animation: badge-bounce 2.6s ease-in-out infinite;
  width: fit-content;
  border: 2px solid var(--gold-dk);
}
@keyframes badge-bounce {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-5px); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 11vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  text-shadow:
    2px  2px 0 var(--red-dk),
    4px  4px 0 rgba(150,18,24,.40),
    0    4px 16px rgba(0,0,0,.30);
  letter-spacing: -.01em;
}

.hero__title--gold {
  color: var(--gold);
  text-shadow:
    2px  2px 0 var(--gold-dk),
    0    4px 12px rgba(249,178,8,.40);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 3.5vw, 18px);
  color: rgba(255,255,255,.90);
  margin-top: 14px;
  max-width: 500px;
  line-height: 1.65;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__illustration {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.35));
  animation: float 3.6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0);     }
  50%      { transform: translateY(-10px); }
}

/* ════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(17px, 3.5vw, 19px);
  padding: 17px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
  min-height: 58px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  border: 2.5px solid var(--gold-dk);
}
.btn--primary:hover  { background: var(--gold-dk); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(249,178,8,.55); }
.btn--primary:active { transform: translateY(0); }

.btn--wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.40);
  border: 2.5px solid #1aab52;
}
.btn--wa:hover  { background: #1aab52; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.50); }
.btn--wa:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 3px solid rgba(255,255,255,.75);
}
.btn--outline:hover  { background: rgba(255,255,255,.14); border-color: var(--white); }
.btn--outline:active { background: rgba(255,255,255,.20); }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.trust-strip__track {
  display: flex;
  gap: 52px;
  padding: 14px 0;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

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

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.trust-strip__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(249,178,8,.70);
}

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.about { background: var(--cream); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.about__img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 5px solid var(--gold);
  border-radius: var(--radius-xl);
  z-index: 1;
  pointer-events: none;
}
.about__img-frame::after {
  content: 'ভরসা';
  position: absolute;
  top: 22px;
  left: -34px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 48px;
  transform: rotate(-45deg);
  z-index: 2;
  letter-spacing: .06em;
  pointer-events: none;
}

.about__img { width: 100%; display: block; border-radius: var(--radius-xl); }

.about__section-label {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}

.about__title { color: var(--red-dk); margin-bottom: 16px; }
.about__text  { color: var(--ink-soft); margin-bottom: 10px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about__stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }

.about__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 5px;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════════════════════════════════════ */
.products { background: var(--white); }
.products__heading { color: var(--red-dk); text-align: center; margin-bottom: 8px; }
.products__sub     { text-align: center; color: var(--ink-soft); margin-bottom: 40px; }

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(33,27,23,.16);
}

.product-card__img-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,.04) 12px,
    rgba(255,255,255,.04) 13px
  );
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-dk);
  z-index: 1;
}
.product-card__badge--green { background: var(--green); color: var(--white); border-color: #245c27; }

.product-card__icon {
  font-size: 76px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
  transition: transform var(--transition);
  position: relative;
  z-index: 1;
}
.product-card:hover .product-card__icon { transform: scale(1.10) rotate(-3deg); }

.product-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-card__name-en {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
  letter-spacing: .04em;
}

.product-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1;
  line-height: 1.65;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.product-card__unit {
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--font-data);
  margin-top: 2px;
}

.product-card__btn {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--red-dk);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-btn);
}
.product-card__btn:hover  { background: var(--red-dk); transform: scale(1.05); box-shadow: 0 6px 20px rgba(215,32,39,.45); }
.product-card__btn:active { transform: scale(1.00); }

/* ════════════════════════════════════════════════════════════════════════════
   FEEDING GUIDE
   ════════════════════════════════════════════════════════════════════════════ */
.feeding { background: var(--cream); }
.feeding__heading { color: var(--red-dk); text-align: center; margin-bottom: 8px; }
.feeding__sub     { text-align: center; color: var(--ink-soft); margin-bottom: 14px; }

.feeding__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  box-shadow: var(--shadow-gold);
  border-left: 5px solid var(--gold-dk);
}
.feeding__note-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }

.feeding__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--gold);
  margin-bottom: 8px;
}

.feeding__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--font-body);
}

.feeding__table thead tr { background: var(--red); color: var(--white); }

.feeding__table thead th {
  padding: 15px 16px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  letter-spacing: .01em;
}

.feeding__table tbody tr {
  border-bottom: 1px solid rgba(33,27,23,.09);
  transition: background var(--transition);
}
.feeding__table tbody tr:nth-child(even) { background: var(--cream); }
.feeding__table tbody tr:last-child      { border-bottom: none; }
.feeding__table tbody tr:hover           { background: rgba(249,178,8,.08); }

.feeding__table tbody td {
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  vertical-align: middle;
}
.feeding__table tbody td:first-child { font-weight: 700; color: var(--red-dk); }

.feeding__table .td-qty {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
}

.feeding__table .t-data { font-family: var(--font-data); font-size: 13px; }

.feeding__table .td-highlight { background: rgba(249,178,8,.12) !important; }

.feeding__table tfoot td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  font-family: var(--font-body);
}

/* ════════════════════════════════════════════════════════════════════════════
   WHY BHAROSA
   ════════════════════════════════════════════════════════════════════════════ */
.why { background: var(--red); color: var(--white); overflow: hidden; position: relative; }

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(249,178,8,.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1.5' fill='%23ffffff' opacity='.06'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.why__heading { text-align: center; color: var(--gold); margin-bottom: 8px; }
.why__sub     { text-align: center; color: rgba(255,255,255,.82); margin-bottom: 44px; }

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

.why-card {
  background: rgba(255,255,255,.10);
  border: 2px solid rgba(249,178,8,.35);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.17);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.why-card__icon  { font-size: 44px; flex-shrink: 0; line-height: 1; }

.why-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.why-card__text { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials__heading { color: var(--red-dk); text-align: center; margin-bottom: 8px; }
.testimonials__sub     { text-align: center; color: var(--ink-soft); margin-bottom: 40px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 18px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: .22;
  line-height: 1;
  pointer-events: none;
}

.testi-card__stars { color: var(--gold); font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card__text  { font-family: var(--font-body); font-size: 16px; color: var(--ink); line-height: 1.72; margin-bottom: 18px; }

.testi-card__author { display: flex; align-items: center; gap: 14px; }

.testi-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}

.testi-card__name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); }
.testi-card__loc  { font-family: var(--font-data); font-size: 12px; color: var(--ink-soft); margin-top: 1px; }

/* ════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
  top: -70px; left: -70px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.10);
  border-radius: 50%;
  bottom: -110px; right: -90px;
  pointer-events: none;
}

.cta-section__inner { position: relative; z-index: 1; }

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 6.5vw, 40px);
  font-weight: 800;
  color: var(--red-dk);
  margin-bottom: 12px;
  line-height: 1.15;
  text-shadow: 1px 1px 0 rgba(150,18,24,.20);
}

.cta-section__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}

.cta-section__btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0 28px;
  border-top: 4px solid var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer__brand-wordmark {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(249,178,8,.25);
  letter-spacing: .02em;
}

.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(249,178,8,.30);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer__list a { color: rgba(255,255,255,.72); transition: color var(--transition); }
.footer__list a:hover { color: var(--gold); }

.footer__wa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  margin-top: 18px;
  border: 2px solid #1aab52;
  transition: background var(--transition), transform var(--transition);
  min-height: 52px;
  text-decoration: none;
}
.footer__wa-link:hover { background: #1aab52; transform: translateY(-2px); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
}

.footer__copy { font-family: var(--font-data); font-size: 13px; color: rgba(255,255,255,.38); }

.footer__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,125,50,.25);
  border: 1.5px solid var(--green);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-data);
  font-size: 12px;
  color: #7dcc82;
  letter-spacing: .04em;
}

/* ════════════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ════════════════════════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 28px rgba(37,211,102,.50);
  border: 2.5px solid #1aab52;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
  min-height: 58px;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.50); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,.78); }
}
.float-wa:hover { transform: scale(1.07) translateY(-3px); }
.float-wa svg   { width: 24px; height: 24px; flex-shrink: 0; }
.float-wa__label { display: none; }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — tablet >= 560px
   ════════════════════════════════════════════════════════════════════════════ */
@media (min-width: 560px) {
  .products__grid     { grid-template-columns: repeat(2, 1fr); }
  .why__grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid       { grid-template-columns: repeat(2, 1fr); }
  .float-wa__label    { display: inline; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — desktop >= 840px
   ════════════════════════════════════════════════════════════════════════════ */
@media (min-width: 840px) {
  .hero__inner    { grid-template-columns: 1fr 1fr; gap: 52px; padding-bottom: 104px; }
  .about__grid    { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid      { grid-template-columns: repeat(3, 1fr); }
  .footer__grid   { grid-template-columns: 2fr 1fr 1fr; }
}
