/* ==========================================================================
   SVT Group — Corporate Website Stylesheet
   Sbongilevictor Trading (Pty) Ltd t/a SVT Group
   ========================================================================== */

:root {
  --green: #35b814;
  --green-alt: #39b51a;
  --green-dark: #24810d;
  --green-deep: #16560a;
  --charcoal: #202326;
  --charcoal-soft: #2a2e32;
  --charcoal-line: #3a4046;
  --white: #ffffff;
  --pale: #f0f7ee;
  --grey-bg: #f6f7f6;
  --text: #1c1f22;
  --muted: #5d6469;
  --border: #e3e8e2;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(32, 35, 38, 0.06);
  --shadow: 0 12px 34px rgba(32, 35, 38, 0.1);
  --shadow-lg: 0 22px 60px rgba(32, 35, 38, 0.16);
  --header-h: 88px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: "Barlow", "Inter", Arial, sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); text-transform: uppercase; }
h3 { font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.01em; }
h4 { font-size: 1.05rem; text-transform: uppercase; }
p { margin: 0 0 1.1rem; }
ul { margin: 0 0 1.1rem; padding-left: 1.1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--pale { background: var(--pale); }
.section--grey { background: var(--grey-bg); }
.section--dark { background: var(--charcoal); color: #d8dee2; }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.green { color: var(--green); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #b3bcc2; }

.lead { font-size: 1.1rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(53, 184, 20, 0.32); }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--outline { border-color: var(--green); color: var(--green-dark); background: transparent; }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--white { background: #fff; color: var(--charcoal); }
.btn--white:hover { background: var(--charcoal); color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 0.78rem; }

.link-more {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.link-more:hover { gap: 14px; color: var(--green); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: height 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-stuck { height: 72px; box-shadow: var(--shadow-sm); }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { height: 46px; width: auto; transition: height 0.25s var(--ease); }
.site-header.is-stuck .brand img { height: 38px; }

.main-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 14px;
  color: var(--charcoal);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-list > li > a:hover,
.nav-list > li.is-active > a { color: var(--green-dark); border-bottom-color: var(--green); }
.caret { width: 9px; height: 9px; fill: currentColor; transition: transform 0.25s var(--ease); }
.has-drop:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 268px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 6px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.dropdown a:hover { background: var(--pale); color: var(--green-dark); padding-left: 20px; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 11px 11px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body { padding-top: var(--header-h); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(84vh, 760px);
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(21, 24, 26, 0.94) 0%, rgba(21, 24, 26, 0.82) 42%, rgba(24, 60, 14, 0.5) 72%, rgba(53, 184, 20, 0.28) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 90px 0; width: 100%; }
.hero__content { max-width: 720px; color: #fff; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p { color: #d5dcdf; font-size: 1.1rem; max-width: 580px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__shape {
  position: absolute;
  right: 4%;
  bottom: -110px;
  width: 380px;
  height: 380px;
  border: 2px solid rgba(53, 184, 20, 0.35);
  border-radius: 28px;
  transform: rotate(18deg);
  z-index: 1;
  pointer-events: none;
}
.hero__shape::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 2px solid rgba(53, 184, 20, 0.18);
  border-radius: 22px;
}

/* Interior page hero */
.page-hero {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  padding: clamp(60px, 9vw, 104px) 0;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(21, 24, 26, 0.93), rgba(21, 24, 26, 0.78) 55%, rgba(36, 129, 13, 0.55));
}
.page-hero__inner { position: relative; z-index: 2; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #cfd6da; max-width: 640px; }
.breadcrumb {
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fb0a5;
  margin-top: 18px;
}
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); }

/* ---------- Values strip ---------- */
.values-strip { background: var(--charcoal); color: #c6ced3; padding: clamp(48px, 6vw, 76px) 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--charcoal-line); }
.value-item { background: var(--charcoal); padding: 32px 28px; }
.value-item .num {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--green);
}
.value-item svg { width: 34px; height: 34px; stroke: var(--green); fill: none; stroke-width: 1.6; margin: 14px 0 12px; }
.value-item h3 { color: #fff; font-size: 1.02rem; margin-bottom: 6px; }
.value-item p { margin: 0; font-size: 0.94rem; color: #a9b3b9; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe3c8; }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { margin: 0; font-size: 1.05rem; }
.card__body p { margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1; }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--pale);
  display: grid;
  place-items: center;
  border: 1px solid #d9ead3;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--green-dark); fill: none; stroke-width: 1.7; }

.info-card {
  background: var(--pale);
  border: 1px solid #dcebd6;
  border-radius: var(--radius);
  padding: 28px;
}
.info-card h3 { font-size: 1.02rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card ul { margin: 0; padding-left: 0; list-style: none; }
.info-card li,
.tick-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.95rem;
}
.info-card li::before,
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.tick-list { list-style: none; padding-left: 0; }

.num-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.num-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.num-card .num {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
.num-card h3 { margin: 8px 0 6px; font-size: 1.02rem; }
.num-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Split layout */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.media-frame { position: relative; }
.media-frame::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 62%;
  height: 62%;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.step .num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
}
.step h3 { font-size: 0.95rem; margin: 0; }

/* Pill grid (vehicles / supply categories) */
.pill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.pill {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.pill span { display: block; font-family: "Inter", sans-serif; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.88rem; margin-top: 6px; }
.pill:hover { background: var(--pale); transform: translateY(-4px); }

/* Equipment list */
.equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.equip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 500;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.equip::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--green); flex: 0 0 auto; }
.equip:hover { border-color: var(--green); transform: translateX(4px); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: linear-gradient(105deg, var(--green-deep), var(--green-dark) 55%, var(--green));
  color: #fff;
  padding: clamp(54px, 7vw, 88px) 0;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  transform: rotate(22deg);
}
.cta__inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.cta h2 { color: #fff; margin-bottom: 8px; max-width: 640px; }
.cta p { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 6px; }
.stat p { margin: 0; color: #aab4ba; font-size: 0.94rem; }

/* ---------- Projects ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--green); color: var(--green-dark); }
.filter-btn.is-active { background: var(--green); border-color: var(--green); color: #fff; }

.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project:hover img { transform: scale(1.08); }
.project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 24, 26, 0.9) 0%, rgba(21, 24, 26, 0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.project__overlay span {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.project__overlay h3 { color: #fff; font-size: 1rem; margin: 0; }
.project.is-hidden { display: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.7; flex: 0 0 auto; margin-top: 4px; }
.contact-item h4 { margin: 0 0 2px; font-size: 0.82rem; letter-spacing: 0.14em; color: var(--muted); }
.contact-item p { margin: 0; font-weight: 600; }
.contact-item a:hover { color: var(--green-dark); }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--charcoal);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(53, 184, 20, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.86rem; color: var(--muted); margin: 14px 0 0; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--pale);
  border: 1px solid #cfe3c8;
  color: var(--green-deep);
  font-size: 0.94rem;
}
.form-status.is-visible { display: block; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #a9b3b9; padding: clamp(52px, 7vw, 84px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr; gap: 40px; }
.footer-brand img { height: 54px; width: auto; background: #fff; border-radius: 8px; padding: 8px 12px; }
.footer-brand p { margin: 18px 0 6px; color: #cfd6da; font-weight: 600; }
.footer-brand .tag { color: var(--green); font-family: "Barlow", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; }
.site-footer h4 { color: #fff; font-size: 0.86rem; letter-spacing: 0.16em; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.94rem; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.footer-links a:hover { color: var(--green); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.94rem; list-style: none; }
.footer-contact { padding: 0; margin: 0; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.7; flex: 0 0 auto; margin-top: 3px; }
.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid var(--charcoal-line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #7f8a90;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float__tip {
  background: var(--charcoal);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}
.wa-float:hover .wa-float__tip { opacity: 1; transform: translateX(0); }
.wa-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float__btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    justify-self: stretch;
    background: #fff;
    overflow-y: auto;
    padding: 18px 24px 60px;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    border-top: 1px solid var(--border);
    visibility: hidden;
    pointer-events: none;
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--border); }
  .nav-list > li > a { padding: 16px 4px; justify-content: space-between; border-bottom: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--green);
    border-radius: 0;
    margin: 0 0 12px 4px;
    padding: 0 0 0 10px;
    display: none;
  }
  .dropdown.is-open { display: block; }
  .has-drop:hover .dropdown { opacity: 1; }
  .header-cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .media-frame::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --header-h: 76px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero__inner { padding: 64px 0; }
  .hero__shape { display: none; }
  .hero__actions .btn { width: 100%; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta .btn { width: 100%; }
  .wa-float__tip { display: none; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .steps { grid-template-columns: 1fr; }
  .brand img { height: 38px; }
}

/* Invalid form field state */
.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #c0392b;
}

/* ------------------------------------------------------------ Carousel */
.carousel { position: relative; max-width: 520px; margin: 0 auto; }
.carousel__track { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; background: #202326; }
.carousel__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .5s ease; }
.carousel__slide.is-active { opacity: 1; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(32,35,38,.65); color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: grid; place-items: center; transition: background .2s ease;
}
.carousel__nav:hover { background: #35B814; }
.carousel__nav--prev { left: 10px; }
.carousel__nav--next { right: 10px; }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: #cfd4d2; cursor: pointer; }
.carousel__dot.is-active { background: #35B814; }

/* ------------------------------------------------------------ Director photo */
.director-photo {
  margin: 0 auto;
  max-width: 300px;
  text-align: center;
}
.director-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(32,35,38,.18);
}
.director-photo figcaption {
  margin-top: 14px;
  line-height: 1.4;
}
.director-photo figcaption strong {
  display: block;
  color: #35B814;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.director-photo figcaption span {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #202326;
}
