:root {
  --charcoal: #090b0d;
  --charcoal-strong: #111519;
  --charcoal-soft: #161b20;
  --lime: #a6ff00;
  --lime-strong: #8ee300;
  --white: #f7f8fb;
  --gray: #b9c0cc;
  --text: #e8edf4;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #07090b;
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 23, 35, 0.08);
}

.white-nav .header-inner {
  color: #10152a;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: #10152a;
  transition: color 0.2s ease;
}

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

.hero-section {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, #111519 0%, #090b0d 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.05rem;
  color: #c8ced8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--lime), #88dd00);
  color: #101512;
  box-shadow: 0 18px 28px rgba(166, 255, 0, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card {
  width: 100%;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-panel-title {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9fdc4f;
}

.stat-card {
  padding: 1.25rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--white);
}

.trust-badges-section {
  padding: 2rem 0 3rem;
  background: #0b0f12;
}

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

.badge-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(166, 255, 0, 0.14);
}

.badge-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(166, 255, 0, 0.12);
  color: var(--lime);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.badge-card:hover .badge-icon {
  transform: translateY(-2px);
  background: rgba(166, 255, 0, 0.18);
  box-shadow: 0 0 18px rgba(166, 255, 0, 0.22);
}

.badge-card strong {
  font-size: 1rem;
  color: var(--white);
}

@media (max-width: 860px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }
}

.how-it-works-section {
  padding: 4rem 0;
  background: var(--charcoal-strong);
}

.how-it-works-grid {
  display: grid;
  gap: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.section-header p {
  margin: 0;
  color: #c5cbd6;
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #88dd00);
  color: #101512;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  color: #b9c0cc;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card span {
  color: #b8bfd1;
}

.apply-section {
  padding: 4rem 0;
  background: var(--charcoal-strong);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.apply-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.apply-copy p {
  margin: 1rem 0 1.5rem;
  color: #c5cbd6;
  max-width: 40rem;
}

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

.apply-benefits li {
  color: #d3dac5;
}

.apply-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
  background: #0d1114;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.field-row {
  display: grid;
  gap: 0.55rem;
}

.field-row label {
  color: #a7b0c0;
  font-size: 0.95rem;
}

.field-row input {
  width: 100%;
  min-height: 50px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 1rem;
}

.field-row input::placeholder {
  color: #6f7b8d;
}

.field-row input:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(166, 255, 0, 0.12);
}

.field-row input[type="file"] {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
}

.field-row input[type="file"]:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(166, 255, 0, 0.12);
}

.why-choose-section {
  padding: 4rem 0;
  background: #0b0f12;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.why-choose-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.why-choose-copy p {
  margin: 0;
  color: #c5cbd6;
  max-width: 40rem;
}

.why-choose-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-highlight {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: #b9c0cc;
}

@media (max-width: 860px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.trust-section {
  padding: 3.5rem 0 4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

.trust-section h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.trust-section p {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: #c5cbd6;
}

.trust-features {
  display: grid;
  gap: 1rem;
}

.trust-features div {
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-features h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.trust-features p {
  margin: 0;
  color: #b9c0cc;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-info p {
  margin: 0 0 1rem;
  color: #9da6b4;
  font-size: 0.95rem;
}

.footer-info address {
  font-style: normal;
  color: #b9c0cc;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #b9c0cc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .hero-content,
  .apply-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 3.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .hero-actions,
  .apply-form {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-panel-card,
  .field-row input,
  .trust-features div {
    border-radius: 18px;
  }
}
