/* ============================================================
   FRUITISH — BOTANICAL LUXURY EDITORIAL
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* === VARIABLES === */
:root {
  --forest:       #0F3213;
  --forest-deep:  #07190A;
  --forest-light: #1A4520;
  --sage:         #5B8C51;
  --moss:         #78B342;
  --cream:        #FDFAF4;
  --sand:         #F0EBE0;
  --gold:         #EDDD5E;
  --amber:        #C8920A;
  --text:         #1C2B1E;
  --muted:        #5A7060;
  --white:        #FFFFFF;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-pill:  999px;
  --tr:           0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:    0 2px 16px rgba(15,50,19,.07);
  --shadow-md:    0 8px 40px rgba(15,50,19,.13);
  --shadow-lg:    0 24px 80px rgba(15,50,19,.2);
  --section-py:   96px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Signika', sans-serif;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color var(--tr); }

/* === TYPOGRAPHY === */
h1, h2, h3, .font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #2E6B23;
  background: rgba(91,140,81,0.1);
  border: 1px solid rgba(91,140,81,0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-badge.light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--sage); font-weight: 300; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.6;
}

.py-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }

/* === NAV SOCIAL ICONS === */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
  margin-left: 8px;
}
.nav-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: transform var(--tr), opacity var(--tr);
  opacity: 0.7;
}
.nav-social-icon:hover { transform: scale(1.15); opacity: 1; color: white; }
.nav-social-icon.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.nav-social-icon.whatsapp  { background: #25D366; }
.nav-social-icon.linkedin  { background: #0077B5; }
.nav-social-icon.facebook  { background: #1877F2; }

/* === NAVBAR === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 998;
}
.site-header .navbar {
  padding: 20px 40px;
  transition: all var(--tr);
}
.site-header.scrolled {
  background: rgba(7,25,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.site-header.scrolled .navbar { padding: 10px 40px; }

.navbar-brand img {
  height: 56px;
  width: auto;
}

.navbar-nav .nav-item .nav-link {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  color: rgba(255,255,255,0.8) !important;
  padding: 6px 12px !important;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-item .nav-link:hover { color: white !important; }
.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-ai-btn {
  background: var(--gold) !important;
  color: var(--forest) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  padding: 7px 20px !important;
}
.nav-ai-btn::after { display: none !important; }
.nav-ai-btn:hover { background: #f3e75a !important; color: var(--forest) !important; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === HERO === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--forest-deep);
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7,25,10,.95) 0%, rgba(7,25,10,.78) 50%, rgba(7,25,10,.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 40px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(237,221,94,.35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.45; transform:scale(.65); }
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.96;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  box-shadow: 0 8px 30px rgba(237,221,94,.3);
  border: 2px solid var(--gold);
}
.btn-hero-primary:hover {
  background: #f5e95a;
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(237,221,94,.4);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: border-color var(--tr), background var(--tr);
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  color: white;
}
.hero-divider {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 44px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* Floating badge */
.hero-float-badge {
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  z-index: 3;
}
.hero-float-badge .fb-icon {
  width: 42px; height: 42px;
  background: rgba(91,140,81,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); font-size: 1.1rem;
}
.hero-float-badge .fb-title { font-weight: 600; font-size: 0.9rem; color: var(--text); line-height:1.2; }
.hero-float-badge .fb-sub { font-size: 0.72rem; font-weight: 300; color: var(--muted); margin-top: 2px; }

.hero-float-green {
  background: var(--forest);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: absolute;
  z-index: 3;
}
.hero-float-green .fg-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-float-green .fg-stars { color: var(--gold); font-size: 0.7rem; margin: 3px 0; }
.hero-float-green .fg-lbl { font-size: 0.68rem; color: rgba(255,255,255,.6); }

.hero-fruit-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
.hero-fruit-img {
  max-height: 85vh;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.5));
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,.45);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: scroll-anim 1.6s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  51% { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* === CHOOSE SECTION === */
.choose-section { background: var(--cream); padding-top: var(--section-py); padding-bottom: var(--section-py); position: relative; }
.choose-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 70px;
  background: var(--forest-deep);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.fruit-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  animation: float 5s ease-in-out infinite;
}
.fruit-showcase-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,140,81,.14) 0%, transparent 70%);
}
.fruit-showcase img {
  position: relative;
  z-index: 1;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15,50,19,.22));
}

