:root {
  --blue-deep: #1a1aff;
  --blue-royal: #3030d8;
  --blue-mid: #4040e8;
  --teal: #00d4c8;
  --teal-light: #00f0e0;
  --teal-soft: #20e8d8;
  --white: #ffffff;
  --off-white: #f4f8ff;
  --text-dark: #0a0a2e;
  --text-muted: #5a5a8a;
  --glass: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1aff 0%, #2222cc 40%, #0a0a60 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.25) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.8;
  }

  to {
    transform: scale(1.15);
    opacity: 1;
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 18px;
  color: var(--teal-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease both;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(42px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--teal);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 212, 200, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 212, 200, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  animation: fadeUp 1s 0.4s ease both;
}

.hero-card-main {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(20px);
  color: var(--white);
}

.hero-card-main .big-quote {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-card-main .big-quote span {
  color: var(--teal);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  line-height: 1.4;
}

.floating-chip {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.floating-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.chip-1 {
  top: -20px;
  right: 20px;
  animation: float 4s ease-in-out infinite;
}

.chip-2 {
  bottom: -16px;
  left: 10px;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.nav-logo .logo-c {
  display: none;
}

nav.scrolled .nav-logo .logo-w {
  display: none;
}

nav.scrolled .nav-logo .logo-c {
  display: block;
}

nav.scrolled .nav-links a {
  color: var(--text-dark);
  font-weight: 600;
}

nav.scrolled .nav-links a:hover {
  color: var(--teal);
}

.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 200, 0.4);
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--blue-deep);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--off-white);
  padding: 60px 40px;
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0;
  align-items: center;
}


.intro-sep {
  background: #d0d8f0;
  height: 60px;
}

.intro-item {
  padding: 0 40px;
  text-align: center;
}

.intro-item .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.intro-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.intro-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── VISION / MISSION / VALUES ── */
.vmv {
  background: var(--white);
}

.vmv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.vmv-card {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.vmv-card:hover {
  transform: translateY(-6px);
}

.vmv-card.blue {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #2222cc 100%);
  color: var(--white);
}

.vmv-card.teal {
  background: linear-gradient(135deg, #00b8b0 0%, var(--teal) 100%);
  color: var(--text-dark);
}

.vmv-card.light {
  background: var(--off-white);
  border: 1px solid #dde4f5;
  color: var(--text-dark);
  grid-column: 1 / -1;
}

.vmv-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 16px;
}

.vmv-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.vmv-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

.vmv-card .deco {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  bottom: -60px;
  right: -60px;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.value-item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #dde4f5;
}

.value-item .val-letter {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services {
  background: linear-gradient(160deg, #0a0a60 0%, #1a1aff 50%, #0066ff 100%);
}

.services .section-tag {
  color: var(--teal);
}

.services .section-title {
  color: var(--white);
}

.services .section-title span {
  color: var(--teal);
}

.services .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.svc-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}

.svc-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--teal);
  transform: translateY(-4px);
}

.svc-card .svc-icon {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--text-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.svc-card ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.svc-card ul li::before {
  content: '✦';
  color: var(--teal);
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.svc-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}

.svc-card.featured h3,
.svc-card.featured p,
.svc-card.featured ul li {
  color: var(--text-dark);
}

.svc-card.featured .svc-icon {
  background: var(--text-dark);
  color: var(--teal);
}

.svc-card.featured ul li::before {
  color: var(--blue-deep);
}

/* ── SEGMENTS ── */
.segments {
  background: var(--off-white);
}

.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.seg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e0e8f5;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.seg-thumb {
  height: 220px;
  display: block;
  overflow: hidden;
}

.seg-thumb.blue {
  background: linear-gradient(135deg, var(--blue-deep), #4444ff);
}

.seg-thumb.teal {
  background: linear-gradient(135deg, #00a0a0, var(--teal));
}

.seg-thumb.dark {
  background: linear-gradient(135deg, #0a0a60, #1a1aff);
}

.seg-thumb.orange {
  background: linear-gradient(135deg, #ff6600, #ff9900);
}

.seg-thumb.green {
  background: linear-gradient(135deg, #006633, #00aa55);
}

.seg-thumb.purple {
  background: linear-gradient(135deg, #440066, #8800cc);
}

.seg-body {
  padding: 24px;
}

.seg-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.seg-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.seg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seg-tag {
  background: #eef2ff;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── DIFFERENTIATORS ── */
.diff {
  background: var(--white);
  padding: 120px 40px;
}

.diff-grid {
  display: block;
  margin-top: 40px;
}

.diff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.diff-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid #f0f4ff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.diff-item:hover {
  border-color: var(--teal);
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(26, 26, 255, 0.08);
}

.diff-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #eef2ff;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
  transition: color 0.3s;
}

.diff-item:hover .diff-num {
  color: #dbeafe;
}

.diff-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.diff-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.diff-visual {
  position: relative;
}

.diff-big-card {
  background: linear-gradient(145deg, #1a1aff 0%, #0000ff 100%);
  border-radius: 40px;
  padding: 56px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26, 26, 255, 0.25);
}

.diff-big-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.25) 0%, transparent 75%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.diff-big-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.2;
}

.iso-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 40px;
}

.iso-badge {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}

.iso-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--teal);
}

.iso-badge .iso-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

.iso-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.iso-badge .iso-detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  text-align: center;
}

.diff-footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  position: relative;
}

.diff-footer-text b {
  color: var(--teal);
  font-weight: 700;
}

/* ── GREEN ── */
.green-section {
  background: linear-gradient(135deg, #002a20 0%, #004030 50%, #006644 100%);
  position: relative;
  overflow: hidden;
}

.green-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.green-section .section-tag {
  color: #80ffcc;
}

.green-section .section-title {
  color: var(--white);
}

.green-section .section-title span {
  color: #80ffcc;
}

.green-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.green-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.green-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.green-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  transition: background 0.2s;
}

.green-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.green-card .g-icon {
  font-size: 28px;
  color: #80ffcc;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(128, 255, 204, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #80ffcc;
  margin-bottom: 6px;
}

.green-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.green-visual {
  position: relative;
  text-align: center;
}

.leaf-circle {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(128, 255, 204, 0.15) 0%, transparent 70%);
  border: 2px solid rgba(128, 255, 204, 0.2);
  color: rgba(128, 255, 204, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 120px;
  position: relative;
}

.leaf-circle::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(128, 255, 204, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0a0a2e 0%, var(--blue-deep) 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 200, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.cta-banner h2 span {
  color: var(--teal);
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  padding: 60px 40px 40px;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--teal);
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #e0e8f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--teal);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-sep {
    display: none;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
  }

  .vmv-card.light {
    grid-column: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    grid-template-columns: 1fr;
  }

  .seg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff-list {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    display: block;
  }

  .green-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .values-row {
    grid-template-columns: 1fr;
  }

  nav .nav-links,
  nav .nav-cta {
    display: none;
  }

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

@media (max-width: 600px) {
  section {
    padding: 60px 20px;
  }

  .seg-grid {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 16px 20px;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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



.hero-badge h1 {
  font-size: 52px;
}