  .eyebrow {
      color: var(--primary-color);
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
  }

  /* ---------- CONTACT INFO LIST ---------- */
  .contact-item {
      display: flex;
      gap: 18px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border-card);
  }

  .contact-item:last-of-type {
      border-bottom: none;
  }

  .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1.5px solid var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--primary-color);
  }

  .contact-icon svg {
      width: 18px;
      height: 18px;
  }

  .contact-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 3px;
  }

  .contact-value {
      color: var(--text-primary);
      font-weight: 600;
      font-size: 0.98rem;
  }

  .contact-note {
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin-top: 3px;
      line-height: 1.4;
  }

  /* ---------- FORM ---------- */
  .form-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 4px;
  }

  .field-label {
      display: block;
      color: var(--text-secondary);
      font-size: 0.82rem;
      margin-bottom: 6px;
  }

  .field-label .req {
      color: var(--primary-color);
  }

  .field-input {
      width: 100%;
      background: var(--bg-page);
      border: 1px solid var(--border-card);
      border-radius: 3px;
      padding: 10px 14px;
      color: var(--text-primary);
      font-size: 0.9rem;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .field-input::placeholder {
      color: #5C6B7C;
  }

  .field-input:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(217, 167, 48, 0.15);
  }

  select.field-input {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A9B4C2' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 34px;
  }

  .kaina-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      cursor: pointer;
      color: var(--text-secondary);
      font-size: 0.85rem;
      line-height: 1.5;
      user-select: none;
  }

  .kaina-checkbox input[type="checkbox"] {
      appearance: none;
      width: 16px;
      height: 16px;
      margin-top: 2px;
      border: 1.5px solid var(--border-card);
      background: var(--bg-page);
      border-radius: 2px;
      flex-shrink: 0;
      position: relative;
      cursor: pointer;
  }

  /* ---------- URGENT BANNER ---------- */
  .urgent-card {
      background: var(--bg-card);
      border: 1px solid var(--primary-color);
      border-radius: 4px;
  }

  .urgent-icon {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1.5px solid var(--primary-color);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .warn-icon {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1.5px solid #C6433D;
      color: #E2564F;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  /* ---------- WHY US ---------- */
  .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 999px;
      border: 1.5px solid var(--primary-color);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
  }

  /* ---------- ZONE MAP ---------- */
  .zone-wrap {
      position: relative;
      background: linear-gradient(90deg, rgba(6, 13, 20, 0.96) 0%, rgba(6, 13, 20, 0.75) 42%, rgba(6, 13, 20, 0.25) 100%),
          url('https://images.unsplash.com/photo-1470770903676-69b98201ea1c?q=80&w=1600&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
  }

  .pin {
      width: 14px;
      height: 14px;
      background: var(--primary-color);
      border-radius: 999px;
      box-shadow: 0 0 0 4px rgba(217, 167, 48, 0.25);
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
      background: var(--bg-card);
      border-top: 1px solid var(--border-card);
      border-bottom: 1px solid var(--border-card);
  }