/* =============================================================
   Karen's Health & Wellness — Global Stylesheet
   Palette: Green + White  |  Icons: Font Awesome  |  No emojis
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --green-900: #0c5a34;
  --green-800: #12703f;
  --green-700: #157a46;
  --green-600: #1e9e5c; /* primary */
  --green-500: #23b06a;
  --green-400: #3fc47f;
  --green-300: #7bd9a8;
  --green-200: #b7ebd0;
  --green-100: #d7f2e3;
  --green-50:  #eef9f3;
  --mint:      #f4fbf7;

  --ink:    #10231a;
  --text:   #3d5248;
  --muted:  #6d8177;
  --white:  #ffffff;
  --border: #e1ece6;

  --shadow-sm: 0 2px 8px rgba(16, 60, 40, 0.06);
  --shadow:    0 10px 30px rgba(16, 60, 40, 0.08);
  --shadow-lg: 0 22px 55px rgba(16, 60, 40, 0.14);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 34px;

  --container: 1200px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin-bottom: 1rem; }
a { color: var(--green-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-600); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.container-narrow { max-width: 900px; }

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-sm { padding: clamp(46px, 6vw, 74px) 0; }
.bg-mint { background: var(--mint); }
.bg-green-50 { background: var(--green-50); }
.bg-green-soft {
  background: linear-gradient(160deg, var(--green-50) 0%, #ffffff 100%);
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.maxw-720 { max-width: 720px; }
.maxw-800 { max-width: 800px; }

/* ---------- Section Heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.eyebrow i { font-size: 0.85rem; }

.section-head { margin-bottom: 54px; }
.section-head.center { text-align: center; margin-inline: auto; max-width: 720px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.section-head h2 { margin-bottom: 16px; }
.title-accent { color: var(--green-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 0.95em; }
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(30, 158, 92, 0.28);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(30, 158, 92, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-300);
}
.btn-outline:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--green-700);
}
.btn-white:hover { color: var(--green-800); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.22); color: var(--white); transform: translateY(-3px); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Top Info Bar ---------- */
.topbar {
  background: var(--green-800);
  color: #d9f2e5;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar a { color: #d9f2e5; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--green-300); }
.topbar-social { display: flex; gap: 8px; align-items: center; }
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}
.topbar-social a:hover { background: var(--green-500); color: var(--white); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1005;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--green-800);
}
.brand-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-600);
}

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 12px 15px;
  border-radius: 10px;
  transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--green-700); background: var(--green-50); }
.nav-menu > li > a .caret { font-size: 0.7rem; transition: transform var(--transition); }
.has-dropdown:hover > a .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  list-style: none;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown li a i {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 9px;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--green-50); color: var(--green-800); }
.dropdown li a:hover i { background: var(--green-600); color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--green-700);
  align-items: center;
  justify-content: center;
}
.nav-overlay { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(63, 196, 127, 0.18), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(30, 158, 92, 0.12), transparent 40%),
    linear-gradient(150deg, var(--green-50) 0%, #ffffff 62%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 158, 92, 0.08) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: clamp(56px, 8vw, 104px) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--green-100);
  box-shadow: var(--shadow-sm);
  padding: 8px 18px 8px 8px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-800);
  margin-bottom: 26px;
}
.hero-badge .pill {
  background: var(--green-600);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--green-600), var(--green-800));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead { font-size: 1.12rem; color: var(--text); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust-item { display: flex; align-items: center; gap: 12px; }
.hero-trust-item i {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--green-600);
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.hero-trust-item strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.15rem; }
.hero-trust-item span { font-size: 0.85rem; color: var(--muted); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-main {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  z-index: 2;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  opacity: 0.14;
  z-index: 1;
}
.hero-ring.r1 { width: 220px; height: 220px; top: -40px; right: -30px; }
.hero-ring.r2 { width: 130px; height: 130px; bottom: -30px; left: -30px; opacity: 0.18; }
.hero-visual-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero-visual-head .avatar {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
}
.hero-visual-head h4 { margin-bottom: 2px; font-size: 1.1rem; }
.hero-visual-head span { font-size: 0.85rem; color: var(--muted); }
.hero-service-list { display: grid; gap: 12px; }
.hero-service-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all var(--transition);
}
.hero-service-list li:hover { border-color: var(--green-300); background: var(--green-50); transform: translateX(4px); }
.hero-service-list li i {
  width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-100); color: var(--green-700); font-size: 1rem;
}
.hero-service-list li span { font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-float i {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}
.hero-float strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }
.hero-float span { font-size: 0.78rem; color: var(--muted); }
.hero-float.f1 { top: 22px; left: -28px; animation: floaty 4s ease-in-out infinite; }
.hero-float.f2 { bottom: 30px; right: -24px; animation: floaty 4s ease-in-out infinite 1.6s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(63, 196, 127, 0.2), transparent 45%),
    linear-gradient(140deg, var(--green-800), var(--green-600));
  color: var(--white);
  padding: clamp(60px, 9vw, 110px) 0 clamp(56px, 8vw, 92px);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  opacity: 0.5;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255, 255, 255, 0.9); max-width: 680px; margin-inline: auto; font-size: 1.08rem; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.86rem;
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; color: var(--green-200); }
.breadcrumb .current { color: var(--white); font-weight: 500; }

