:root {
  --brand-primary: #014e2a;
  --brand-primary-dark: #012615;
  --brand-accent: #1bad57;
  --white: #ffffff;

  --text-high: #09090a;
  --text-medium: #4f4f4f;
  --text-low: #707070;

  --surface: #fbfbff;
  --surface-01: #f7f8fc;
  --surface-02: #f2f4fa;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-card: 0 12px 30px rgba(1, 38, 21, 0.08);
  --shadow-phone: 0 30px 60px rgba(1, 38, 21, 0.25);

  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-high);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
  border: none;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

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

.btn--primary {
  background: var(--brand-accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(27, 173, 87, 0.35);
}

.btn--primary:hover {
  background: #17983f;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--ghost:hover {
  background: var(--brand-primary);
  color: var(--white);
}

.badge {
  display: inline-block;
  margin-top: 28px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.badge--light {
  background: rgba(1, 78, 42, 0.08);
  color: var(--brand-primary);
  border-color: rgba(1, 78, 42, 0.2);
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(1, 78, 42, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav__logo {
  height: 26px;
  width: auto;
}

/* Hero */

.hero {
  background: linear-gradient(160deg, var(--brand-primary-dark) 0%, var(--brand-primary) 45%, var(--brand-accent) 130%);
  color: var(--white);
  padding: 88px 0 96px;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}

.hero__tagline {
  margin: 0 0 28px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.hero__headline {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero__sub {
  max-width: 620px;
  margin: 0 0 36px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Section shared */

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--text-medium);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Features */

.features {
  padding: 96px 0;
  background: var(--surface);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(1, 78, 42, 0.06);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(27, 173, 87, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 600;
}

.card__text {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* App preview (login/register banner) */

.app-preview {
  padding: 96px 0;
  background: var(--surface);
}

.app-preview__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.app-preview__screens {
  width: 100%;
  max-width: 760px;
  height: auto;
}

.app-preview__photo {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Screens */

.screens {
  padding: 96px 0 112px;
  background: var(--white);
}

.screens__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  justify-items: center;
}

.phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
}

.phone__notch {
  width: 120px;
  height: 24px;
  background: var(--text-high);
  border-radius: 0 0 18px 18px;
  position: relative;
  top: 24px;
  z-index: 3;
}

.phone__screen {
  width: 320px;
  height: 660px;
  background: var(--surface-02);
  border-radius: 46px;
  border: 12px solid var(--text-high);
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone__caption {
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--text-medium);
  text-align: center;
  max-width: 260px;
  line-height: 1.5;
}

/* Screen icons (shared) */

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

.scr-icon--primary {
  color: var(--brand-primary);
}

.scr-icon--accent {
  color: var(--brand-primary);
}

.scr-icon--muted {
  color: #939393;
}

.scr-separator {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* Screen 1: map + menu button + request sheet */

.scr-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #eef1e7;
}

.scr-map--peek {
  height: 190px;
  flex: none;
}

/* Leaflet: hide turn-by-turn panel, shrink attribution, keep just the map + route */
.scr-map .leaflet-routing-container {
  display: none;
}

.scr-map .leaflet-control-attribution {
  font-size: 8px;
  padding: 0 4px;
  background: rgba(255, 255, 255, 0.7);
}

.scr-map .leaflet-control-zoom {
  display: none;
}

/* Screen 0: welcome */

.phone__screen--welcome {
  background: var(--brand-primary);
}

.scr-welcome__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scr-welcome__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--brand-primary-dark) 0%,
    var(--brand-primary) 30%,
    rgba(1, 78, 42, 0.55) 60%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.scr-welcome__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 28px;
  text-align: center;
}

.scr-welcome__logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.scr-welcome__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
}

.scr-welcome__buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 28px 40px;
}

.scr-btn--white-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  cursor: default;
}

.scr-btn--white-fill {
  background: var(--white);
  border: none;
  color: var(--brand-primary);
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  cursor: default;
}

/* Screen 5: profile */

.scr-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--brand-primary);
  padding: 34px 22px 20px;
}

.scr-profile-header svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.scr-profile-header span {
  color: var(--white);
  font-weight: 500;
  font-size: 1.02rem;
}

.scr-profile-body {
  flex: 1;
  background: #ededed;
  padding: 30px 20px 20px;
  overflow-y: auto;
}

.scr-avatar-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  margin: -46px auto 20px;
}

