/* ============================================================
   GREEN FIELDS OVERSEAS — TZENOVA PAGE STYLES
   ============================================================ */

:root {
  --tg:  #0D4A2C;
  --tm:  #1A6B3E;
  --tl:  #27924F;
  --tp:  #EBF7EE;
}

/* ── TZENOVA LOGO BAR ── */
.tz-logo-bar {
  background: var(--white);
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.tz-logo-bar img { height: 70px; object-fit: contain; margin: 0 auto; }
.tz-logo-bar__tagline {
  font-size: 14px;
  color: var(--grey);
  margin-top: 8px;
  font-style: italic;
}

/* ── TZENOVA HERO ── */
.tz-hero {
  background: linear-gradient(150deg, var(--tg) 0%, #0F5C35 45%, var(--tm) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.tz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-light-lines.jpg') center / cover;
  opacity: 0.04;
}
.tz-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 80%, rgba(200,168,75,0.06), transparent 45%);
}
.tz-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.30);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 22px;
}
.tz-hero__badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-l);
  text-transform: uppercase;
}
.tz-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.tz-hero h1 em { font-style: italic; color: var(--gold-l); }
.tz-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.80;
  margin-bottom: 28px;
}
.tz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.tz-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tz-pill i { color: #4CAF50; font-size: 11px; }
.tz-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.tz-hero__product { text-align: center; }
.tz-hero__product img {
  max-height: 440px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.30));
  animation: tzFloat 4s ease-in-out infinite;
}
@keyframes tzFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.tz-disclaimer {
  background: rgba(0,0,0,0.22);
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.44);
  line-height: 1.6;
  border-left: 3px solid rgba(200,168,75,0.28);
}
.tz-disclaimer strong { color: rgba(255,255,255,0.58); }

/* ── BENEFITS ── */
.tz-benefits { background: var(--tp); }
.tz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tz-benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(27,94,59,0.10);
  transition: all 0.3s;
}
.tz-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,94,59,0.10);
  border-color: #4CAF50;
}
.tz-benefit-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--tg), var(--tm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.tz-benefit-card__icon i { color: var(--gold-l); font-size: 22px; }
.tz-benefit-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
}
.tz-benefit-card p { font-size: 13.5px; color: var(--grey); line-height: 1.65; }

/* ── PRODUCT PHOTOS ── */
.tz-photos { background: var(--tp); }
.tz-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  align-items: center;
}
.tz-photo-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(27,94,59,0.10);
  text-align: center;
  transition: all 0.3s;
}
.tz-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27,94,59,0.10);
}
.tz-photo-card img {
  max-height: 220px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
}
.tz-photo-card p { font-size: 14px; font-weight: 700; color: var(--deep); }

/* ── LABEL SECTION ── */
.tz-label { background: var(--white); }
.tz-label-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tz-label__img { width: 100%; border-radius: 8px; object-fit: contain; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.tz-label__desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
}
.tz-support-box {
  background: var(--tp);
  border-radius: var(--radius);
  padding: 22px 24px;
  border-left: 4px solid var(--tm);
}
.tz-support-box p {
  font-size: 14px;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.tz-support-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tz-support-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--deep);
}
.tz-support-list li img { width: 20px; height: 20px; flex-shrink: 0; }

/* ── HOW TO USE ── */
.tz-howto { background: var(--white); }
.tz-howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.tz-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.tz-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--tp);
  border-radius: var(--radius);
  border-left: 4px solid var(--tm);
  transition: all 0.25s;
}
.tz-step:hover { background: #d4edda; border-color: var(--gold); }
.tz-step__num {
  width: 36px;
  height: 36px;
  background: var(--tm);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.tz-step__content h4 { font-size: 14.5px; font-weight: 700; color: var(--deep); margin-bottom: 5px; }
.tz-step__content p  { font-size: 13.5px; color: var(--grey); line-height: 1.60; }

.tz-warn-box {
  background: linear-gradient(135deg, #7F1D1D, #991B1B);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 20px;
  border-left: 4px solid #FCA5A5;
}
.tz-warn-box p { font-size: 13.5px; color: rgba(255,255,255,0.80); line-height: 1.70; }
.tz-warn-box strong { color: #FCA5A5; }

.tz-howto__img { text-align: center; padding-top: 32px; }
.tz-howto__img img { max-width: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 4px 24px rgba(0,0,0,0.10); }

/* ── COMPARISON CARDS ── */
.tz-comparison { background: var(--tp); }
.tz-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.compare-card {
  border-radius: 14px;
  padding: 36px 32px;
  border: 2px solid;
}
.compare-card--tz {
  background: linear-gradient(135deg, var(--tg), var(--tm));
  border-color: var(--tm);
}
.compare-card--ph { background: var(--cream); border-color: #E5E7EB; }
.compare-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.compare-card--tz h3 { color: var(--gold-l); }
.compare-card--ph h3 { color: var(--grey); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
}
.compare-card--tz .compare-list li { color: rgba(255,255,255,0.85); }
.compare-card--ph .compare-list li { color: var(--grey); }
.icon-yes { color: #4ade80; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.icon-no  { color: #f87171; font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ── COMPARISON TABLE ── */
.tz-table { background: var(--white); }
.tz-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.tz-compare-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tz-compare-table th:first-child { background: var(--deep); color: var(--white); text-align: left; }
.tz-compare-table th:nth-child(2){ background: var(--tm);   color: var(--white); text-align: center; }
.tz-compare-table th:nth-child(3){ background: #4B5563;     color: var(--white); text-align: center; }
.tz-compare-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.tz-compare-table tr:last-child td { border-bottom: none; }
.tz-compare-table tr:nth-child(even) td { background: rgba(235,247,238,0.55); }
.tz-compare-table td:first-child  { font-weight: 600; color: var(--dark); }
.tz-compare-table td:nth-child(2) { text-align: center; color: var(--tm); font-weight: 600; }
.tz-compare-table td:nth-child(3) { text-align: center; color: #9CA3AF; }

/* ── TESTIMONIALS ── */
.tz-testi { background: var(--tg); padding: 80px 0; }
.tz-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.tz-testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.tz-testi-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,168,75,0.30);
}
.tz-testi-card__stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }
.tz-testi-card blockquote {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
}
.tz-testi-card__name { font-size: 13px; font-weight: 700; color: var(--gold-l); }

/* ── ORDER CTA ── */
.tz-order {
  background: linear-gradient(135deg, var(--tg), #0F5C35);
  padding: 72px 0;
  text-align: center;
}
.tz-order h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.tz-order p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.tz-order-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIVE TZENOVA ── */
@media (max-width: 900px) {
  .tz-hero__grid,
  .tz-label-grid,
  .tz-howto-grid,
  .tz-compare-grid { grid-template-columns: 1fr; gap: 36px; }
  .tz-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .tz-photos-grid   { grid-template-columns: 1fr 1fr; }
  .tz-testi-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tz-benefits-grid,
  .tz-photos-grid   { grid-template-columns: 1fr; }
  .tz-hero__btns,
  .tz-order-btns    { flex-direction: column; }
  .btn              { justify-content: center; }
  .tz-compare-table { font-size: 12.5px; }
  .tz-compare-table th,
  .tz-compare-table td { padding: 10px 12px; }
}