/* ---------- Grid Utilities ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service / Feature Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  color: var(--green-700);
  margin-bottom: 22px;
  transition: all var(--transition);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  transform: rotate(-6deg) scale(1.06);
}
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
}
.card-link i { transition: transform var(--transition); }
.card:hover .card-link i { transform: translateX(5px); }

.card-list { display: grid; gap: 10px; margin-bottom: 18px; }
.card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text); }
.card-list li i { color: var(--green-600); margin-top: 5px; font-size: 0.85rem; }

/* Numbered card variant */
.card .card-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--green-50);
  line-height: 1;
}

/* ---------- Feature Rows (alternating) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.feature-row + .feature-row { margin-top: clamp(56px, 8vw, 96px); }
.feature-row.reverse .feature-visual { order: 2; }
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--green-600), var(--green-800));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}
.feature-media .big-icon { font-size: 8rem; color: rgba(255, 255, 255, 0.92); position: relative; }
.feature-media .glass-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-media .glass-badge i { font-size: 1.6rem; }
.feature-media .glass-badge strong { display: block; font-family: var(--font-head); }
.feature-media .glass-badge span { font-size: 0.82rem; opacity: 0.9; }

/* --- Photo overlay support for feature-media --- */
.feature-media .feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.9s ease;
}
.feature-media:hover .feature-img { transform: scale(1.04); }
.feature-media.has-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 90, 52, 0.28) 0%, rgba(12, 90, 52, 0.78) 100%);
  z-index: 2;
}
.feature-media.has-img .big-icon { display: none; }
.feature-media.has-img .glass-badge { z-index: 3; }

.feature-content h2 { margin-bottom: 18px; }
.feature-content > p { color: var(--muted); margin-bottom: 24px; }
.feature-points { display: grid; gap: 16px; margin-bottom: 30px; }
.feature-points li { display: flex; align-items: flex-start; gap: 14px; }
.feature-points li .fp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 1.05rem;
}
.feature-points li h4 { font-size: 1.05rem; margin-bottom: 3px; }
.feature-points li p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(140deg, var(--green-800), var(--green-600));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .stat-icon { font-size: 2rem; color: var(--green-200); margin-bottom: 12px; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.1rem); line-height: 1; margin-bottom: 8px; }
.stat-num .plus { color: var(--green-200); }
.stat-label { font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }

