:root {
  --bg: #0f172a;
  --card: #1e293b;
  --text: #e2e8f0;
  --textForm: #1e293b;
  --muted: #94a3b8;
  --brand: #22c55e;
  --brand2: #16a34a;
  --border: rgba(255, 255, 255, .10);
  --shadow: 0 10px 24px rgba(34, 197, 94, .25)
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text)
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  color: #041207;
  box-shadow: var(--shadow)
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--text)
}

@media screen and (max-width: 800px) {
  div.standardHeaderVisibility {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  div.smallHeaderVisibility {
    display: block;
  }
}

@media not screen and (max-width: 800px) {
  div.smallHeaderVisibility {
    display: none;
  }
}



header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0f172acc;
  backdrop-filter: blur(8px)
}

header.site .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0
}

header.site nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.section {
  padding: 72px 0
}

h1,
h2 {
  margin: 0 0 14px
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem)
}

p.lead {
  font-size: 1.1rem;
  color: #cbd5e1
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px
}

.card--img {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border)
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px
}

.price {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden
}

.price__body {
  padding: 18px
}

.list {
  margin: 10px 0 0 0;
  padding: 0 0 0 18px;
  color: #cbd5e1
}

.muted {
  color: var(--muted)
}

footer {
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border)
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh
}

.hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 12px
}

.hero p {
  color: #e2e8f0;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 0 18px
}

.hero .btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

/* Forms */
form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--textForm)
}

form textarea {
  min-height: 120px
}

@media (max-width:980px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr
  }

  .hero {
    height: 80vh
  }
}

@media (max-width:640px) {
  .grid-3 {
    grid-template-columns: 1fr
  }
}