/* JS-generated product items */
#left-column .row, #right-column .row {
  margin-bottom: 24px !important;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  transition: background var(--tr), transform var(--tr);
  cursor: default;
  border: 1px solid transparent;
}
#left-column .row:hover, #right-column .row:hover {
  background: rgba(91,140,81,.07);
  border-color: rgba(91,140,81,.15);
  transform: translateY(-2px);
}
#left-column .col-3 svg, #right-column .col-3 svg { width: 50px !important; height: 50px !important; }
#left-column p.fs-4, #right-column p.fs-4 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--forest) !important;
  margin-bottom: 4px !important;
}
#left-column .text-secondary, #right-column .text-secondary {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  font-weight: 300 !important;
  line-height: 1.55 !important;
}

/* === PROCESS SECTION === */
.process-section {
  background: var(--forest);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,25,10,.75);
  z-index: 0;
}
.process-section .container { position: relative; z-index: 1; }

/* JS-generated work steps */
#work-section .col-md-4 {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
#work-section .col-md-4:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-4px);
}
/* Step numbers */
#work-section .col-md-4 > p.fs-2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 4rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.1) !important;
  line-height: 1 !important;
  margin-bottom: 20px !important;
}
/* Circle icon */
#work-section .circle {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: rgba(237,221,94,.12) !important;
  border: 1.5px solid rgba(237,221,94,.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}
/* Title & desc */
#work-section .col-md-4 > p:nth-child(3) {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: white !important;
  margin-bottom: 10px !important;
}
#work-section .process-w, #work-section .col-md-4 > p.fs-18 {
  color: rgba(255,255,255,.62) !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  font-size: 0.92rem !important;
}

/* === WHY CHOOSE SECTION === */
.why-choose-section { background: var(--white); padding-top: var(--section-py); padding-bottom: var(--section-py); }

#whyChooseContainer .card.choose-bg {
  background: var(--cream) !important;
  border: 1px solid rgba(91,140,81,.15) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr) !important;
}
#whyChooseContainer .card.choose-bg:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--sage) !important;
}
#whyChooseContainer .card-body { padding: 30px 28px !important; }
#whyChooseContainer .row { flex-direction: row !important; }
#whyChooseContainer .fs-5 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.28rem !important;
  font-weight: 600 !important;
  color: var(--forest) !important;
}
#whyChooseContainer .text-secondary {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
}
#whyChooseContainer hr { border-color: rgba(91,140,81,.15) !important; margin: 20px 0 !important; }

/* === BENEFITS SECTION === */
.benefits-section {
  background: var(--forest);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,25,10,.8);
  z-index: 0;
}
.benefits-section .container { position: relative; z-index: 1; }

.benefits-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}
.benefits-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* JS-generated feature items */
#featuresContainer .row {
  padding: 22px 0 !important;
  border-color: rgba(255,255,255,.1) !important;
}
#featuresContainer .number {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  opacity: 0.55 !important;
  line-height: 1 !important;
}
#featuresContainer .fs-5 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: white !important;
}
#featuresContainer .fs-6 {
  color: rgba(255,255,255,.62) !important;
  font-weight: 300 !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

/* === STATS SECTION === */
.stats-section { background: var(--gold); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  border-right: 1px solid rgba(15,50,19,.12);
}
.stat-item:last-child { border-right: none; }
.stat-icon { width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.stat-icon img { width: 42px; height: 42px; object-fit: contain; }
.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin: 0 0 4px;
}
.stat-info p { font-size: 0.8rem; color: rgba(15,50,19,.62); font-weight: 300; margin: 0; }

/* === PRICING SECTION === */
.pricing-section { background: var(--cream); padding-top: var(--section-py); padding-bottom: var(--section-py); }

.pricing-tabs-outer { display: flex; justify-content: center; margin-bottom: 52px; }
.pricing-tabs-inner {
  display: inline-flex;
  background: rgba(15,50,19,.08);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 0;
}
/* Original JS expects .tab and .tab-content */
.tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 10px 32px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--tr), color var(--tr);
}
.tab.active { background: var(--forest) !important; color: white !important; }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* JS-generated pricing cards */
.pricing-card .card {
  border: 1px solid rgba(15,50,19,.1) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  transition: transform var(--tr), box-shadow var(--tr) !important;
  box-shadow: var(--shadow-sm) !important;
}
.pricing-card .card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-lg) !important;
}
.pricing-card .price-bg { background: var(--forest) !important; }
.pricing-card .card-body.price-bg { padding: 28px !important; }
.pricing-card .card-body.price-bg h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}
.pricing-card .card-body.price-bg h6 { font-weight: 300 !important; opacity: 0.7 !important; font-size: 0.85rem !important; }
.pricing-card .price-bg.p-3 { padding: 16px 28px !important; border-top: 1px solid rgba(255,255,255,.1) !important; }
.pricing-card .price-bg.p-3 h4 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
}
.pricing-card .fs-6.text-secondary {
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  padding: 20px 28px !important;
  display: block !important;
}
.pricing-card .p-3.pb-4 { padding: 12px 20px 24px !important; }
.pricing-card .btn.price-bg {
  background: var(--forest) !important;
  color: white !important;
  border-radius: var(--radius-pill) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  padding: 11px 28px !important;
  letter-spacing: 0.05em !important;
  border: 2px solid var(--forest) !important;
  transition: background var(--tr), color var(--tr) !important;
}
.pricing-card .btn.price-bg:hover {
  background: transparent !important;
  color: var(--forest) !important;
}