/* ---------- Process / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step {
  position: relative;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-200); }
.step-num {
  width: 58px; height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(30, 158, 92, 0.3);
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0; }
.step:not(:last-child)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 52px; right: -22px;
  color: var(--green-300);
  font-size: 1.1rem;
  z-index: 2;
}

/* ---------- Why / Checklist ---------- */
.check-list { display: grid; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list li i {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  margin-top: 3px;
}
.check-list li strong { color: var(--ink); font-family: var(--font-head); }

/* ---------- Icon feature (small) ---------- */
.iconbox { display: flex; gap: 18px; align-items: flex-start; }
.iconbox .ib-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  background: var(--green-50);
  color: var(--green-600);
  transition: all var(--transition);
}
.iconbox:hover .ib-icon { background: var(--green-600); color: var(--white); transform: translateY(-4px); }
.iconbox h4 { font-size: 1.12rem; margin-bottom: 6px; }
.iconbox p { color: var(--muted); font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-quote { font-size: 2.4rem; color: var(--green-200); line-height: 1; margin-bottom: 10px; }
.testi-stars { color: #f5b301; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--text); font-style: italic; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.testi-person h5 { font-family: var(--font-head); margin-bottom: 1px; color: var(--ink); }
.testi-person span { font-size: 0.84rem; color: var(--muted); }

/* ---------- Accordion / FAQ ---------- */
.accordion { display: grid; gap: 16px; }
.acc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.acc-item.open { border-color: var(--green-300); box-shadow: var(--shadow); }
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
}
.acc-header .acc-q { display: flex; align-items: center; gap: 14px; }
.acc-header .acc-q i { color: var(--green-600); }
.acc-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.acc-item.open .acc-icon { background: var(--green-600); color: var(--white); transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.acc-body-inner { padding: 0 26px 24px 64px; color: var(--muted); }

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 70px);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "\f21e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.06);
  top: -30px; right: 20px;
  transform: rotate(-12deg);
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0 auto 30px; position: relative; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; position: relative; }

/* full-bleed CTA (no card) */
.cta-full {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-full::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
}
.cta-full .container { position: relative; z-index: 1; }
.cta-full h2 { color: var(--white); margin-bottom: 16px; }
.cta-full p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 32px; }

/* ---------- Info / Contact Cards ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.info-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.info-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(30, 158, 92, 0.28);
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 10px; }
.info-card a { font-family: var(--font-head); font-weight: 600; color: var(--green-700); }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
}
.form-group label .req { color: #d94a4a; }
.input-wrap { position: relative; }
.input-wrap > i {
  position: absolute;
  left: 16px; top: 17px;
  color: var(--green-600);
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--mint);
  transition: all var(--transition);
}
.input-wrap .form-control { padding-left: 44px; }
.form-control::placeholder { color: #9aa8a1; }
.form-control:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 158, 92, 0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.input-wrap textarea.form-control { padding-left: 44px; }
.input-wrap.textarea > i { top: 16px; }
.form-note { font-size: 0.84rem; color: var(--muted); }
.form-msg { display: none; padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 0.92rem; }
.form-msg.success { display: block; background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-200); }
.field-error { color: #d94a4a; font-size: 0.82rem; display: none; }
.form-control.invalid { border-color: #e08a8a; background: #fdf5f5; }

/* ---------- Contact split ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-aside { display: grid; gap: 20px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .cl-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-line h4 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-line p, .contact-line a { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.contact-line a:hover { color: var(--green-700); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; min-height: 340px; }

/* ---------- Chips / tags ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-100);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 500;
}
.chip i { color: var(--green-600); }

/* ---------- Pill list (long content) ---------- */
.pill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pill-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all var(--transition);
}
.pill-item:hover { border-color: var(--green-300); background: var(--green-50); transform: translateX(5px); }
.pill-item i {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--green-100); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.pill-item span { font-family: var(--font-head); font-weight: 500; color: var(--ink); }

