:root {
  --dark: #0f172a;
  --darker: #111827;
  --green: #78c010;
  --lime: #a0d050;
  --ink: #0f172a;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: #1e293b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgb(120 192 16 / 0.5);
  color: var(--ink);
}

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

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(80rem, calc(100% - 2rem));
  margin-inline: auto;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 12px 30px rgb(120 192 16 / 0.45);
}

.btn-primary:hover {
  background: #8fd41c;
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--green);
  background: rgb(15 23 42 / 0.75);
  color: #fff;
}

.btn-secondary:hover {
  background: rgb(120 192 16 / 0.12);
  transform: scale(1.05);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.3s, border-color 0.3s;
}

.header.is-scrolled {
  background: rgb(15 23 42 / 0.95);
  border-bottom: 1px solid rgb(30 41 59 / 0.8);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  height: 5rem;
  /*width: 11.8rem;*/
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a:not(.btn-primary) {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-desktop a:not(.btn-primary):hover {
  color: #fff;
}

.menu-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  padding: 0.5rem;
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: rgb(15 23 42 / 0.98);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a:not(.btn-primary) {
  padding: 0.5rem 0.75rem;
  color: #cbd5e1;
  border-radius: 0.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 192, 16, 0.28), transparent);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.hero-blob.left {
  left: -8rem;
  top: 25%;
  width: 24rem;
  height: 24rem;
  background: rgb(120 192 16 / 0.2);
}

.hero-blob.right {
  right: -8rem;
  bottom: 20%;
  width: 20rem;
  height: 20rem;
  background: rgb(160 208 80 / 0.15);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #334155;
  background: rgb(15 23 42 / 0.6);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.badge svg {
  color: var(--lime);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 1.25rem 0 0;
}

.gradient {
  background: linear-gradient(to right, var(--green), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.trust span {
  border: 1px solid rgb(51 65 85 / 0.8);
  background: rgb(15 23 42 / 0.4);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #cbd5e1;
}

.glass {
  border-radius: 1rem;
  border: 1px solid rgb(51 65 85 / 0.8);
  background: rgb(15 23 42 / 0.55);
  backdrop-filter: blur(8px);
}

.hero-card {
  padding: 0.5rem;
}

.hero-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a2e14 100%);
}

.hero-panel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgb(120 192 16 / 0.2);
  color: var(--green);
}

.hero-bar {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  background: rgb(0 0 0 / 0.5);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
}

.hero-bar .lime {
  color: var(--lime);
  font-weight: 700;
}

section {
  padding: 6rem 0;
}

.section-alt {
  background: rgb(17 24 39 / 0.5);
}

.center {
  text-align: center;
}

.kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.kicker.lime {
  color: var(--lime);
}

h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
}

.sub {
  margin: 1rem auto 0;
  max-width: 40rem;
  color: var(--muted);
}

.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.service-btn {
  width: 100%;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgb(15 23 42 / 0.4);
  color: inherit;
  padding: 1.25rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.service-btn:hover {
  transform: scale(1.03);
  border-color: #334155;
}

.service-btn.active {
  border-color: var(--green);
  background: rgb(120 192 16 / 0.1);
  box-shadow: 0 8px 24px rgb(120 192 16 / 0.1);
}

.service-btn svg {
  color: #94a3b8;
}

.service-btn.active svg {
  color: var(--green);
}

.service-btn p {
  margin: 0.75rem 0 0;
  font-weight: 700;
}

.service-btn small {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.75rem;
}

.service-detail {
  margin-top: 2rem;
  padding: 2rem;
}

.service-detail-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgb(120 192 16 / 0.2);
  color: var(--green);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chips span {
  border: 1px solid #334155;
  background: rgb(30 41 59 / 0.6);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.lime-text {
  color: var(--lime);
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}

.muted {
  color: var(--muted);
}

.compare {
  position: relative;
  max-width: 48rem;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 16 / 10;
}

.compare-after,
.compare-before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.compare-after {
  background: linear-gradient(135deg, #334155, #1e293b);
}

.compare-before {
  background: linear-gradient(135deg, #0f172a, #020617);
  clip-path: inset(0 50% 0 0);
}

.tag {
  position: absolute;
  bottom: 1rem;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.tag.ok {
  right: 1rem;
  background: var(--green);
  color: var(--ink);
}

.tag.bad {
  left: 1rem;
  background: rgb(220 38 38 / 0.8);
  color: #fff;
}

.compare-handle {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
}

.handle-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid #fff;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.process-grid {
  position: relative;
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.process-line {
  display: none;
}

.step {
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}

.step-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgb(120 192 16 / 0.1);
}

.step-circle {
  position: absolute;
  inset: 1rem;
  border-radius: 999px;
  border: 2px solid var(--green);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.step-num {
  position: absolute;
  right: -0.25rem;
  top: -0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

.wa-card {
  padding: 2rem;
  text-align: center;
}

.wa-card h3 {
  margin: 1rem 0 0.5rem;
}

.map iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  display: block;
  border-radius: 1rem;
}

.map {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.info-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.info-card a {
  color: var(--green);
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--darker);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer p,
.footer li,
.footer address {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.footer li {
  margin: 0.4rem 0;
}

.footer a:hover {
  color: #fff;
}

.copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  border-radius: 999px !important;
}

.legal {
  min-height: 100vh;
  padding: 4rem 1rem;
}

.legal-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.legal a.back {
  color: var(--green);
  font-size: 0.9rem;
}

.legal h1 {
  font-size: 2rem;
}

.legal h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-top: 2rem;
}

.legal p {
  color: #cbd5e1;
  line-height: 1.65;
}

.icon {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-btn,
  .nav-mobile,
  .wa-float {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .service-detail-row {
    flex-direction: row;
    align-items: flex-start;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 3rem;
    height: 2px;
    background: linear-gradient(to right, transparent, rgb(120 192 16 / 0.4), transparent);
  }
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .map iframe {
    height: 20rem;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
