:root {
  color-scheme: light;
  --bg: #f4fff7;
  --surface: rgba(255, 255, 255, 0.82);
  --muted: #40624a;
  --text: #0b2b16;
  --accent: #2bd36f;
  --accent-2: #6ee18e;
  --border: rgba(43, 211, 111, 0.25);
  --shadow: 0 25px 60px rgba(6, 36, 20, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top right,
      rgba(43, 211, 111, 0.16),
      transparent 45%),
    radial-gradient(circle at 20% 20%,
      rgba(110, 225, 142, 0.18),
      transparent 40%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 60px 0 40px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05080f;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(104, 241, 255, 0.5);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin: 30px 0 0;
}

.stat strong {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}

section {
  margin-top: 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.section-title span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* UPDATED — More space between grid cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* UPDATED — More space inside each card */
.feature-card {
  display: grid;
  gap: 20px;
  padding-bottom: 12px;
}

/* UPDATED — More space between image and heading */
.image-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  margin-bottom: 14px;
}

.image-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-visual::after,
.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(43, 211, 111, 0.25),
      rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
  pointer-events: none;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-index {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(104, 241, 255, 0.2), rgba(140, 91, 255, 0.3));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.cta-banner {
  margin-top: 50px;
  display: grid;
  gap: 26px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cta-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(104, 241, 255, 0.15);
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
  }
}