:root {
  --bg: #ecfdf5;
  --card: rgba(255,255,255,0.82);
  --card-strong: rgba(255,255,255,0.94);
  --accent: #16a34a;
  --accent-2: #22c55e;
  --accent-soft: rgba(34,197,94,0.16);
  --text-main: #020617;
  --text-muted: #4b5563;
  --border-subtle: rgba(148,163,184,0.4);
  --radius: 26px;
  --nav-h: 70px;
  --max-w: 1380px;
  --shadow-soft: 0 18px 40px rgba(15,23,42,0.18);
}

/* RESET CƠ BẢN */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-family: "Baloo 2", system-ui, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #dcfce7 0, transparent 55%),
    radial-gradient(circle at 100% 0%, #e0f2fe 0, transparent 52%),
    radial-gradient(circle at 50% 100%, #fef9c3 0, transparent 55%),
    #ecfdf5;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.75;
  font-size: 1.02rem;
  overflow-x: hidden;
}

/* BACKGROUND LAYERS */

.bg-grad {
  position: fixed;
  inset: -40px;
  background:
    radial-gradient(circle at 10% 20%, rgba(34,197,94,0.18), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(56,189,248,0.18), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(251,191,36,0.18), transparent 55%);
  background-size: 160% 160%;
  filter: blur(1px);
  animation: gradientMove 22s ease-in-out infinite;
  opacity: 0.9;
  z-index: -3;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  mix-blend-mode: soft-light;
  opacity: .16;
  pointer-events: none;
  z-index: -2;
}

.bg-orbit {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-orbit::before,
.bg-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.28);
  box-shadow: 0 0 60px rgba(34,197,94,0.25);
  animation: orbit 26s linear infinite;
}

.bg-orbit::before {
  width: 420px;
  height: 420px;
  top: 12%;
  left: -8%;
}

.bg-orbit::after {
  width: 520px;
  height: 520px;
  right: -12%;
  bottom: -4%;
  animation-duration: 32s;
  animation-direction: reverse;
}

@keyframes gradientMove {
  0% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-30px,18px,0); }
  100% { transform: translate3d(0,0,0); }
}

@keyframes orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* LAYOUT CHUNG */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
}

/* NAVBAR */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 16px 40px rgba(148,163,184,0.45);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  position: relative;
  overflow: hidden;
}

.nav-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(34,197,94,0.16), transparent 60%);
  opacity: .7;
  pointer-events: none;
}

.nav-inner::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -20%;
  width: 40%;
  height: 260%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 45%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: navMetalSweep 11s linear infinite;
}

@keyframes navMetalSweep {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: 1; }
  38% { transform: translateX(190%); opacity: 0; }
  100% { transform: translateX(190%); opacity: 0; }
}

.nav-inner > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .nav-inner { padding: 0 1.5rem; }
}

@media (max-width: 640px) {
  .nav-inner {
    border-radius: 18px;
    padding: 0 1rem;
    height: 64px;
  }
}

/* NAV BRAND */

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-logo {
  margin-top: 5px;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.nav-title-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #022c22;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.nav-title-sub {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: .82rem;
  padding: .22rem .35rem;
  border-radius: 999px;
  background: rgba(248,250,252,0.94);
  border: 1px solid rgba(229,231,235,0.9);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: .3rem .7rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, transform .15s ease, box-shadow .15s ease;
}

.nav-link:hover {
  color: #022c22;
  background: rgba(187,247,208,0.9);
  box-shadow: 0 0 18px rgba(22,163,74,0.35);
  transform: translateY(1px);
}

.nav-link.active {
  color: #022c22;
  background: rgba(22,163,74,0.14);
  box-shadow: 0 0 22px rgba(22,163,74,0.5);
}

.nav-cta {
  font-family: 'Baloo 2', cursive, sans-serif !important;
  padding: .45rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  color: #022c22;
  font-size: .82rem;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22,163,74,0.65);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(22,163,74,0.9);
}

.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(209,213,219,0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(148,163,184,0.55);
}

.nav-hamburger i {
  font-size: 1.3rem;
  color: var(--accent);
}

/* MOBILE NAV */

