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

/* Timer bar */
.timer-bar {
  background: #dc2626;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.timer-bar #countdown {
  font-weight: 700;
}

/* Header */
.site-header {
  background: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo-main {
  max-width: 208px;
  max-height: 32px;
}

.site-header .logo-media {
  width: 36px;
}

@media (min-width: 768px) {
  .site-header .logo-main {
    max-width: 288px;
    max-height: 48px;
  }
}

/* Layout */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.two-col {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .two-col {
    padding: 48px;
  }

  .col-left {
    padding: 40px;
  }

  .col-right {
    padding: 40px;
  }
}

/* Left column */
.col-left h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}

.col-left ul {
  list-style: disc;
  margin: 0 0 28px 20px;
  padding: 0;
  color: #4b5563;
  font-weight: 300;
}

.col-left ul li {
  padding-bottom: 4px;
}

.forbes-wrap {
  text-align: center;
  display: none;
}

@media (min-width: 768px) {
  .forbes-wrap {
    display: block;
  }
}

.forbes-wrap img {
  width: 112px;
}

/* Step label */
.step-label {
  font-size: 0.75rem;
  color: #9ca3af;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
  margin-bottom: 32px;
}

/* Form card */
.form-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Fields */
.form_field {
  margin-bottom: 16px;
}

.form_field input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form_field input:focus {
  border-color: #2563eb;
}

.form_field.has-error input {
  border-color: #dc2626;
}

.field-error {
  display: none;
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 4px;
}

.form_field.has-error .field-error {
  display: block;
}

/* Button */
.btn-primary {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 8px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Trust */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
}

.trust-logos img {
  height: 32px;
  width: auto;
}
