:root {
  --page-max: 1120px;
  --footer-bg: #0f2d0f;
}

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

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background: var(--color-secondary-100);
}

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

.container {
  width: min(100% - 2rem, var(--page-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 246, 0.95);
  border-bottom: 1px solid rgba(124, 136, 132, 0.25);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
}

.menu-toggle {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-primary);
  font: inherit;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
}

.site-nav {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

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

.site-nav a {
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
}

.site-nav a:hover {
  background: var(--color-secondary-200);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  padding: 0.82rem 1rem;
  text-decoration: none !important;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-neutral-0);
}

.btn-secondary {
  background: var(--color-secondary-200);
  color: var(--color-primary);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 3.2rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
}

.eyebrow {
  display: inline-flex;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-secondary-200);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.trust-badges {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.trust-badge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
}

.trust-badge img {
  width: 16px;
  height: 16px;
}

.phone-frame {
  width: min(100%, 280px);
  overflow: hidden;
  margin-inline: auto;
}

.phone-frame img {
  width: 100%;
  display: block;
}

.section {
  padding: 2.6rem 0;
}

.section h2 {
  margin: 0 0 0.8rem;
}

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

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 0.9rem;
}

.proof {
  background: linear-gradient(120deg, #123311 0%, #1a4f18 100%);
  color: var(--color-neutral-0);
}

.proof .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.proof h2,
.proof h3 {
  color: var(--color-neutral-0);
}

.proof .kpi {
  color: var(--color-secondary-300);
  font-size: 1.45rem;
  font-weight: 700;
}

.feature-highlight {
  background: linear-gradient(145deg, #113210 0%, #1f561d 85%);
  color: var(--color-neutral-0);
}

.feature-highlight h3 {
  color: var(--color-neutral-0);
}

.feature-highlight .kpi-mini {
  background: rgba(227, 243, 226, 0.95);
  color: var(--color-primary);
  border: 1px solid rgba(18, 51, 17, 0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.social-quote {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-secondary-200);
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  background: var(--color-surface);
}

.faq-block {
  display: grid;
  gap: var(--space-4, 1.5rem);
  align-items: start;
}

.faq-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.faq-content h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  text-align: left;
  font: inherit;
  font-weight: 600;
  padding: 1rem;
  cursor: pointer;
  appearance: none;
}

.faq-question::after {
  content: "+";
  float: right;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--color-text-muted);
}

.cta-box {
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, #11320f 0%, #1b4f19 100%);
  color: var(--color-neutral-0);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.4rem;
  text-align: center;
}

.cta-box h2,
.cta-box p {
  color: var(--color-neutral-0);
}

.simple-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.simple-header .header-inner {
  min-height: 64px;
}

.center-shell {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1rem;
}

.form-card,
.auth-card {
  width: min(100%, 540px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.input,
.textarea,
.select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-neutral-0);
  color: var(--color-text);
  padding: 0 0.8rem;
  font: inherit;
}

.textarea {
  min-height: 120px;
  height: auto;
  padding-top: 0.6rem;
}

.form-note,
.error-note {
  font-size: 0.88rem;
}

.error-note {
  color: var(--color-accent);
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
}

.contact-cards .card h3 {
  margin-top: 0;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-sidebar > .muted {
  margin: 0;
  line-height: 1.5;
}

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

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-secondary-200);
  border: 1px solid rgba(18, 51, 17, 0.1);
  border-radius: var(--radius-md);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.contact-card-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.contact-card-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.success-msg {
  margin-top: 0.5rem;
  color: var(--color-success);
  font-weight: 600;
}

.legal-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.legal-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--font-family-base);
  line-height: 1.6;
}

.legal-rich h2 {
  margin: 1.1rem 0 0.55rem;
  font-size: 1.35rem;
}

.legal-rich h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.05rem;
}

.legal-rich p {
  margin: 0.5rem 0;
  line-height: 1.65;
}

.legal-rich ul {
  margin: 0.55rem 0 0.8rem;
  padding-left: 1.25rem;
}

.legal-rich li {
  margin: 0.28rem 0;
}

.status-wrap {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.status-card {
  width: min(100%, 560px);
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: 1.5rem;
}

.checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #e3f3e2;
  border: 2px solid #2b8a3e;
  position: relative;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 14px;
  width: 16px;
  height: 30px;
  border: solid #2b8a3e;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.site-footer {
  margin-top: 2rem;
  background: var(--footer-bg);
  color: #dce6dc;
  padding: 2rem 0 1.7rem;
}

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

.footer-col h4 {
  margin: 0 0 0.7rem;
  color: #fff;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-brand .muted {
  display: none;
}

.footer-col a {
  display: block;
  color: #dce6dc;
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 1.1rem;
  padding-top: 1rem;
  color: #c6d3c7;
}

.footer-bottom-copy {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 0.8rem;
  color: #b8c8b9;
  font-size: 0.9rem;
  text-align: center;
}

.ssl-badge {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  padding: 0.28rem 0.7rem;
  font-size: 0.86rem;
}

.ssl-badge img {
  width: 14px;
  height: 14px;
}

.legal-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    padding: 0;
    background: transparent;
    margin-left: auto;
    gap: 0.35rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
  }

  .faq-block {
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
  }

  .faq-image {
    justify-content: flex-start;
  }
}