/* === AVAILABILITY SECTION === */
.availability-section { background: var(--white); padding-top: var(--section-py); padding-bottom: var(--section-py); text-align: center; }
.platform-logos svg, .platform-logos a { transition: transform var(--tr), filter var(--tr); display: inline-block; }
.platform-logos a:hover { transform: scale(1.06); }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--sand); padding-top: var(--section-py); padding-bottom: var(--section-py); }

/* JS-generated cards */
.testimonial-card {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
  margin-right: 24px !important;
  border: 1px solid rgba(91,140,81,.1) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform var(--tr), box-shadow var(--tr) !important;
}
.testimonial-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md) !important;
}
.testimonial-card .fs-5 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.18rem !important;
  font-style: italic !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}
.testimonial-card strong {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  color: var(--forest) !important;
  font-size: 0.95rem !important;
}
.testimonial-card .star-icon { color: #C8920A !important; font-size: 0.9rem !important; }
.slick-dots li button::before { color: var(--sage) !important; }
.slick-dots li.slick-active button::before { color: var(--forest) !important; }

.testimonial-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(15,50,19,.2);
  background: transparent;
  color: var(--forest);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-nav-btn:hover { background: var(--forest); border-color: var(--forest); color: white; }

/* === FOOTER === */
.footer-bar { background: var(--forest); color: white; }
.footer-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.08em; text-transform: uppercase;
  align-items: center;
}
.footer-contact { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-contact a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color var(--tr);
}
.footer-contact a:hover { color: white; }

.site-footer { background: var(--forest-deep); color: white; }
.site-footer a { color: rgba(255,255,255,.5); text-decoration: none; font-weight: 300; transition: color var(--tr); font-size: 0.9rem; }
.site-footer a:hover { color: rgba(255,255,255,.9); }
.site-footer h5 { color: rgba(255,255,255,.7); font-family: 'Outfit', sans-serif; }

.social-icons-footer {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.82rem;
  transition: background var(--tr), color var(--tr);
}
.social-icons-footer:hover { background: var(--sage); color: white; }
.footer-giant-logo {
  height: 150px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  object-fit: contain;
}
.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.footer-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}

/* === BUTTONS === */
.btn-fruitish {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: white;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.9rem;
  padding: 12px 28px; border-radius: var(--radius-pill);
  text-decoration: none; border: 2px solid var(--forest);
  transition: background var(--tr), color var(--tr), transform var(--tr);
}
.btn-fruitish:hover { background: transparent; color: var(--forest); transform: translateY(-2px); }

/* scroll reveal handled by GSAP ScrollTrigger */

/* === UTILITIES === */
.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fw-300 { font-weight: 300 !important; }
.px-10 { padding-left: 40px !important; padding-right: 40px !important; }

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
  .hero-content { padding: 120px 24px 80px; }
}
@media (max-width: 991px) {
  :root { --section-py: 64px; }
  .nav-social { border-left: none; padding-left: 0; margin-left: 0; padding-top: 12px; }
  .hero-headline { font-size: clamp(2.5rem, 7vw, 3.8rem); }
  .hero-divider { gap: 28px; margin-top: 36px; padding-top: 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(15,50,19,.1); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .hero-content { padding: 100px 20px 60px; }
  .site-header .navbar { padding: 14px 20px; }
  .site-header.scrolled .navbar { padding: 10px 20px; }
}
@media (max-width: 767px) {
  :root { --section-py: 52px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-divider { gap: 20px; }
  .hero-stat-num { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pricing-tabs-inner { flex-direction: column; width: 100%; max-width: 260px; }
  .choose-section::before { height: 48px; }
  #left-column .row, #right-column .row { padding: 14px 10px; }
}
@media (max-width: 576px) {
  .hero-headline { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(15,50,19,.1); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .px-10 { padding-left: 16px !important; padding-right: 16px !important; }
}
