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

:root {
  --bg: #f2f4f3;
  --surface: rgba(255, 255, 255, 0.75);
  --border: rgba(0, 0, 0, 0.08);
  --ink: #0f1f1c;
  --muted: #5b6b66;
  --accent: #0d5c4d;
  --accent-light: #0c7d63;
  --accent-2: #b2f5ea;
  --pill: #e9f1ef;
  --shadow: 0 12px 40px rgba(15, 31, 28, 0.12);
  --shadow-hover: 0 20px 60px rgba(12, 125, 99, 0.25);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes spark-animation {
  0%, 100% {
    height: 20%;
    opacity: 0.6;
  }
  50% {
    height: 80%;
    opacity: 1;
  }
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #e4efeb 0%, #d7efe8 25%, #f2f4f3 50%, #e9f1ef 75%, #f2f4f3 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: 'Playfair Display', 'Inter', serif;
  color: var(--ink);
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font: inherit;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 15px;
}

.page-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px 64px;
  position: relative;
}


.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(12, 125, 99, 0.25) 0%, rgba(178, 245, 234, 0.35) 25%, rgba(12, 125, 99, 0.2) 50%, rgba(233, 241, 239, 0.4) 75%, rgba(12, 125, 99, 0.25) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 20s ease infinite;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(12, 125, 99, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(12, 125, 99, 0.15);
  position: sticky;
  top: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.top-bar:hover {
  box-shadow: 0 12px 48px rgba(15, 31, 28, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  color: white;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(12, 125, 99, 0.3);
  transition: transform 0.3s ease;
}

.brand-mark:hover {
  transform: rotate(5deg) scale(1.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.nav a {
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
  background: var(--pill);
  transform: translateY(-2px);
}

.actions {
  display: flex;
  gap: 12px;
}

.primary {
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  color: white;
  box-shadow: 0 4px 16px rgba(12, 125, 99, 0.3);
  position: relative;
  overflow: hidden;
}

.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.primary:hover::before {
  left: 100%;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 125, 99, 0.4);
}

.pulse-on-hover:hover {
  animation: pulse 0.6s ease-in-out;
}

.ghost {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--border);
  font-weight: 600;
}

.ghost:hover {
  background: var(--pill);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, rgba(12, 125, 99, 0.15) 0%, rgba(178, 245, 234, 0.25) 25%, rgba(12, 125, 99, 0.12) 50%, rgba(233, 241, 239, 0.3) 75%, rgba(12, 125, 99, 0.15) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 20s ease infinite;
  display: flex;
  flex-direction: column;
}

.hero .page-shell {
  padding: 20px 24px 0;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero .hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  width: 100%;
  z-index: 1;
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(12, 125, 99, 0.12) 0%, rgba(178, 245, 234, 0.2) 50%, rgba(12, 125, 99, 0.1) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 18s ease infinite;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0c7d63, #b2f5ea);
  top: -100px;
  left: -100px;
  animation-duration: 10s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0d5c4d, #0c7d63);
  bottom: -50px;
  right: -50px;
  animation-duration: 12s;
  animation-delay: -2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #b2f5ea, #e9f1ef);
  top: 50%;
  right: 20%;
  animation-duration: 15s;
  animation-delay: -4s;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0c7d63, #b2f5ea);
  top: 20%;
  left: 30%;
  animation-duration: 14s;
  animation-delay: -6s;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(12, 125, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 125, 99, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  width: 100%;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin: 16px 0 24px;
  font-weight: 800;
}

.accent {
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.typing-text {
  display: inline-block;
  position: relative;
}

.typing-text::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--accent);
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.highlight {
  background: linear-gradient(120deg, rgba(12, 125, 99, 0.2), rgba(12, 125, 99, 0.1));
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--accent);
}

.lede {
  margin-bottom: 32px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-ctas button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow {
  transition: transform 0.3s ease;
}

.primary:hover .arrow {
  transform: translateX(4px);
}

.play-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.ghost:hover .play-icon {
  transform: translateX(2px);
}

.eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.eyebrow-badge {
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(12, 125, 99, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  color: white;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  border: 3px solid #f2f4f3;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(12, 125, 99, 0.2);
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1) translateY(-2px);
  z-index: 2;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(12, 125, 99, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  border: 3px solid #f2f4f3;
  margin-left: -10px;
  border: 2px dashed var(--accent);
  opacity: 0.6;
}

.rating {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-stats-mobile {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.mini-stat {
  text-align: center;
  display: grid;
  gap: 4px;
}

.mini-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.mini-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.animated-visual {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(12, 125, 99, 0.4), rgba(12, 125, 99, 0.1), transparent);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 1;
}

.animated-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(12, 125, 99, 0.3);
  animation: rotate 20s linear infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(12, 125, 99, 0.2);
  animation-duration: 25s;
}

.circle-2 {
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(178, 245, 234, 0.3);
  animation-duration: 18s;
  animation-direction: reverse;
}

.circle-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(12, 125, 99, 0.25);
  animation-duration: 15s;
}

.animated-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 125, 99, 0.2);
  animation: float-icon 4s ease-in-out infinite;
  z-index: 2;
}

.icon-1 {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation: float-icon 4s ease-in-out infinite, move-icon-1 8s ease-in-out infinite;
}

.icon-2 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation: float-icon 4s ease-in-out infinite 0.5s, move-icon-2 7s ease-in-out infinite;
}