.scr-avatar {
  width: 84px;
  height: 84px;
  border-radius: 42px;
  background: #e0e0e0;
  border: 2px solid var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scr-avatar svg {
  width: 44px;
  height: 44px;
}

.scr-avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background: #222629;
  border: 3px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scr-avatar-edit svg {
  width: 13px;
  height: 13px;
}

.scr-profile-card {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

.scr-profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}

.scr-profile-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-high);
}

.scr-profile-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  color: var(--text-high);
  font-weight: 300;
}

.scr-profile-value svg {
  width: 20px;
  height: 20px;
}

.scr-profile-value--underline {
  font-size: 0.8rem;
  text-decoration: underline;
}

.scr-profile-value--light {
  font-size: 0.8rem;
}

.scr-profile-row--action {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-high);
}

.scr-profile-row--action svg {
  width: 20px;
  height: 20px;
}

.scr-profile-delete {
  padding: 12px 18px 22px;
}

.scr-profile-delete-btn {
  width: 82%;
  margin: 0 auto;
  display: block;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #ff1a1a;
  background: var(--white);
  color: #ff1a1a;
  font-weight: 400;
  font-size: 0.78rem;
  cursor: default;
}

/* Screens: login / register */

.phone__screen--auth {
  background: var(--brand-primary);
}

.scr-auth-header {
  padding: 30px 22px 6px;
}

.scr-auth-header svg {
  width: 22px;
  height: 22px;
}

.scr-auth-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 24px 24px;
  overflow-y: auto;
}

.scr-auth-body--center {
  text-align: center;
}

.scr-auth-title {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.scr-auth-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.scr-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
}

.scr-field__icon {
  color: var(--white);
  flex-shrink: 0;
}

.scr-field__icon svg {
  width: 20px;
  height: 20px;
}

.scr-field__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scr-field__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
}

.scr-field__placeholder {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.scr-field__toggle {
  flex-shrink: 0;
}

.scr-field__toggle svg {
  width: 18px;
  height: 18px;
}

.scr-field + .scr-separator,
.scr-auth-body .scr-separator {
  background: rgba(255, 255, 255, 0.18);
}

.scr-auth-link {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.scr-auth-link strong {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

.scr-auth-link--right {
  margin-top: 10px;
  text-align: right;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.scr-auth-link--center {
  margin-top: 14px;
  text-align: center;
}

.scr-auth-body .scr-cta {
  background: var(--white);
  color: var(--brand-primary);
}

.scr-avatar-wrap--center {
  position: static;
  margin: 20px auto 12px;
}

.scr-auth-username {
  margin: 0 0 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.scr-menu-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--brand-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.scr-menu-btn svg {
  width: 24px;
  height: 24px;
}

.scr-sheet {
  background: var(--white);
  border-radius: 26px 26px 0 0;
  padding: 14px 26px 26px;
  box-shadow: 0 -8px 24px rgba(1, 38, 21, 0.1);
  position: relative;
  z-index: 1;
}

.scr-sheet__handle {
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: #d9d9d9;
  margin: 0 auto 16px;
}

.scr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
}

.scr-row__text {
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-high);
}

.scr-row__text--placeholder {
  color: #939393;
}

.scr-row__text--fare {
  color: var(--brand-primary);
}

.scr-icon--fare {
  color: var(--brand-primary);
}

.scr-cta {
  width: 100%;
  border: none;
  border-radius: 15px;
  padding: 18px;
  margin-top: 14px;
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: default;
  box-shadow: 0 6px 16px rgba(1, 78, 42, 0.3);
}

/* Screen 2: trip in progress sheet */

.scr-trip {
  flex: 1;
  background: var(--white);
  border-radius: 26px 26px 0 0;
  margin-top: -26px;
  position: relative;
  z-index: 1;
  padding: 14px 26px 26px;
  box-shadow: 0 -8px 24px rgba(1, 38, 21, 0.1);
  overflow-y: auto;
}

.scr-trip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.scr-trip__header span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-high);
}

.scr-trip__header svg {
  width: 22px;
  height: 22px;
}

.scr-trip__vehicle {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-high);
}

.scr-trip__meta {
  margin: 0 0 14px;
  font-size: 0.85rem;
}

.scr-trip__code-label {
  color: var(--text-high);
  font-weight: 500;
}

.scr-trip__code-value {
  color: var(--brand-primary);
  font-weight: 700;
}

.scr-trip__distance {
  color: #939393;
}

.scr-trip__line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
}

.scr-trip__line svg {
  width: 20px;
  height: 20px;
}

