:root {
  --bg: #071a16;
  --bg-2: #0c2520;
  --text: #f2f7d6;
  --muted: #b8c8a6;
  --card: #0f2f28;
  --line: #255648;
  --accent: #f6c945;
  --accent-dark: #d6a71e;
  --accent-web: #69d8f9;
  --accent-web-deep: #3ca8c8;
  --accent-auto: #84d37d;
  --accent-auto-deep: #3d8f5e;
  --ok: #84d37d;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 480px at 15% -12%, rgba(246, 201, 69, 0.16), transparent 72%),
    radial-gradient(900px 460px at 100% 10%, rgba(94, 174, 125, 0.14), transparent 68%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fcffd8;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 5vw;
  border-bottom: 1px solid rgba(37, 86, 72, 0.9);
  background: rgba(8, 29, 24, 0.82);
  backdrop-filter: blur(8px);
}

.site-header nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 500;
}

.site-header nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #dbe9c8;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.site-header nav a:hover {
  color: #fff9d1;
  border-color: rgba(246, 201, 69, 0.55);
  background: rgba(246, 201, 69, 0.08);
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.18rem, 1.2vw, 1.45rem);
  text-decoration: none;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-shadow:
    0 0 10px rgba(246, 201, 69, 0.65),
    0 0 24px rgba(246, 201, 69, 0.35);
  transition: text-shadow 0.25s ease, transform 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
  text-shadow:
    0 0 12px rgba(246, 201, 69, 0.85),
    0 0 34px rgba(246, 201, 69, 0.48);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ffe07f, var(--accent));
  color: #1f2b08;
  border-color: #f9d566;
  box-shadow: 0 10px 24px rgba(246, 201, 69, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #152100;
}

.btn-secondary {
  border-color: #3f7f6c;
  color: #e8f2cf;
  background: rgba(19, 57, 48, 0.78);
}

.btn-secondary:hover {
  border-color: #7eb08f;
  background: rgba(27, 73, 61, 0.94);
}

.btn:focus-visible,
.site-header nav a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

main {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

section {
  margin: 4.2rem 0;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding-top: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--ok);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0.4rem 0 1rem;
}

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

.hero-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  font-size: 0.94rem;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(15, 47, 40, 0.88);
}

.hero-card,
.card,
.price-card,
.contact-form,
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.dual-hero-card {
  display: grid;
  gap: 1rem;
}

.mini-path {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(8, 35, 28, 0.65);
}

.pill-label {
  display: inline-flex;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin: 0 0 0.55rem;
}

.path-auto {
  color: #d3ffd1;
  border-color: rgba(132, 211, 125, 0.42);
  background: rgba(132, 211, 125, 0.08);
}

.path-web {
  color: #b6efff;
  border-color: rgba(105, 216, 249, 0.4);
  background: rgba(105, 216, 249, 0.08);
}

.section-head h2 {
  margin-top: 0.3rem;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 68%;
  height: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(246, 201, 69, 0));
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.hero-card ul,
.price-card ul {
  padding-left: 1rem;
}

.grid-3,
.grid-2,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

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

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

.split-grid .card {
  min-height: 155px;
}

.paths {
  margin-top: 3.2rem;
}

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

.path-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.path-card ul {
  padding-left: 1rem;
}

.path-card-auto {
  background: linear-gradient(160deg, rgba(132, 211, 125, 0.12), rgba(15, 47, 40, 0.95));
  border-color: rgba(132, 211, 125, 0.35);
}

.path-card-web {
  background: linear-gradient(160deg, rgba(105, 216, 249, 0.14), rgba(15, 47, 40, 0.95));
  border-color: rgba(105, 216, 249, 0.32);
}

.dual-cards article {
  background: rgba(15, 47, 40, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.offer-switch {
  display: inline-flex;
  gap: 0.55rem;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 35, 28, 0.88);
  margin-bottom: 1.2rem;
}

.switch-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  background: transparent;
  color: #dce9c9;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.switch-btn.active {
  background: linear-gradient(180deg, #ffe07f, var(--accent));
  color: #1d2a08;
  box-shadow: 0 6px 18px rgba(246, 201, 69, 0.33);
}

.switch-btn[data-offer-switch="automation"].active {
  background: linear-gradient(180deg, #bff0a5, var(--accent-auto));
  color: #10250f;
  box-shadow: 0 6px 18px rgba(132, 211, 125, 0.28);
}

.switch-btn[data-offer-switch="web"].active {
  background: linear-gradient(180deg, #bcefff, var(--accent-web));
  color: #082532;
  box-shadow: 0 6px 18px rgba(105, 216, 249, 0.28);
}

.offer-panel {
  display: none;
}

.offer-panel.active {
  display: block;
}

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

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

.price-card {
  position: relative;
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  border-radius: 999px;
  background: rgba(246, 201, 69, 0.2);
  color: #ffe9a2;
}

.price {
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  margin: 0.3rem 0;
}

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

.featured {
  border-width: 2px;
  border-color: var(--accent);
  transform: translateY(-8px);
}

.web-featured {
  border-color: var(--accent-web);
}

.auto-featured {
  border-color: var(--accent-auto);
}

.timeline ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

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

.lane h3 {
  margin-top: 0;
}

.impact-grid .card {
  min-height: 150px;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

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

input,
textarea,
select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  background: #0b241f;
  color: #f1f6d5;
}

input::placeholder,
textarea::placeholder {
  color: #9db39b;
}

.consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: 2rem 0;
}

.thanks-card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 2rem 5vw;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(37, 86, 72, 0.8);
}

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

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

@media (max-width: 1000px) {
  .hero,
  .contact,
  .pricing-grid,
  .lane-grid,
  .path-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}