@media (max-width: 900px) {
  .nav-links,
  .nav-right > .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

.nav-mobile-menu {
  position: absolute;
  top: calc(var(--nav-h) + .7rem);
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 420px;
  background: rgba(255,255,255,0.98);
  border-radius: 20px;
  padding: 0.7rem 1.2rem 0.9rem;
  box-shadow: 0 20px 40px rgba(148,163,184,0.6);
  border: 1px solid rgba(209,213,219,0.9);
  display: none;
  flex-direction: column;
  gap: .35rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
}

.nav-mobile-menu.show {
  display: flex;
  animation: menuPop .18s ease-out forwards;
}

.nav-mobile-menu .nav-link {
  width: 100%;
  text-align: center;
  padding: .48rem .75rem;
  border-radius: 999px;
}

.nav-mobile-menu .nav-link:hover {
  background: rgba(187,247,208,0.9);
}

@keyframes menuPop {
  0% { opacity: 0; transform: translate(-50%, -6px) scale(0.97); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

/* HERO */

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 1.8rem) 0 4rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(22,163,74,0.12), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(56,189,248,0.14), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero .container {
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(3rem, 4.4vw + 1.8rem, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: #022c22;
  letter-spacing: 0.04em;
  margin: 0 0 .7rem;
}

.hero-title span {
  background: linear-gradient(45deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 1.6rem;
  text-align: justify;
}

/* HERO VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-greenie-card {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  max-width: 520px;
}

.hero-greenie-img {
  width: 110%;
  height: auto;
  object-fit: contain;
}

/* SECTION CHUNG */

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.section-kicker {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #15803d;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2.4rem, 5.2vw + 1rem, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.18;
  color: #022c22;
  margin: 0;
}

.section-title span {
  background: linear-gradient(45deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 44rem;
  line-height: 1.8;
  font-weight: 500;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* GIỚI THIỆU */

.text-body {
  font-size: 1.08rem;
  color: #334155;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  text-align: justify;
}

.intro-image {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 22px 44px rgba(148,163,184,0.55);
}

/* UTILITY */

.metal-text { }

.metal-text-green {
  background: linear-gradient(45deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.shine-card { }

/* FLOW 4 BƯỚC */

.features-flow-container {
  padding: 5rem 0;
  position: relative;
}

.flow-wrapper {
  position: relative;
  margin-top: 3rem;
}

.flow-line {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(148, 163, 184, 0.2),
    rgba(34, 197, 94, 0.6),
    rgba(148, 163, 184, 0.2)
  );
  z-index: 1;
}

.flow-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.flow-card {
  position: relative;
  padding: 2rem;
  border-radius: 22px;
  text-align: left;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(180, 180, 180, 0.35);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 32px rgba(148, 163, 184, 0.42);
  transition: 0.25s ease;
}

.flow-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 46px rgba(148, 163, 184, 0.55);
}

/* MASCOT ICON */

.flow-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}

.flow-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.flow-card:hover .flow-icon img {
  transform: scale(1.1) translateY(-5px);
}

.icon-blue,
.icon-purple,
.icon-orange,
.icon-green {
  background: transparent !important;
  box-shadow: none !important;
}

.flow-number {
  position: absolute;
  right: 1.1rem;
  top: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.06);
  z-index: 0;
}

.flow-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #022c22;
  margin-bottom: 0.45rem;
}

.flow-desc {
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.7;
  text-align: justify;
}

/* TABS HỌC SINH | GIÁO VIÊN */

.audience-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 0;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 12px 26px rgba(148,163,184,0.45);
  margin: 0 auto 2.4rem auto;
}

.audience-tab {
  border: none;
  background: transparent;
  padding: 0.55rem 1.6rem;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  color: #4b5563;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.14s ease;
}

.audience-tab.active {
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 10px 24px rgba(22,163,74,0.7);
  transform: translateY(-1px);
}

.audience-tab:not(.active):hover {
  background: rgba(226,232,240,0.9);
  color: #111827;
}

.audience-panel {
  display: none;
}

.audience-panel.is-active {
  display: block;
}

/* SO SÁNH */

.comparison-section {
  position: relative;
}

.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(34,197,94,0.14), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(59,130,246,0.12), transparent 55%);
  opacity: .8;
  pointer-events: none;
}

.comparison-inner {
  position: relative;
  z-index: 1;
}

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0,1.02fr) minmax(0,1.02fr);
  gap: 2rem;
  align-items: stretch;
}

.compare-card {
  border-radius: 24px;
  padding: 1.9rem 2rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  position: relative;
  overflow: hidden;
}

.compare-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(148,163,184,0.5);
  border-color: rgba(148,163,184,0.9);
  background: #ffffff;
}

.compare-card--a4g {
  background:
    radial-gradient(circle at 0 0, rgba(22,163,74,0.16), #f0fdf4);
  border: 1px solid rgba(22,163,74,0.8);
  box-shadow: 0 22px 60px rgba(34,197,94,0.5);
  position: relative;
  overflow: hidden;
}

.compare-card--a4g::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.5), transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .25s ease, transform .25s ease;
}

.compare-card--a4g:hover {
  box-shadow: 0 26px 70px rgba(22,163,74,0.7);
}

.compare-card--a4g:hover::before {
  opacity: 0.95;
  transform: translate3d(14px,-14px,0);
}

.compare-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.compare-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: radial-gradient(circle at 0 0, #9ca3af, #4b5563);
  color: #f9fafb;
  box-shadow: 0 10px 22px rgba(148,163,184,0.6);
}

.compare-card--a4g .compare-icon {
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 12px 26px rgba(22,163,74,0.85);
}

.compare-heading {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #022c22;
}

.compare-sub {
  font-size: .94rem;
  color: var(--text-muted);
}

