:root {
  --ink: #17202a;
  --muted: #5e6b78;
  --line: #dce4ea;
  --brand: #146c63;
  --brand-dark: #0f4f4a;
  --accent: #e36f2c;
  --paper: #ffffff;
  --soft: #f4f7f7;
  --blue: #2f5f98;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar {
  min-height: 64px;
}

.navbar .nav-link {
  color: #33414d;
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
}

.brand-name {
  line-height: 1;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
}

.hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #102428;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 30, 34, 0.95) 0%, rgba(12, 30, 34, 0.78) 48%, rgba(12, 30, 34, 0.42) 100%),
    linear-gradient(180deg, rgba(20, 108, 99, 0.35), rgba(227, 111, 44, 0.22));
}

.product-scene {
  position: absolute;
  right: clamp(-260px, -10vw, -40px);
  top: 92px;
  width: min(780px, 70vw);
  min-height: 500px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(250, 252, 252, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  transform: rotate(-2deg);
}

.scene-topbar {
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  margin-bottom: 18px;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.scene-panel {
  min-height: 170px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.scene-panel-wide {
  grid-row: span 2;
  min-height: 360px;
}

.scene-kicker {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.scene-amount {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--brand-dark);
}

.scene-number {
  margin-top: 14px;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--blue);
}

.scene-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 190px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.scene-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--accent);
}

.scene-line {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  margin-top: 22px;
  background: var(--blue);
  opacity: 0.25;
}

.scene-line.short {
  width: 64%;
  margin-top: 12px;
  background: var(--muted);
}

.scene-line.green {
  background: var(--brand);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 96px;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-section h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 1.05;
  font-weight: 900;
}

.hero-section .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-proof span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.section-pad {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
}

h2 {
  font-weight: 850;
  line-height: 1.16;
}

.mini-card,
.feature-card,
.plan-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 42, 55, 0.06);
}

.mini-card {
  padding: 22px;
}

.mini-card i {
  color: var(--accent);
  font-size: 1.5rem;
}

.mini-card h3,
.feature-card h3,
.plan-card h3 {
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 800;
}

.mini-card p,
.feature-card p,
.plan-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-card,
.plan-card,
.form-panel {
  padding: 28px;
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 1.25rem;
}

.muted-section,
.cta-section {
  background: var(--soft);
}

.role-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.role-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.role-row:last-child {
  border-bottom: 0;
}

.role-row span {
  color: var(--brand-dark);
  font-weight: 800;
}

.role-row strong {
  font-weight: 700;
}

.plan-card ul {
  margin: 22px 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.plan-card li + li {
  margin-top: 10px;
}

.plan-card-focus {
  border-color: rgba(20, 108, 99, 0.45);
  box-shadow: 0 18px 42px rgba(20, 108, 99, 0.13);
}

.login-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.login-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.login-links i {
  color: var(--brand);
}

.form-control,
.form-select {
  border-radius: 8px;
  min-height: 46px;
}

.lead-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  display: grid;
  gap: 10px;
}

.floating-contact-link {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.45rem;
  box-shadow: 0 12px 26px rgba(20, 32, 42, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-contact-link:hover,
.floating-contact-link:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 32, 42, 0.3);
}

.floating-contact-line {
  background: #06c755;
}

.floating-contact-phone {
  background: var(--accent);
}

.floating-contact-facebook {
  background: #1877f2;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 720px;
  }

  .product-scene {
    right: -220px;
    top: auto;
    bottom: -70px;
    width: 640px;
    opacity: 0.7;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(12, 30, 34, 0.96) 0%, rgba(12, 30, 34, 0.86) 58%, rgba(12, 30, 34, 0.56) 100%),
      linear-gradient(180deg, rgba(20, 108, 99, 0.35), rgba(227, 111, 44, 0.22));
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .product-scene {
    display: none;
  }

  .role-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact-link {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
}
