 :root {
  --g: #457f0e;
  --g-dark: #2d5609;
  --g-mid: #3a6b0c;
  --g-light: #6aad18;
  --g-xlight: #f0f7e6;
  --g-border: #c8e6a0;
  --dark: #0d1a05;
  --dark2: #152b07;
  --text: #1e3010;
  --muted: #5a7a42;
  --bg: #f7faf2;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] {
  transform: translateY(48px);
}

[data-reveal="left"] {
  transform: translateX(-48px);
}

[data-reveal="right"] {
  transform: translateX(48px);
}

[data-reveal="scale"] {
  transform: scale(0.88);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.1s !important;
}

[data-delay="2"] {
  transition-delay: 0.2s !important;
}

[data-delay="3"] {
  transition-delay: 0.3s !important;
}

[data-delay="4"] {
  transition-delay: 0.4s !important;
}

[data-delay="5"] {
  transition-delay: 0.5s !important;
}

[data-delay="6"] {
  transition-delay: 0.6s !important;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--g);
  padding: 0 6%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(45, 86, 9, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-logo-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.nav-logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0d1a05 0%, #152b07 55%, #1a3a08 100%);
  padding: 90px 6% 80px;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(106, 173, 24, 0.12);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--g-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--g-light) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 127, 14, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--g-light);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--g-light);
  font-style: italic;
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  max-width: 460px;
}

.hero-stats-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(69, 127, 14, 0.25);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.hsc-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.hsc-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hsc-stat:last-child {
  margin-bottom: 0;
}

.hsc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(69, 127, 14, 0.2);
  border: 1px solid rgba(69, 127, 14, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-light);
  font-size: 16px;
  flex-shrink: 0;
}

.hsc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hsc-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(106, 173, 24, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── SECTION HELPERS ── */
.section {
  padding: 80px 6%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--g);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--g);
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.sec-title em {
  font-style: italic;
  color: var(--g);
}

.sec-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

/* ── STORY SECTION ── */
.story-section {
  background: #fff;
  padding: 90px 6%;
  position: relative;
  overflow: hidden;
}

.story-bg-num {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 280px;
  font-weight: 700;
  color: rgba(69, 127, 14, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-photo-area {
  position: relative;
}

.story-photo-frame {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.story-photo-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.story-photo-area:hover img {
  transform: scale(1.04);
}

.story-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 26, 5, 0.55), transparent 50%);
}

.story-corner-tl {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--g);
  border-right: none;
  border-bottom: none;
  pointer-events: none;
}

.story-corner-br {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--g);
  border-left: none;
  border-top: none;
  pointer-events: none;
}

.story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: var(--g);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-year-big {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--g-xlight);
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.03em;
}

.story-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.story-p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-quote {
  border-left: 3px solid var(--g);
  padding: 16px 20px;
  background: var(--g-xlight);
  border-radius: 0 6px 6px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin: 24px 0;
}

/* ── COUNTER STATS ── */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark2) 60%,
    #1e4009 100%
  );
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(69, 127, 14, 0.15),
    transparent 65%
  );
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.stats-header .eyebrow {
  color: var(--g-light);
}

.stats-header .eyebrow::before {
  background: var(--g-light);
}

.stats-header .sec-title {
  color: #fff;
}

.stats-header .sec-sub {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(69, 127, 14, 0.15);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(69, 127, 14, 0.2);
}

.stat-box {
  padding: 40px 28px;
  text-align: center;
  background: rgba(13, 26, 5, 0.8);
  transition: background 0.3s;
}

.stat-box:hover {
  background: rgba(69, 127, 14, 0.12);
}

.stat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(69, 127, 14, 0.2);
  border: 1px solid rgba(69, 127, 14, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--g-light);
  transition: background 0.3s;
}

.stat-box:hover .stat-ico {
  background: var(--g);
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  color: var(--g-light);
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── MISSION SECTION ── */
.mission-section {
  background: var(--bg);
  padding: 90px 6%;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.mission-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(69, 127, 14, 0.12);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.4s;
}

.mission-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--g-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(69, 127, 14, 0.12);
  border-color: rgba(69, 127, 14, 0.25);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(69, 127, 14, 0.06);
  line-height: 1;
  pointer-events: none;
}

.mc-icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--g-xlight);
  border: 1px solid var(--g-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--g);
  margin-bottom: 18px;
  transition:
    background 0.3s,
    color 0.3s;
}

.mission-card:hover .mc-icon {
  background: var(--g);
  color: #fff;
}

.mc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.mc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── APPROACH TIMELINE ── */
.approach-section {
  background: #fff;
  padding: 90px 6%;
}

.timeline {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  position: relative;
}

.tl-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--g), rgba(69, 127, 14, 0.1));
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.tl-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(69, 127, 14, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.tl-item:hover .tl-dot {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(69, 127, 14, 0.45);
}

.tl-right {
  background: var(--g-xlight);
  border: 1px solid var(--g-border);
  border-radius: 6px;
  padding: 26px 28px;
  margin-bottom: 28px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
}

.tl-item:hover .tl-right {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(69, 127, 14, 0.1);
}

.tl-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 6px;
}

.tl-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.tl-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CONTACT FORM ── */
.form-section {
  background: var(--bg);
  padding: 90px 6%;
}

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.form-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(69, 127, 14, 0.15);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(69, 127, 14, 0.08);
}

.form-head {
  background: linear-gradient(135deg, var(--g-dark), var(--g));
  padding: 32px 40px;
}

.form-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.form-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.form-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(69, 127, 14, 0.2);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  outline: none;
  background: var(--g-xlight);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(69, 127, 14, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--g);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  border-radius: 6px;
  border: 2px solid var(--g);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.25s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: transparent;
  color: var(--g);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.success-msg i {
  font-size: 56px;
  color: var(--g);
  margin-bottom: 16px;
  display: block;
}

.success-msg h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 10px;
}

.success-msg p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: #1a2e0d;
  padding: 60px 7% 28px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.fl-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.fl-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fl-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.fl-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.ft-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ft-soc {
  display: flex;
  gap: 9px;
}

.fts {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: all 0.25s;
}

.fts:hover {
  background: var(--g);
  border-color: var(--g);
  transform: translateY(-3px);
  color: #fff;
}

.ft-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ft-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: #fff;
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.ft-copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.ft-links {
  display: flex;
  gap: 18px;
}

.ft-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* WA Float */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}

.wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}

.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 66px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}

.wa-float:hover .wa-circle {
  transform: scale(1.1);
}

.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats-card {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-body {
    padding: 24px 20px;
  }

  .form-head {
    padding: 24px 20px;
  }

  .tl-item {
    grid-template-columns: 56px 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }
}
