:root {
  color-scheme: light;
  --color-bg: #f4f9f6;
  --color-surface: #ffffff;
  --color-surface-alt: #ecf5f0;
  --color-primary: #1e8c63;
  --color-primary-dark: #15694a;
  --color-accent: #3b82f6;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-border: rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.1);
  --shadow-md: 0 16px 32px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 16px rgba(15, 23, 42, 0.05);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(30, 140, 99, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 50%),
              var(--color-bg);
  color: var(--color-text);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: clamp(12px, 2vw, 24px);
}

.page {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}

.info-column,
.form-column {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 40px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.info-column::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 140, 99, 0.08), rgba(12, 74, 110, 0.08));
  pointer-events: none;
}

.info-column > * {
  position: relative;
  z-index: 2;
}

.brand-card {
  padding: clamp(20px, 2vw, 28px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo__image {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.04);
}

.brand-logo__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo__image[hidden] {
  display: none !important;
}

.brand-logo__icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  background: linear-gradient(135deg, #1e8c63, #15694a);
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
}

.brand-logo__icon[hidden] {
  display: none !important;
}

.brand-logo__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
}

.brand-logo__title {
  margin: 2px 0 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-card__subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.brand-card__description {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-size: 15px;
}

.brand-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.brand-stats--marquee {
  display: block;
  overflow: hidden;
  position: relative;
}

.brand-stats--marquee .brand-stat {
  min-width: 160px;
}

.brand-stats__track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.brand-stats--marquee .brand-stats__track {
  animation: brand-stats-marquee 18s linear infinite;
}

.brand-stats--marquee .brand-stats__track:hover,
.brand-stats--marquee .brand-stats__track:focus-within {
  animation-play-state: paused;
}

@keyframes brand-stats-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-stats--marquee .brand-stats__track {
    animation: none;
  }
}

.brand-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--color-surface-alt);
  border: 1px solid rgba(30, 140, 99, 0.15);
  display: grid;
  gap: 4px;
}

.brand-stat--text {
  align-items: flex-start;
}

.brand-stat--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  border: none;
}

.brand-stat__image {
  width: 100%;
  min-height: 96px;
  border-radius: 16px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-stat__image img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
  display: block;
}

.brand-stat__value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
}

.brand-stat__label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 140, 99, 0.1);
  border: 1px solid rgba(30, 140, 99, 0.18);
  font-size: 12px;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.services {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
}

.services__head h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
}

.services__head p {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.services__grid {
  display: grid;
  gap: 12px;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 140, 99, 0.4);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(30, 140, 99, 0.12), rgba(59, 130, 246, 0.12));
  color: var(--color-primary-dark);
}

.service-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.service-card__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.service-card__arrow {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 600;
}

.service-card.is-selected {
  border-color: rgba(30, 140, 99, 0.9);
  background: linear-gradient(135deg, rgba(30, 140, 99, 0.12), rgba(59, 130, 246, 0.1));
}

.highlights {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.highlight-card {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid rgba(59, 130, 246, 0.4);
}

.highlight-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.highlight-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.info-footer {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.06);
}

.info-footer__label {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.info-footer__value {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.form-card {
  display: grid;
  gap: 24px;
}

.form-card__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card__kicker {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  font-weight: 600;
}

.form-card__head h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
}

.form-card__head p {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(30, 140, 99, 0.12);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 13px;
  width: fit-content;
}

.steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-indicator {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-text-muted);
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.step-indicator__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0 auto;
  font-weight: 600;
  background: rgba(30, 140, 99, 0.18);
  color: var(--color-primary-dark);
}

.step-indicator.is-active,
.step-indicator.is-complete {
  border-color: rgba(30, 140, 99, 0.7);
  background: rgba(30, 140, 99, 0.08);
  color: var(--color-primary-dark);
}

.form-step {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 20px clamp(20px, 2vw, 26px);
  box-shadow: var(--shadow-sm);
}

.form-step.is-active {
  display: block;
}

.form-step legend {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.step-content {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  gap: 12px;
}

.form-section--two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-section--address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.6fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: end;
}

.form-section__label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.options-grid {
  display: grid;
  gap: 10px;
}

.options-grid--wrap {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.option-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.option-chip:hover {
  border-color: rgba(30, 140, 99, 0.4);
  transform: translateY(-1px);
}

.option-chip.is-selected {
  border-color: rgba(30, 140, 99, 0.9);
  background: linear-gradient(135deg, rgba(30, 140, 99, 0.15), rgba(59, 130, 246, 0.12));
  color: var(--color-primary-dark);
  font-weight: 600;
}

.option-chip input {
  display: none;
}

.options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.field input,
.field textarea {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.94);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(30, 140, 99, 0.6);
  box-shadow: 0 0 0 3px rgba(30, 140, 99, 0.15);
  outline: none;
}
.field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.options-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.options-inline .radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text);
}

.field-placeholder {
  display: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.checkbox--policy {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.04);
  border: 1px dashed rgba(15, 23, 42, 0.12);
}

.checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-primary);
  transform: scale(1.1);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  background: rgba(30, 140, 99, 0.14);
  color: var(--color-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn[hidden] {
  display: none !important;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--color-text-muted);
}

.btn--primary {
  background: linear-gradient(135deg, #1e8c63, #15694a);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(21, 105, 74, 0.22);
}

.btn--primary:hover:not(:disabled) {
  box-shadow: 0 14px 28px rgba(21, 105, 74, 0.25);
}

.summary {
  display: grid;
  gap: 14px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.summary__section {
  border-radius: var(--radius-sm);
  padding: 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.summary__section h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.summary ul {
  margin: 0;
  padding-left: 18px;
}

.success-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(30, 140, 99, 0.2);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: grid;
  gap: 14px;
}

.success-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(30, 140, 99, 0.15);
  color: var(--color-primary-dark);
  font-size: 36px;
  display: grid;
  place-content: center;
  margin: 0 auto;
}

.success-card h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 700;
}

.success-card p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.success-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.success-card[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  width: min(520px, calc(100vw - 32px));
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
}

.modal__content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.modal__content p {
  margin: 0 0 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.modal__list {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  z-index: 60;
  box-shadow: var(--shadow-sm);
}

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

  .info-column,
  .form-column {
    padding: clamp(18px, 3vw, 32px);
  }

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

  .form-section--two-cols {
    grid-template-columns: 1fr;
  }
}

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

  .info-column,
  .form-column {
    border-radius: 24px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn--primary,
  .btn--ghost {
    width: 100%;
    justify-content: center;
  }

  .step-indicator {
    text-align: left;
  }

  .steps {
    grid-template-columns: 1fr;
  }
  .form-section--address-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-section--two-cols {
    grid-template-columns: 1fr;
  }
  .field-group {
    grid-template-columns: 1fr;
  }
  .options-inline {
    gap: 8px;
  }
}