/* ---------- Founder / profile ---------- */
.founder-card {
  position: relative;
  background: linear-gradient(150deg, var(--green-600), var(--green-800));
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.founder-avatar {
  width: 150px; height: 150px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* --- Hero avatar with photo support --- */
.hero-visual-head .avatar.has-img { padding: 0; overflow: hidden; background: linear-gradient(135deg, var(--green-500), var(--green-700)); }
.hero-visual-head .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.founder-card h3 { color: var(--white); margin-bottom: 4px; }
.founder-role { color: var(--green-200); font-family: var(--font-head); font-weight: 500; margin-bottom: 18px; }
.founder-card p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }
.founder-social { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.founder-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}
.founder-social a:hover { background: var(--white); color: var(--green-700); }

/* ---------- Value cards (mission/vision) ---------- */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  border-top: 4px solid var(--green-500);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card .v-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: var(--green-50); color: var(--green-700);
  margin-bottom: 20px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #0b2318; color: #b9cdc2; padding-top: 76px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 54px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-name { color: var(--white); }
.footer-about { font-size: 0.94rem; color: #9db5aa; margin-bottom: 22px; }
.footer-contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.92rem; }
.footer-contact-line i { color: var(--green-400); width: 18px; text-align: center; }
.footer-contact-line a { color: #b9cdc2; }
.footer-contact-line a:hover { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--green-500);
  border-radius: 3px;
}
.footer-links { display: grid; gap: 12px; }
.footer-links a {
  color: #9db5aa;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--green-400); transition: transform var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover i { transform: translateX(4px); }
.footer-newsletter p { font-size: 0.92rem; color: #9db5aa; margin-bottom: 16px; }
.newsletter-form { position: relative; }
.newsletter-form input {
  width: 100%;
  padding: 14px 56px 14px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.newsletter-form input::placeholder { color: #7f9a8d; }
.newsletter-form input:focus { outline: none; border-color: var(--green-400); }
.newsletter-form button {
  position: absolute;
  right: 5px; top: 5px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.newsletter-form button:hover { transform: scale(1.08); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #b9cdc2;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-600); color: var(--white); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 0.88rem;
  color: #8fa89c;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #b9cdc2; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 900;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  /* Hide the Inquiry button in the header on mobile; the drawer + hero CTAs cover it */
  .nav-actions .btn { display: none; }
  /* Simplify topbar on mobile */
  .topbar-left span { display: none; }
  .nav-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 84px 20px 30px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 1002;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li > a { padding: 14px 16px; border-radius: 12px; justify-content: space-between; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--green-50);
    margin: 4px 0 4px 12px;
    padding: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .has-dropdown.open .dropdown { max-height: 520px; }
  .has-dropdown:hover .dropdown { opacity: 1; }
  .nav-close {
    display: inline-flex !important;
    position: absolute;
    top: 20px; right: 20px;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 30, 20, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1001;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse .feature-visual { order: 0; }
  .contact-split { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { gap: 14px; font-size: 0.8rem; }
  .hero-float { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-band .btn, .cta-full .btn { width: auto; }
}

@media (max-width: 560px) {
  .topbar-left a[href^="mailto"] { display: none; }
  .topbar-left { font-size: 0.78rem; gap: 12px; }
  .brand-tag { display: none; }
  .brand-name { font-size: 1.02rem; }
  .brand-mark { width: 40px; height: 40px; }
  .topbar-social { gap: 6px; }
  .topbar-social a { width: 26px; height: 26px; font-size: 0.75rem; }
}

.nav-close { display: none; width: 44px; height: 44px; border: none; background: var(--green-50); color: var(--green-800); border-radius: 12px; font-size: 1.1rem; cursor: pointer; align-items: center; justify-content: center; }

/* Mobile-only inquiry CTA inside drawer */
.nav-mobile-cta { display: none; }
@media (max-width: 900px) {
  .nav-mobile-cta {
    display: block;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-cta a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-500), var(--green-700)) !important;
    color: var(--white) !important;
    padding: 14px 18px !important;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: 50px !important;
    box-shadow: 0 10px 22px rgba(30, 158, 92, 0.28);
  }
  .nav-mobile-cta a:hover { transform: translateY(-2px); }
}

/* Utility spacing */
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.lead { font-size: 1.12rem; color: var(--text); }
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