.icon-3 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation: float-icon 4s ease-in-out infinite 1s, move-icon-3 9s ease-in-out infinite;
}

.icon-4 {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  animation: float-icon 4s ease-in-out infinite 1.5s, move-icon-4 8.5s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(12, 125, 99, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.ring-1 {
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}

.ring-2 {
  width: 200px;
  height: 200px;
  animation-delay: 0.7s;
}

.ring-3 {
  width: 240px;
  height: 240px;
  animation-delay: 1.4s;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
}

@keyframes move-icon-1 {
  0%, 100% {
    left: 50%;
    top: 5%;
  }
  25% {
    left: 75%;
    top: 25%;
  }
  50% {
    left: 50%;
    top: 45%;
  }
  75% {
    left: 25%;
    top: 25%;
  }
}

@keyframes move-icon-2 {
  0%, 100% {
    right: 5%;
    top: 50%;
  }
  25% {
    right: 25%;
    top: 25%;
  }
  50% {
    right: 45%;
    top: 5%;
  }
  75% {
    right: 25%;
    top: 75%;
  }
}

@keyframes move-icon-3 {
  0%, 100% {
    left: 50%;
    bottom: 5%;
  }
  25% {
    left: 75%;
    bottom: 25%;
  }
  50% {
    left: 50%;
    bottom: 45%;
  }
  75% {
    left: 25%;
    bottom: 25%;
  }
}

@keyframes move-icon-4 {
  0%, 100% {
    left: 5%;
    top: 50%;
  }
  25% {
    left: 25%;
    top: 25%;
  }
  50% {
    left: 45%;
    top: 5%;
  }
  75% {
    left: 25%;
    top: 75%;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.glass-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(340px, 100%);
  max-width: 340px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15, 31, 28, 0.15);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(12, 125, 99, 0.1), transparent);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.glass-card:hover {
  transform: translate(-50%, calc(-50% - 5px));
  box-shadow: 0 24px 70px rgba(15, 31, 28, 0.2);
}

.glass-card.stack {
  display: grid;
  gap: 16px;
}

.stat {
  position: relative;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.stat-badge {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(12, 125, 99, 0.1);
  color: var(--accent);
}

.stat-badge.success {
  background: rgba(12, 125, 99, 0.15);
  color: var(--accent);
}

.stat .value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter {
  display: inline-block;
}

.uptime-bar {
  height: 6px;
  background: rgba(12, 125, 99, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.uptime-fill {
  height: 100%;
  width: 99.98%;
  background: linear-gradient(90deg, #0c7d63, #0d5c4d);
  border-radius: 3px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 99.98%;
  }
}

.spark-chart {
  display: grid;
  gap: 8px;
}

.spark-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.trend-up {
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
}

.spark {
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 125, 99, 0.1), rgba(12, 125, 99, 0.05));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 8px;
  gap: 4px;
}

.spark-line {
  width: 12px;
  background: linear-gradient(180deg, #0c7d63, #0d5c4d);
  border-radius: 6px 6px 0 0;
  animation: spark-animation 2s ease-in-out infinite;
}

.spark-line:nth-child(1) {
  height: 60%;
  animation-delay: 0s;
}

.spark-line:nth-child(2) {
  height: 80%;
  animation-delay: 0.2s;
}

.spark-line:nth-child(3) {
  height: 40%;
  animation-delay: 0.4s;
}

.spark-line:nth-child(4) {
  height: 90%;
  animation-delay: 0.6s;
}

.spark-line:nth-child(5) {
  height: 70%;
  animation-delay: 0.8s;
}

.spark-line:nth-child(6) {
  height: 55%;
  animation-delay: 1s;
}

.spark-line:nth-child(7) {
  height: 85%;
  animation-delay: 1.2s;
}

.floating-card {
  position: absolute;
  top: 6%;
  right: 8%;
  width: 180px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #edf7f4, #d7efe8);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15, 31, 28, 0.15);
  transition: transform 0.3s ease;
}

.card-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 50px rgba(15, 31, 28, 0.2);
}

.floating-card.corner {
  bottom: 5%;
  right: -20%;
  top: auto;
  width: 210px;
  background: linear-gradient(135deg, #0d5c4d, #0c7d63);
  color: white;
}

.floating-card.corner .muted {
  color: rgba(255, 255, 255, 0.8);
}

.floating-card.corner .value {
  color: white;
}

.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

.particle:nth-child(4) {
  top: 50%;
  right: 30%;
  animation-delay: 4.5s;
}

.particle:nth-child(5) {
  bottom: 10%;
  right: 20%;
  animation-delay: 6s;
}

.floating-card .value {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0;
}

.globe {
  width: 50px;
  height: 50px;
  border: 2.5px solid #0c7d63;
  border-radius: 50%;
  margin-top: 12px;
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(12, 125, 99, 0.3), transparent 60%);
}

.globe-inner {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(12, 125, 99, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(12, 125, 99, 0.1), transparent);
}

.globe-dots {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px;
}

.globe-dots span {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.globe-dots span:nth-child(2) {
  animation-delay: 1s;
}

.globe-dots span:nth-child(3) {
  animation-delay: 2s;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  margin-top: 8px;
}

.tag.success {
  background: #e8f7f1;
  color: #0c7d63;
  border-color: rgba(12, 125, 99, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #0c7d63;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}

.tag.neutral {
  background: #eef1f3;
  color: #4b5563;
}

.banner-section {
  width: 100vw;
  height: 100vh;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000000;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #000000;
}

.banner-wave {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.banner-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 28px 13px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 1;
}

.banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 542px;
}

.banner-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 19px;
  margin-top: 0;
  color: #FFFFFF;
  text-transform: capitalize;
  order: 1;
}

.banner-description {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.5;
  line-height: 26px;
  margin: 0 0 24px 0;
  order: 2;
}

.banner-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(12, 125, 99, 0.3);
  order: 3;
  align-self: flex-start;
}

.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 125, 99, 0.4);
  background: linear-gradient(135deg, #0d5c4d, #0c7d63);
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 39px;
}

.banner-mobiles {
  width: 100%;
  max-width: 239px;
  max-height: 263.55px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .banner-content {
    padding: 28px 93px;
    gap: 50px;
  }

  .banner-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .banner-description {
    font-size: 14px;
    line-height: 29px;
    margin-bottom: 20px;
  }

  .banner-button {
    padding: 12px 28px;
    font-size: 14px;
  }

  .banner-image {
    margin-top: 0;
  }

  .banner-mobiles {
    max-width: 491px;
    max-height: 442px;
  }
}

@media (min-width: 1024px) {
  .banner-content {
    flex-direction: row;
    padding: 28px 130px;
    gap: 50px;
  }

  .banner-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .banner-description {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .banner-button {
    padding: 16px 36px;
    font-size: 16px;
  }

  .banner-mobiles {
    max-width: 491.76px;
    max-height: 542.28px;
  }
}

.marquee {
  overflow: hidden;
  padding: 20px 0 40px;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-inner {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

.pill {
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--pill);
  color: var(--ink);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(15, 31, 28, 0.05);
}

.pill:hover {
  background: white;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 125, 99, 0.15);
}

.section {
  padding: 60px 0;
  position: relative;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0c7d63, #0d5c4d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.feature-card.deep {
  background: linear-gradient(135deg, #0c7d63, #0b4d40);
  color: white;
  box-shadow: 0 20px 60px rgba(12, 125, 99, 0.3);
}

.feature-card.deep h3,
.feature-card.deep p,
.feature-card.deep .metric {
  color: white;
}

.feature-card.deep .muted {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card.wide {
  grid-column: span 2;
}

.hover-lift {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.hover-scale:hover {
  transform: scale(1.05);
}

@media (max-width: 780px) {
  .feature-card.wide {
    grid-column: span 1;
  }
}

.metric {
  font-weight: 800;
  font-size: 20px;
  color: white;
  margin-top: 8px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.chip {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #0c7d63;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(12, 125, 99, 0.2);
  transition: all 0.3s ease;
}

.chip:hover {
  background: white;
  transform: scale(1.1);
}

.values {
  background: linear-gradient(135deg, #e4efeb, #f2f4f3);
  border-radius: 32px;
  padding: 48px 32px;
  border: 1px solid var(--border);
  box-shadow: inset 0 2px 20px rgba(15, 31, 28, 0.05);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-block {
  background: linear-gradient(135deg, #0c7d63, #0d5c4d);
  color: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: float 6s ease-in-out infinite;
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.stat-block .value {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0;
}

.stat-block .muted {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.company .addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.address-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.address-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.address-card h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

details:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

details[open] {
  background: linear-gradient(135deg, rgba(12, 125, 99, 0.05), rgba(12, 125, 99, 0.02));
}

summary {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

details p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

summary::-webkit-details-marker {
  display: none;
}

.cta {
  padding: 60px 0 20px;
}

.cta-card {
  background: linear-gradient(135deg, #0c7d63, #0b4d40);
  color: white;
  border-radius: 32px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(12, 125, 99, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-stars {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
}

.star {
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

.star:nth-child(2) {
  animation-delay: 1.5s;
}

.cta-card .muted {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.cta-card h2 {
  color: white;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.cta .ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

.footer {
  padding: 50px 0 20px;
  display: grid;
  gap: 32px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-brand {
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-links h5 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 700;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.legal {
  font-size: 13px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.animate-float-delay-2 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px 40px;
  }

  .hero {
    padding: 0;
  }

  .hero-visual {
    min-height: 300px;
    justify-content: center;
  }

  .animated-visual {
    width: 300px;
    height: 300px;
  }

  .circle-1 {
    width: 220px;
    height: 220px;
  }

  .circle-2 {
    width: 180px;
    height: 180px;
  }

  .circle-3 {
    width: 140px;
    height: 140px;
  }

  .animated-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .center-glow {
    width: 80px;
    height: 80px;
  }

  .hero-stats-mobile {
    display: grid;
  }

  .hero .page-shell {
    padding: 16px 20px 0;
  }

  .top-bar {
    padding: 14px 18px;
    top: 16px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .section {
    padding: 40px 0;
  }

  .section-header {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 16px 20px 40px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas button {
    width: 100%;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--accent-2);
  color: var(--ink);
}
