/* ===========================
   RESET & FOUNDATIONS
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, padding 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.3s;
}

.site-header.scrolled .header-inner {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 35px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

.main-nav a {
  color: #333;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s;
}

.main-nav a:hover {
  background: #f0f0f0;
  color: #1B5E3B;
}

.nav-cta {
  background: #1B5E3B !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #145030 !important;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   PRODUCT HERO
   =========================== */
.product-hero {
  position: relative;
  background: linear-gradient(160deg, #1B5E3B 0%, #0d3522 60%, #1a4a32 100%);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.product-hero-alt {
  background: linear-gradient(160deg, #0d3522 0%, #1B5E3B 50%, #1a6840 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(245, 197, 24, 0.12);
  top: -150px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(100, 200, 150, 0.1);
  bottom: -120px;
  left: -100px;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.product-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.3px;
}

.product-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.product-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 48px;
}

.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F5C518;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

.hero-pill:hover {
  background: rgba(245, 197, 24, 0.15);
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #fff;
}

#cxbot {
  margin-top: 40px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}

.heading-accent {
  width: 4px;
  align-self: stretch;
  background: #1B5E3B;
  border-radius: 2px;
  flex-shrink: 0;
}

.heading-accent-light {
  background: #F5C518;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1B5E3B;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-teal {
  color: #00695C;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}

.section-title-light {
  color: #fff;
}

/* ===========================
   GRID
   =========================== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===========================
   CARDS
   =========================== */
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card-accent {
  border-left: 4px solid #F5C518;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.card-sub {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-gold   { background: #F5C518; }
.icon-green  { background: #1B5E3B; }
.icon-orange { background: #E8850C; }
.icon-green-outline {
  background: #E8F5E9;
  border: 1.5px solid #1B5E3B;
}

/* Card tags (highlight items) */
.card-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.card-tag {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8f8f5;
  border-left: 3px solid #F5C518;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

.card-tag svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   PRICING CARDS
   =========================== */
.pricing-card {
  border: 2px solid transparent;
}

.pricing-gold {
  background: linear-gradient(135deg, #fffdf0 0%, #fff8dc 100%);
  border-color: #F5C518;
}

.pricing-green {
  background: linear-gradient(135deg, #f0faf2 0%, #e2f5e8 100%);
  border-color: #1B5E3B;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

/* ===========================
   SUCCESS / STATS
   =========================== */
.success-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.success-intro h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1B5E3B;
}

.success-intro .award-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
}

.success-intro h3 sup {
  font-size: 0.7rem;
  font-weight: 400;
  color: #999;
}

.flags {
  display: flex;
  gap: 8px;
  font-size: 1.8rem;
}

.stat-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 16px;
}

.stat-grid-4 { grid-template-columns: repeat(4, 1fr); }
.stat-grid-3 { grid-template-columns: repeat(3, 1fr); }

.stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F5C518, #1B5E3B);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.stat:hover::before {
  opacity: 1;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1B5E3B;
  line-height: 1;
}

.stat-prefix,
.stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1B5E3B;
}

.stat p {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  margin-top: 10px;
}

.stat-icon-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footnote {
  font-size: 0.78rem;
  color: #999;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 4px;
}

.footnote a {
  color: #1B5E3B;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footnote a:hover {
  color: #145030;
}

/* ===========================
   TESTIMONIAL
   =========================== */
.testimonial {
  background: linear-gradient(135deg, #1B5E3B 0%, #0d3522 100%);
  border-radius: 24px;
  padding: 48px;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245, 197, 24, 0.08);
  border-radius: 50%;
  top: -60px;
  right: -40px;
  filter: blur(40px);
}

.testimonial-inner {
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  margin-bottom: 16px;
  opacity: 0.8;
}

.testimonial blockquote {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial cite {
  color: #F5C518;
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
}

/* ===========================
   COMPLIANCE
   =========================== */
.compliance-section {
  background: linear-gradient(160deg, #1B5E3B 0%, #0d3522 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.compliance-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(245, 197, 24, 0.06);
  border-radius: 50%;
  bottom: -200px;
  right: -200px;
  filter: blur(80px);
}

.compliance-card {
  padding: 36px;
  border-bottom: 4px solid #F5C518;
}

.compliance-card h3 {
  margin-bottom: 16px;
}

.check-list {
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #444;
}

.check-list li svg { flex-shrink: 0; }

.cert-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  border: 1.5px solid #ddd;
  background: #f9f9f9;
  text-align: center;
  padding: 6px;
  transition: border-color 0.2s;
}

.cert-badge:hover {
  border-color: #1B5E3B;
}

.cert-badge strong { font-size: 0.82rem; color: #1B5E3B; line-height: 1.1; }
.cert-badge span   { font-size: 0.72rem; color: #1B5E3B; font-weight: 600; }
.cert-badge small   { font-size: 0.58rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===========================
   CTA
   =========================== */
.cta-section {
  padding: 64px 0;
  text-align: center;
  background: #fafafa;
}

.cta-button {
  display: inline-block;
  background: #1B5E3B;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(27, 94, 59, 0.25);
}

.cta-button:hover {
  background: #145030;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 94, 59, 0.3);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #111;
  padding: 24px 0;
  text-align: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .stat-grid-4,
  .stat-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title { font-size: 1.8rem; }
  .product-hero-title { font-size: 3.2rem; }
  .stat-num { font-size: 2.2rem; }
  .stat-prefix, .stat-suffix { font-size: 1.8rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    padding: 16px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .mobile-menu-btn { display: flex; }

  .grid-2,
  .grid-3,
  .stat-grid-4,
  .stat-grid-3 {
    grid-template-columns: 1fr;
  }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.5rem; }

  .product-hero { padding: 72px 0 56px; }
  .product-hero-title { font-size: 2.8rem; letter-spacing: -1px; }
  .product-hero-subtitle { font-size: 1rem; margin-bottom: 32px; }

  .hero-pills { gap: 8px; }
  .hero-pill { font-size: 0.78rem; padding: 6px 14px; }

  .success-intro {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .stat-num { font-size: 2rem; }
  .stat-prefix, .stat-suffix { font-size: 1.5rem; }

  .testimonial { padding: 32px; border-radius: 16px; }
  .testimonial blockquote { font-size: 1.05rem; }

  .compliance-section { padding: 64px 0; }
  .cert-badges { justify-content: center; }
}
