:root {
  --bg: #0c1110;
  --bg-elev: #141c1a;
  --text: #e8f0ec;
  --muted: #8aa399;
  --accent: #3ecf8e;
  --accent-dim: #2a9d62;
  --warm: #f4a261;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(62, 207, 142, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 50% at 90% 0%, rgba(244, 162, 97, 0.1), transparent 45%);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo-accent {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

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

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

.hero {
  display: grid;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 4.5rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 42ch;
}

.hero-bullets {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 48ch;
}

.hero-bullets li {
  margin-bottom: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #062012;
}

.btn-primary:hover {
  background: #52e09e;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.btn-large {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-card {
  padding: 1.25rem 1.35rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.panel-card-alt {
  border-color: rgba(244, 162, 97, 0.25);
}

.panel-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.panel-card-alt .panel-label {
  color: var(--warm);
}

.panel-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-stripe {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(62, 207, 142, 0.06);
  border-radius: var(--radius);
  border: 1px dashed rgba(62, 207, 142, 0.35);
}

.stripe-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--accent-dim);
  box-shadow: 0 0 12px var(--accent);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-alt {
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.split-card {
  padding: 1.5rem 1.45rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.split-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.split-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-card p:last-child {
  margin-bottom: 0;
}

.split-card-warm {
  border-color: rgba(244, 162, 97, 0.22);
}

.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  padding: 1.2rem 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.benefit-item strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.3rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(62, 207, 142, 0.18);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-columns {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .feature-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.feature-col h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.plain-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.plain-list li {
  margin-bottom: 0.65rem;
}

.plain-list li:last-child {
  margin-bottom: 0;
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  margin-bottom: 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0.85rem 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

.cta-support {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.foot-line {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 52ch;
}

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.35rem 1.4rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  padding-bottom: 4rem;
}

.cta-box {
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(62, 207, 142, 0.12), rgba(20, 28, 26, 0.9));
  border: 1px solid rgba(62, 207, 142, 0.25);
  border-radius: calc(var(--radius) + 4px);
}

.cta-box .section-title {
  margin-bottom: 0.35rem;
}

.cta-box .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  justify-content: center;
}

.foot {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.foot p {
  margin: 0.35rem 0;
}

body.modal-open {
  overflow: hidden;
}

.grecaptcha-badge {
  visibility: hidden;
}

.fab-contact {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #062012;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(62, 207, 142, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fab-contact:hover {
  background: #52e09e;
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(62, 207, 142, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.fab-contact:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.contact-modal-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.contact-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.contact-modal-title {
  margin: 0 2rem 0.5rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.contact-modal-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.2s;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(62, 207, 142, 0.5);
}

.contact-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

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

.contact-form-status {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-radius: calc(var(--radius) - 4px);
  font-size: 0.9rem;
}

.contact-form-status--success {
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.35);
  color: var(--accent);
}

.contact-form-status--error {
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid rgba(244, 162, 97, 0.35);
  color: var(--warm);
}

.contact-form-actions .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-recaptcha-notice {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.contact-recaptcha-notice a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-recaptcha-notice a:hover {
  color: var(--text);
}
