:root {
  --bg: #071510;
  --bg-soft: #0f2119;
  --panel: rgba(245, 255, 248, 0.07);
  --panel-strong: rgba(245, 255, 248, 0.11);
  --line: rgba(245, 255, 248, 0.14);
  --text: #f6fbf7;
  --muted: #cad8cd;
  --accent: #0f9344;
  --accent-soft: #d6f17d;
  --secondary: #ff9d0a;
  --tertiary: #e23718;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 147, 68, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 157, 10, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(226, 55, 24, 0.14), transparent 22%),
    linear-gradient(180deg, #0a1712 0%, #071510 45%, #04100c 100%);
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 5rem;
  right: -10rem;
  background: rgba(255, 157, 10, 0.18);
}

.site-shell::after {
  bottom: 8rem;
  left: -8rem;
  background: rgba(15, 147, 68, 0.16);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(6, 19, 14, 0.8);
  border-bottom: 1px solid rgba(214, 241, 125, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 4rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
  line-height: 1;
}

.brand-name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #12a048 0%, #e4c700 44%, #ff8e17 72%, #dd2f16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtext {
  color: rgba(246, 251, 247, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-logo-footer {
  height: 5.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: linear-gradient(90deg, rgba(15, 147, 68, 0.18), rgba(255, 157, 10, 0.18));
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.hero,
.page-hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.28rem;
}

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

.lead {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--secondary), var(--tertiary));
  color: #fff8f3;
  box-shadow: 0 18px 40px rgba(255, 157, 10, 0.24);
}

.button-secondary {
  border-color: rgba(214, 241, 125, 0.18);
  background: rgba(245, 255, 248, 0.04);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.metric-row,
.feature-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-row {
  margin-top: 2rem;
}

.metric-card,
.feature-card,
.stat-card,
.timeline-card,
.info-card,
.service-card,
.quote-panel,
.hero-panel,
.cta-card,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.09), rgba(255, 248, 240, 0.05));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metric-card,
.feature-card,
.stat-card,
.timeline-card,
.info-card {
  padding: 1.4rem;
}

.metric-card strong,
.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 1.02rem;
}

.hero-panel {
  padding: 1.6rem;
}

.panel-badge,
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 241, 125, 0.12);
  color: var(--accent-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.hero-panel p {
  margin-top: 1rem;
}

.hero-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stack-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(7, 21, 16, 0.34);
  border: 1px solid rgba(245, 255, 248, 0.08);
}

.stack-card span,
.timeline-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent-soft);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-card strong {
  color: var(--text);
  line-height: 1.5;
}

.section {
  padding: 2rem 0 4.5rem;
}

.section-contrast {
  padding-top: 4.5rem;
  background: linear-gradient(180deg, rgba(15, 147, 68, 0.04), rgba(255, 157, 10, 0.06));
  border-top: 1px solid rgba(214, 241, 125, 0.06);
  border-bottom: 1px solid rgba(255, 157, 10, 0.08);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  margin-top: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card h3 {
  margin-top: 0.85rem;
}

.feature-card p {
  margin-top: 0.9rem;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 147, 68, 0.2), rgba(255, 157, 10, 0.18));
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.split-copy p + p {
  margin-top: 1rem;
}

.timeline,
.info-stack {
  display: grid;
  gap: 1rem;
}

.timeline-card h3,
.info-card h3 {
  margin-bottom: 0.7rem;
}

.quote-panel {
  padding: 2rem;
}

.quote-text {
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.quote-credit {
  margin-top: 1rem;
  color: var(--accent-soft);
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.whatsapp-button {
  margin-top: 1rem;
  border-color: rgba(15, 147, 68, 0.3);
  background: linear-gradient(90deg, rgba(15, 147, 68, 0.16), rgba(214, 241, 125, 0.12));
  color: var(--accent-soft);
}

.whatsapp-button:hover {
  color: var(--text);
  border-color: rgba(255, 157, 10, 0.4);
}

.footer-whatsapp {
  margin-top: 1.15rem;
}

.site-footer {
  padding: 1rem 0 2.2rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-bottom {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 248, 240, 0.06);
}

.page-hero .lead {
  max-width: 52ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.6rem;
}

.service-card h2 {
  margin-top: 0.9rem;
  font-size: 1.7rem;
}

.service-card p {
  margin-top: 0.95rem;
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(15, 147, 68, 0.12), rgba(255, 157, 10, 0.1), rgba(226, 55, 24, 0.08)),
    linear-gradient(180deg, rgba(245, 255, 248, 0.09), rgba(245, 255, 248, 0.05));
}

.service-list {
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.service-list li + li {
  margin-top: 0.65rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-form {
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 248, 240, 0.12);
  background: rgba(12, 10, 9, 0.45);
  color: var(--text);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(214, 198, 184, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 157, 10, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 157, 10, 0.12);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.form-note.success {
  color: var(--accent-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .service-grid,
  .metric-row,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-card,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .brand-logo {
    height: 3.2rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-subtext {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .brand-logo-footer {
    height: 4.5rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(12, 10, 9, 0.96);
    border: 1px solid rgba(255, 248, 240, 0.08);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero,
  .page-hero {
    padding-top: 4.5rem;
  }

  h1 {
    max-width: none;
  }
}