.compare-list {
  list-style: none;
  display: grid;
  gap: .45rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.compare-item {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  line-height: 1.6;
  color: #111827;
}

.compare-item-icon {
  font-size: 1.05rem;
  margin-top: .12rem;
  flex-shrink: 0;
}

.compare-item.bad .compare-item-icon {
  color: #ef4444;
}

.compare-item.good .compare-item-icon {
  color: #16a34a;
}

.compare-note {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

/* ĐỐI TÁC */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.2rem;
  justify-items: center;
}

.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  opacity: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.02);
}

.partner-logo:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 32px rgba(15,23,42,0.18);
}

/* LIÊN HỆ */

#contact {
  background: linear-gradient(
    135deg,
    #d1fae5 0%,
    #a7f3d0 35%,
    #6ee7b7 70%,
    #34d399 100%
  );
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

#contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.10;
  pointer-events: none;
}

#contact .section-header {
  margin-bottom: 30px;
}

#contact .section-title {
  color: #064e3b;
  font-size: 2.3rem;
  text-align: center;
}

#contact .contact-text {
  color: #065f46;
  font-size: 1.12rem;
  font-weight: 550;
}

.contact-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-message {
  text-align: center;
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 32px auto;
  font-weight: 500;
  line-height: 1.6;
}

.cta-lg {
  font-family: 'Baloo 2', cursive, sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 50px;
  background-color: var(--color-primary, #00C853);
  color: white;
  border: none;
  box-shadow: 0 8px 15px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-lg:hover {
  background-color: var(--color-primary-dark, #009643);
  box-shadow: 0 12px 20px rgba(0, 200, 83, 0.6);
  transform: translateY(-2px);
}

.contact-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FOOTER */

.footer {
  background: rgba(15,23,42,0.06);
  color: #111827;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(148,163,184,0.5);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(209,213,219,0.9);
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 420px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 0.3rem;
}

.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  border: 1px solid rgba(34,197,94,0.8);
  box-shadow: 0 0 18px rgba(22,163,74,0.7);
  position: relative;
  overflow: hidden;
}

.footer-logo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 0 10px rgba(15,23,42,0.45);
}

.footer-title {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .35rem;
  color: #022c22;
}

.footer-title i {
  font-size: 1.05rem;
  color: #16a34a;
}

.footer-tagline {
  font-size: .96rem;
  color: #4b5563;
  line-height: 1.7;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .6rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(96,165,250,0.9);
  font-size: .78rem;
  color: #14532d;
}

.footer-badge i {
  font-size: .95rem;
  color: #f59e0b;
}

.footer-column-title {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: .9rem;
  color: #111827;
}

.footer-contact {
  font-size: .96rem;
  color: #4b5563;
  display: grid;
  gap: .45rem;
  max-width: 420px;
  line-height: 1.65;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.footer-contact-row i {
  font-size: 1rem;
  color: #16a34a;
  margin-top: .1rem;
}

.footer-bottom {
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .88rem;
  color: #6b7280;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom a {
  color: #4b5563;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #111827;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #111827;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.footer-social a:hover {
  background: #16a34a;
  color: #ecfdf5;
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(22,163,74,0.8);
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* Tablet <= 1024px */

@media (max-width: 1024px) {
  .hero {
    padding: calc(var(--nav-h) + 1.5rem) 0 3.5rem;
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-layout {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 4.2rem 0;
  }

  .footer-inner {
    padding: 0 1.5rem;
  }
}

/* Mobile <= 768px */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-greenie-card {
    max-width: 300px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-card {
    padding: 1.6rem 1.4rem;
  }

  .flow-line {
    display: none;
  }

  .audience-toggle {
    width: 100%;
    max-width: 360px;
  }

  .audience-tab {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .partner-logo {
    height: 52px;
  }

  .compare-card {
    padding: 1.6rem 1.4rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #contact {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  #contact .section-title {
    font-size: 2rem;
  }

  .cta-message {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .cta-lg {
    font-size: 1.05rem;
    padding: 14px 26px;
  }
}

/* Small mobile <= 480px */

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 0.9rem;
  }

  .mini-logo {
    width: 34px;
    height: 34px;
    margin-top: 0;
  }

  .nav-title-main {
    font-size: 0.9rem;
  }

  .nav-title-sub {
    font-size: 0.7rem;
  }

  .hero {
    padding: calc(var(--nav-h) + 1rem) 0 3rem;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-layout {
    gap: 1.8rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section-header {
    margin-bottom: 2.2rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .text-body {
    font-size: 1rem;
  }

  .flow-title {
    font-size: 1.12rem;
  }

  .flow-desc {
    font-size: 0.96rem;
  }

  .compare-heading {
    font-size: 1.05rem;
  }

  .compare-sub {
    font-size: 0.9rem;
  }

  .compare-list {
    font-size: 0.95rem;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
  }

  .partner-logo {
    height: 46px;
  }

  .footer-inner {
    padding: 0 1rem;
  }
}
.start{
  text-decoration: none;
  color: #334155;
}