.scr-trip__line-name {
  color: var(--brand-primary);
  font-size: 0.92rem;
}

.scr-trip__route-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}

.scr-trip__route-row svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.scr-trip__route-label {
  display: block;
  font-size: 0.72rem;
  color: #939393;
  font-weight: 500;
}

.scr-trip__route-address {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: var(--text-high);
}

.scr-trip__route-connector {
  width: 1px;
  height: 16px;
  background: #d9d9d9;
  margin-left: 9px;
}

.scr-trip__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.scr-btn {
  flex: 1;
  height: 52px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: default;
}

.scr-btn--outline-danger {
  background: transparent;
  border: 1.5px solid #ff1a1a;
  color: #ff1a1a;
}

.scr-btn--primary {
  background: var(--brand-primary);
  border: none;
  color: var(--white);
}

/* Screen 1.5: Pix payment */

.scr-pix-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 9, 0.64);
  display: flex;
  align-items: flex-end;
}

.scr-pix-sheet {
  position: relative;
  width: 100%;
  background: var(--white);
  border-radius: 25px 25px 0 0;
  padding: 40px 22px 30px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.scr-pix-close {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 33px;
  height: 33px;
  border-radius: 17px;
  background: #e5e5e5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scr-pix-close svg {
  width: 18px;
  height: 18px;
}

.scr-pix-title {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-high);
  line-height: 1.35;
}

.scr-pix-instruction {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-low);
}

.scr-pix-code {
  margin: 0 0 26px;
  font-size: 0.8rem;
  color: var(--brand-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scr-pix-amount {
  margin: 0 0 30px;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-high);
  text-align: center;
}

/* Screen 3: history list */

.scr-hist-header {
  padding: 30px 20px 16px;
  background: var(--white);
}

.scr-menu-btn--static {
  position: static;
  margin-bottom: 14px;
  box-shadow: none;
}

.scr-hist-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-high);
}

.scr-hist-list {
  flex: 1;
  background: #f1f1f1;
  padding: 8px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.scr-ride-card {
  position: relative;
  background: var(--white);
  border-radius: 15px;
  padding: 16px 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.scr-ride-card__fare {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-high);
}

.scr-ride-card__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  padding-right: 80px;
  font-size: 0.82rem;
  color: var(--text-medium);
}

.scr-ride-card__row svg {
  margin-top: 2px;
}

.scr-ride-card__row strong {
  color: var(--text-high);
  font-weight: 600;
}

.scr-ride-card__date {
  font-weight: 600;
  color: var(--text-high);
}

/* Screen 3: bottom tab bar */

.scr-tabbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: var(--white);
  padding: 14px 0 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.scr-tabbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scr-tabbar__item span {
  font-size: 0.85rem;
  color: var(--text-high);
}

.scr-tabbar__item--active span {
  font-weight: 700;
}

.scr-tabbar__icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scr-tabbar__icon svg {
  width: 22px;
  height: 22px;
}

.scr-tabbar__icon--active {
  background: var(--brand-primary);
}

/* Final CTA */

.cta {
  padding: 96px 0;
  background: var(--surface-01);
  text-align: center;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  margin: 20px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-primary);
}

.cta__text {
  max-width: 480px;
  margin: 0 0 32px;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */

.footer {
  background: var(--brand-primary-dark);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__logo {
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Lead modal */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal--open {
  display: flex;
}

.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 38, 21, 0.55);
}

.lead-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px 28px 28px;
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-low);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}

.lead-modal__close svg {
  width: 20px;
  height: 20px;
}

.lead-modal__title {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.lead-modal__subtitle {
  margin: 0 0 24px;
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.lead-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-modal__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-high);
}

.lead-modal__input {
  border: 1.5px solid var(--surface-02);
  background: var(--surface-01);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-high);
}

.lead-modal__input:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.lead-modal__message {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.85rem;
}

.lead-modal__message--success {
  color: var(--brand-primary);
}

.lead-modal__message--error {
  color: #d32f2f;
}

.lead-modal__submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Toast */

.toast {
  position: fixed;
  left: 50%;
  top: 28px;
  z-index: 1100;
  max-width: calc(100% - 40px);
  background: var(--brand-accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  text-align: center;
  transform: translate(-50%, -16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast--show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Responsive */

@media (max-width: 640px) {
  .hero {
    padding: 64px 0 72px;
  }

  .features,
  .screens,
  .cta {
    padding: 64px 0;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.9rem;
  }
}
