* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #000000;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: 100%;
  background: #000000;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000000;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  width: auto;
  height: auto;
  max-width: 75%;
  max-height: 48vh;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 14%),
    linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 10%),
    linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 16%);
}

.logo {
  position: absolute;
  top: 27%;
  left: 0%;
  width: 48%;
  z-index: 2;
  pointer-events: none;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.card {
  background: #161616;
  border-radius: 28px;
  margin: 24px 5% 0;
  position: relative;
  z-index: 1;
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title {
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #202020;
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  padding: 22px 24px;
}

.phone-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
}

.phone-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.phone-input {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
}

.phone-ghost {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #5c5c5c;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: pre;
  pointer-events: none;
}

.phone-input::placeholder {
  color: #5c5c5c;
}

.submit-btn {
  border: none;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, #ff9a44 0%, #f5750f 100%);
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.submit-btn:active {
  transform: scale(0.98);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.hint {
  text-align: center;
  color: #8a8a8a;
  font-size: 0.85rem;
  font-weight: 500;
}
