/* Prime Motors — premium landing */
:root {
  --bg-deep: #080e16;
  --bg-section: #0b121c;
  --bg-elevated: #101a27;
  --bg-card: rgba(12, 20, 32, 0.82);
  --bg-glass: rgba(8, 16, 28, 0.72);
  --bg-card-border: rgba(120, 155, 185, 0.22);
  --text-primary: #f5f8fb;
  --text-secondary: #a3b8cb;
  --text-muted: #6f879c;
  --accent: #4d8fc4;
  --accent-hover: #5fa3d6;
  --accent-cyan: #82cce8;
  --accent-glow: rgba(77, 143, 196, 0.35);
  --accent-light: #b5ddf5;
  --overlay: rgba(6, 12, 20, 0.55);
  --overlay-strong: rgba(6, 12, 20, 0.9);
  --header-h: 76px;
  --container: min(1200px, calc(100% - 48px));
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

::selection {
  background: rgba(77, 143, 196, 0.35);
  color: var(--text-primary);
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-card-border), transparent);
  opacity: 0.6;
}

.hero::before,
.test-drive::before,
.contacts::before {
  display: none;
}

.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section__eyebrow--center {
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section__title--light {
  font-weight: 500;
  color: var(--text-secondary);
}

.section__title--center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.section__title--spaced {
  margin-bottom: 56px;
}

.section__title--ruled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
  margin-bottom: 32px;
}

.section__title--ruled::before,
.section__title--ruled::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--bg-card-border);
}

.section__title--ruled span {
  white-space: nowrap;
  max-width: 720px;
  text-align: center;
}

@media (max-width: 720px) {
  .section__title--ruled span {
    white-space: normal;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.reveal.is-visible .reveal-child,
.reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .reveal-child:nth-child(2) {
  transition-delay: 0.15s;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__mark {
  flex-shrink: 0;
  width: 2px;
  height: 34px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 55%, transparent 100%);
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  white-space: nowrap;
}

.logo__subtitle {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.partner-logo {
  width: auto;
  opacity: 0.92;
  object-fit: contain;
  transition: opacity var(--transition);
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo--voyah {
  height: 14px;
  width: auto;
  max-width: 88px;
}

.partner-logo--evolute {
  height: 16px;
  width: auto;
  max-width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform 0.2s ease,
    box-shadow var(--transition);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #3d7aad 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 8px 32px rgba(77, 143, 196, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(126, 192, 232, 0.55);
}

.btn--outline:hover {
  background: rgba(90, 143, 184, 0.12);
  border-color: var(--accent-cyan);
}

.btn--sm {
  padding: 11px 24px;
  font-size: 12px;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8, 15, 24, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), background var(--transition), border-color var(--transition);
}

.header--scrolled {
  height: 64px;
  background: rgba(8, 15, 24, 0.95);
  border-bottom-color: var(--bg-card-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 100%;
  gap: 20px;
}

.header__brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}

.header__brand:hover {
  opacity: 0.92;
}

.nav {
  justify-self: center;
}

.header__contacts {
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.header__cta {
  margin-top: 6px;
  display: none;
}

.header__partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
  border-left: 1px solid var(--bg-card-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
}

.header--scrolled .header__partner-logos {
  padding: 6px 14px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  white-space: nowrap;
  padding: 4px 0;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width var(--transition);
}

.nav__list a:hover {
  color: var(--text-primary);
}

.nav__list a:hover::after,
.nav__list a.is-active::after {
  width: 100%;
}

.nav__list a.is-active {
  color: var(--text-primary);
}

.header__contacts {
  display: flex;
  flex-shrink: 0;
}

.header__phone {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.header__phone:hover {
  color: var(--accent-light);
}

.header__address {
  font-size: 11px;
  color: var(--text-muted);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/hero-bg.jpg") 38% 40% / cover no-repeat;
  transform: scaleX(-1);
  transition: transform 8s ease-out;
}

.hero:hover .hero__bg {
  transform: scaleX(-1) scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 11, 18, 0.92) 0%, rgba(6, 11, 18, 0.72) 42%, rgba(6, 11, 18, 0.25) 62%, transparent 85%),
    linear-gradient(0deg, rgba(8, 14, 22, 0.85) 0%, transparent 38%);
}

.hero__stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0 32px;
  min-height: calc(100vh - var(--header-h) - 72px);
}

.hero__content {
  max-width: 620px;
}

.hero__badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(77, 143, 196, 0.15);
  border: 1px solid rgba(130, 204, 232, 0.25);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.hero__title-line {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.hero__title-line--cyan {
  color: var(--accent-cyan);
}

.hero__title-line--sub {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  text-transform: none;
  color: var(--text-secondary);
  margin-top: 6px;
  letter-spacing: 0;
}

.hero__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(14, 24, 38, 0.88) 0%, rgba(8, 14, 24, 0.92) 100%);
  border: 1px solid rgba(130, 180, 210, 0.2);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  border-color: rgba(130, 204, 232, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.offer-card--voyah {
  border-top: 2px solid rgba(77, 143, 196, 0.6);
}

.offer-card--evolute {
  border-top: 2px solid rgba(130, 204, 232, 0.45);
}

.offer-card__head {
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(120, 155, 185, 0.15);
  background: rgba(0, 0, 0, 0.15);
}

.offer-card__logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.offer-card__logo--evolute {
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.offer-card__body {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card__line,
.offer-card__bonus {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.offer-card__bonus {
  padding: 10px 12px;
  margin: 0 -4px;
  background: rgba(77, 143, 196, 0.12);
  border: 1px solid rgba(130, 204, 232, 0.15);
  border-radius: 8px;
}

.offer-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}

.offer-card__price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  text-align: right;
  letter-spacing: -0.02em;
}

.offer-card__price--accent {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.hero__trust {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(130, 180, 210, 0.12);
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.75) 0%, rgba(6, 11, 18, 0.92) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
}

.hero__trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 20px 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}

.hero__trust-item:not(:last-child) {
  border-right: 1px solid rgba(120, 155, 185, 0.12);
}

.hero__trust-item:hover {
  background: rgba(77, 143, 196, 0.08);
}

.hero__trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-cyan);
  background: rgba(77, 143, 196, 0.12);
  border: 1px solid rgba(130, 204, 232, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.hero__trust-item:hover .hero__trust-icon {
  border-color: rgba(130, 204, 232, 0.45);
  box-shadow: 0 6px 20px rgba(77, 143, 196, 0.2);
  transform: translateY(-2px);
}

.hero__trust-icon svg {
  width: 26px;
  height: 26px;
}

.hero__trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero__trust-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__trust-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-light);
  white-space: nowrap;
}

/* About */
.about {
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(77, 143, 196, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(77, 143, 196, 0.05), transparent),
    var(--bg-section);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about__visual {
  margin: 0;
}

.about__image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(120, 155, 185, 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__image-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(77, 143, 196, 0.15);
}

.about__image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.about__image-frame:hover .about__image {
  transform: scale(1.03);
}

.about__image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 42%,
    transparent 60%,
    rgba(77, 143, 196, 0.08) 100%
  );
  pointer-events: none;
}

.about__caption {
  margin-top: 10px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  opacity: 0.85;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.about__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about__title-accent {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--text-secondary);
}

.about__lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 32px;
}

.about-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(120, 155, 185, 0.18);
  border-bottom: 1px solid rgba(120, 155, 185, 0.18);
}

.about-metric {
  position: relative;
  padding: 4px 14px;
}

.about-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 84%;
  background: linear-gradient(180deg, transparent, rgba(120, 155, 185, 0.28), transparent);
}

.about-metric:first-child {
  padding-left: 0;
}

.about-metric:last-child {
  padding-right: 0;
}

.about-metric__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.about-metric__suffix {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.about-metric__plus {
  font-size: 0.75em;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-left: 1px;
}

.about-metric__label {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-muted);
}

.about-service {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
}

.about-service__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(77, 143, 196, 0.12);
  color: var(--accent-cyan);
}

.about-service__icon svg {
  width: 18px;
  height: 18px;
}

.about-service__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-service__text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Benefits */
.benefits {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(77, 143, 196, 0.08), transparent 60%),
    var(--bg-deep);
}

.benefits__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.benefits__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.benefits__title-accent {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  color: var(--text-secondary);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 24px 22px 26px;
  text-align: left;
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(16, 26, 40, 0.85) 0%, rgba(8, 14, 22, 0.65) 100%);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(77, 143, 196, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.benefit-card:hover {
  border-color: rgba(130, 204, 232, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(130, 204, 232, 0.35);
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: #b8e8f8;
  background: rgba(77, 143, 196, 0.18);
  border: 1px solid rgba(130, 204, 232, 0.28);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover .benefit-card__icon {
  transform: translateY(-2px);
  color: #dff4fc;
  border-color: rgba(130, 204, 232, 0.5);
  box-shadow: 0 8px 24px rgba(77, 143, 196, 0.25);
}

.benefit-icon {
  display: block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.3;
}

.benefit-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: auto;
}

.reveal.is-visible .benefit-card.reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal.is-visible .benefit-card.reveal-child:nth-child(2) { transition-delay: 0.1s; }
.reveal.is-visible .benefit-card.reveal-child:nth-child(3) { transition-delay: 0.15s; }
.reveal.is-visible .benefit-card.reveal-child:nth-child(4) { transition-delay: 0.2s; }
.reveal.is-visible .benefit-card.reveal-child:nth-child(5) { transition-delay: 0.25s; }

/* Brand cards */
.brands {
  background:
    radial-gradient(ellipse 55% 45% at 0% 20%, rgba(77, 143, 196, 0.07), transparent),
    radial-gradient(ellipse 45% 40% at 100% 80%, rgba(77, 143, 196, 0.06), transparent),
    var(--bg-deep);
}

.brands__header {
  text-align: center;
  margin-bottom: 44px;
}

.brands__header .section__eyebrow {
  margin-bottom: 12px;
}

.brands__header .section__title {
  margin-bottom: 0;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.brand-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 24, 38, 0.95) 0%, rgba(8, 14, 22, 0.98) 100%);
  border: 1px solid var(--bg-card-border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.brand-card--voyah {
  border-top: 3px solid rgba(77, 143, 196, 0.7);
}

.brand-card--evolute {
  border-top: 3px solid rgba(130, 204, 232, 0.5);
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130, 204, 232, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.brand-card__head {
  padding: 24px 26px 0;
  min-height: 108px;
}

.brand-card__logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 120px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
  min-height: 26px;
}

.brand-card__logo--evolute {
  height: 22px;
  max-width: 140px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.brand-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  min-height: calc(1.4em * 2);
}

.brand-card__stage {
  position: relative;
  margin: 20px 0 0;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.brand-card__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 14, 22, 0.65) 100%);
  pointer-events: none;
  z-index: 2;
}

.brand-card__car {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.brand-card--voyah .brand-card__car {
  object-position: 52% 42%;
}

.brand-card--evolute .brand-card__car {
  object-position: 72% 52%;
  transform: scale(1.12);
}

.brand-card--voyah:hover .brand-card__car {
  transform: scale(1.05);
}

.brand-card--evolute:hover .brand-card__car {
  transform: scale(1.17);
}

.brand-card__features {
  margin: 0;
  padding: 20px 26px 0;
  list-style: none;
}

.brand-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 10px;
}

.brand-card__features li:last-child {
  margin-bottom: 0;
}

.brand-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
  transform: rotate(-45deg);
}

.brand-card__foot {
  margin-top: auto;
  padding: 22px 26px 26px;
}

.brand-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-card__metric {
  padding: 14px 16px;
  background: rgba(6, 12, 20, 0.55);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
}

.brand-card__metric--accent {
  background: rgba(77, 143, 196, 0.1);
  border-color: rgba(130, 204, 232, 0.2);
}

.brand-card__metric-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.brand-card__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.brand-card__metric--accent .brand-card__metric-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.brand-card__cta {
  font-size: 12px;
  padding: 14px 20px;
}

/* Test drive */
.test-drive {
  position: relative;
  padding: 96px 0 120px;
  min-height: 520px;
  overflow: hidden;
}

.test-drive__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/test-drive-bg.jpg") 52% 78% / cover no-repeat;
  z-index: 0;
}

.test-drive__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(6, 12, 20, 0.88) 0%,
      rgba(6, 12, 20, 0.5) 38%,
      rgba(6, 12, 20, 0.25) 62%,
      rgba(6, 12, 20, 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 12, 20, 0.25) 0%,
      transparent 22%,
      transparent 72%,
      rgba(11, 18, 28, 0.12) 92%,
      var(--bg-section) 100%
    );
}

.test-drive__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 400px);
  gap: 48px;
  align-items: center;
}

.test-drive__info {
  padding-right: 16px;
}

.test-drive__form-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.test-drive__info .section__eyebrow {
  color: var(--accent-light);
}

.test-drive__info .section__title {
  margin-bottom: 20px;
}

.test-drive__lead {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
  max-width: 38ch;
}

.test-drive__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.test-drive__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.test-drive__form {
  padding: 32px 28px;
  background: rgba(8, 14, 22, 0.82);
  border: 1px solid rgba(130, 204, 232, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.test-drive__form .form-field {
  margin-bottom: 14px;
}

.test-drive__form .btn--full {
  margin-top: 4px;
}

.test-drive__vk-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-field {
  display: block;
  margin-bottom: 20px;
}

.form-field--plain input,
.form-field--plain select {
  width: 100%;
  padding: 15px 16px;
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(4, 10, 18, 0.65);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field--plain input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.form-field--plain input:focus,
.form-field--plain select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-field__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field__label--static {
  margin-bottom: 10px;
}

.form-field--float {
  position: relative;
}

.form-field--float .form-field__label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.form-field--float input:focus + .form-field__label,
.form-field--float input:not(:placeholder-shown) + .form-field__label {
  top: 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: rgba(4, 10, 18, 0.6);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field--float input {
  padding-top: 22px;
  padding-bottom: 10px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: rgba(4, 10, 18, 0.85);
}

.form-field select {
  cursor: pointer;
  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 fill='%236b8499' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-field select option {
  background: var(--bg-deep);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.55;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox a:hover {
  color: var(--text-primary);
}

.test-drive__form .btn {
  margin-top: 10px;
}

.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: var(--radius);
  text-align: center;
}

.form-message--success {
  color: #9ed4b8;
  background: rgba(60, 120, 90, 0.2);
  border: 1px solid rgba(100, 180, 130, 0.3);
}

.form-message--error {
  color: #e8a8a8;
  background: rgba(120, 60, 60, 0.2);
  border: 1px solid rgba(180, 100, 100, 0.3);
}

/* Contacts */
.contacts {
  background: var(--bg-section);
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(10, 18, 30, 0.55);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
}

.contacts__info .section__title {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 8px;
}

.contact-block {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  row-gap: 4px;
}

.contact-block__icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--accent-cyan);
}

.contact-block__icon svg {
  width: 100%;
  height: 100%;
}

.contact-block__value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  grid-column: 2;
}

.contact-block__value--sub {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  grid-column: 2;
}

a.contact-block__value:hover {
  color: var(--accent-light);
}

.contacts__route {
  align-self: flex-start;
  margin-top: 6px;
}

.contacts__map {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  filter: grayscale(0.4) brightness(0.75) contrast(1.05);
  transition: filter var(--transition);
}

.contacts__map:hover {
  filter: grayscale(0.25) brightness(0.85) contrast(1.05);
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* Footer */
.footer {
  background: rgba(4, 10, 18, 0.98);
  border-top: 1px solid var(--bg-card-border);
  padding-top: 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px 40px;
  padding-bottom: 28px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__partner-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--bg-card-border);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  justify-self: center;
}

.footer__nav a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--text-primary);
}

.footer__social {
  display: flex;
  gap: 12px;
  justify-self: end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  border: 1px solid var(--bg-card-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: rgba(95, 130, 153, 0.15);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0 36px;
  border-top: 1px solid var(--bg-card-border);
}

.footer__bottom p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__legal {
  max-width: 280px;
  text-align: right;
}

.contacts {
  background: var(--bg-section);
}

.contacts .section__title {
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 1200px) {
  .benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav__list {
    gap: 20px;
  }

  .header__partner-logos {
    display: none;
  }

  .header__cta {
    display: inline-flex;
  }

  .hero__stage {
    min-height: auto;
  }

}

@media (max-width: 960px) {
  .section {
    padding: 72px 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__cta {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 15, 24, 0.98);
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--bg-card-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list li {
    width: 100%;
  }

  .nav__list a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(120, 150, 175, 0.1);
  }

  .header__contacts {
    display: none;
  }

  .hero__trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero__trust-item {
    justify-content: flex-start;
    border-right: none !important;
    border: 1px solid rgba(120, 155, 185, 0.1);
    background: rgba(10, 18, 28, 0.4);
  }

  .about__grid,
  .test-drive__grid,
  .brands__grid,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    order: -1;
  }

  .about__title-accent {
    display: inline;
    margin-top: 0;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .benefit-card {
    min-height: 190px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__nav {
    justify-self: start;
  }

  .footer__social {
    justify-self: start;
  }

  .footer__legal {
    text-align: left;
    max-width: none;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 0;
  }

  .about-metric {
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center;
  }

  .about-metric__value {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    min-width: 5.5ch;
  }

  .about-metric__label {
    grid-column: 2;
  }

  .about-metric:not(:last-child)::after {
    display: none;
  }

  .about-metric:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(120, 155, 185, 0.12);
  }
}

@media (max-width: 600px) {
  :root {
    --container: min(1240px, 100% - 36px);
  }

  .section {
    padding: 56px 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__offers {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero__trust-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__trust-title,
  .hero__trust-desc {
    white-space: normal;
  }

  .benefits__title-accent {
    display: inline;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: auto;
  }

  .brand-card__metrics {
    grid-template-columns: 1fr;
  }

  .test-drive {
    min-height: 460px;
    padding: 72px 0 96px;
  }

  .test-drive__bg {
    background-position: 50% 84%;
  }

  .test-drive__form {
    padding: 28px 22px;
  }
}

/* UI icons (sprite in index.html) */
.ui-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon--fill,
.ui-icon--fill * {
  fill: currentColor;
  stroke: none;
}

.hero__trust-icon .ui-icon {
  stroke-width: 1.65;
}


/* Contact notification modal */
.notify-fab-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-end;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.notify-fab-callout {
  display: flex;
  align-items: center;
  gap: 4px;
  order: 1;
  animation: fabHintNudge 1.4s ease-in-out infinite;
}

.notify-fab-hint {
  position: relative;
  flex-shrink: 0;
  padding: 10px 14px 10px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #1e3550 0%, #152a40 100%);
  border: 1px solid rgba(130, 204, 232, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.notify-fab-hint::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #1a2f48;
  filter: drop-shadow(1px 0 0 rgba(130, 204, 232, 0.25));
}

.notify-fab-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 36px;
  height: 14px;
  color: var(--accent-light);
  filter: drop-shadow(0 0 6px rgba(130, 204, 232, 0.45));
}

.notify-fab-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.notify-fab-arrow__line {
  stroke-dasharray: 22;
  stroke-dashoffset: 0;
  animation: fabArrowDraw 2s ease-in-out infinite;
}

.notify-fab-arrow__head {
  animation: fabArrowPulse 1.4s ease-in-out infinite;
}

.notify-fab-arrow__dot {
  animation: fabArrowDot 1.4s ease-in-out infinite;
}

@keyframes fabHintNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

@keyframes fabArrowDraw {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: -4;
    opacity: 0.85;
  }
}

@keyframes fabArrowPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

@keyframes fabArrowDot {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.notify-fab {
  order: 2;
  flex-shrink: 0;
  position: static;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(130, 204, 232, 0.3);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #3a6f96 100%);
  color: #fff;
  box-shadow: 0 8px 28px var(--accent-glow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.notify-fab svg {
  width: 26px;
  height: 26px;
}

.notify-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(26, 45, 66, 0.55);
}

.notify-fab-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.notify-fab-wrap.is-hidden .notify-fab-callout {
  animation: none;
}

.notify {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.notify[hidden] {
  display: none;
}

.notify.is-open {
  display: flex;
}

.notify__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 24, 0.65);
  backdrop-filter: blur(4px);
  animation: notifyFadeIn 0.3s ease;
}

.notify__card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(15, 28, 43, 0.22);
  padding: 36px 32px 28px;
  animation: notifySlideUp 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  color: #1a2d42;
}

@keyframes notifyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes notifySlideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notify__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #8a9bb0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.notify__close:hover {
  background: #f0f4f8;
  color: #1a2d42;
}

.notify__head {
  text-align: center;
  margin-bottom: 20px;
}

.notify__countdown {
  text-align: center;
  margin-bottom: 24px;
  padding: 18px 16px 20px;
  border-bottom: 1px solid #f0d4d4;
}

.notify__countdown--hot {
  background: linear-gradient(180deg, #fff5f2 0%, #ffe8e0 100%);
  border: 1px solid #f5b8a8;
  border-radius: 14px;
  border-bottom: 1px solid #f5b8a8;
  box-shadow: 0 0 0 1px rgba(232, 90, 60, 0.08), 0 8px 24px rgba(220, 72, 48, 0.12);
  animation: notifyHotGlow 2.4s ease-in-out infinite;
  padding: 16px 16px 18px;
}

@keyframes notifyHotGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(232, 90, 60, 0.08), 0 8px 24px rgba(220, 72, 48, 0.1);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(232, 90, 60, 0.2), 0 10px 28px rgba(220, 72, 48, 0.2);
  }
}

.notify__countdown-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #b82e14;
  margin-bottom: 8px;
}

.notify__countdown-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c96a52;
  margin-bottom: 14px;
}

.notify__countdown-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.notify__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.notify__countdown--hot .notify__countdown-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: #c43318;
  letter-spacing: 0.02em;
}

.notify__countdown--hot .notify__countdown-unit:last-child .notify__countdown-num {
  animation: notifySecPulse 1s ease-in-out infinite;
}

@keyframes notifySecPulse {
  0%,
  100% {
    transform: scale(1);
    color: #c43318;
  }
  50% {
    transform: scale(1.06);
    color: #e04a28;
  }
}

.notify__countdown--hot .notify__countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  color: #d85a3c;
  user-select: none;
}

.notify__countdown--hot .notify__countdown-label {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d0806a;
}

.notify__head--compact {
  margin-bottom: 20px;
}

.notify__head-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f8;
  border-radius: 50%;
  color: #1a2d42;
}

.notify__head-icon svg {
  width: 28px;
  height: 28px;
}

.notify__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #1a2d42;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.notify__subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #3d6b8c;
  margin-bottom: 12px;
}

.notify__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #8a9bb0;
  max-width: 380px;
  margin: 0 auto;
}

.notify__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.notify-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notify-option:hover {
  border-color: #d0dce8;
  box-shadow: 0 4px 16px rgba(26, 45, 66, 0.06);
}

.notify-option__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f8;
  border-radius: 50%;
  color: #1a2d42;
}

.notify-option__icon svg {
  width: 22px;
  height: 22px;
}

.notify-option__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.notify-option__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2d42;
}

.notify-option__hint {
  font-size: 12px;
  line-height: 1.45;
  color: #8a9bb0;
}

.notify-option__btn {
  flex-shrink: 0;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #1a2d42;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.notify-option__btn:hover {
  background: #243a55;
  transform: translateY(-1px);
}

.notify-option__btn--hot {
  background: linear-gradient(135deg, #e85a38 0%, #cf3a1e 100%);
  box-shadow: 0 4px 16px rgba(207, 58, 30, 0.4);
  animation: notifyBtnPulse 2s ease-in-out infinite;
}

.notify-option__btn--hot:hover {
  background: linear-gradient(135deg, #f06a48 0%, #e04424 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 58, 30, 0.5);
}

@keyframes notifyBtnPulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(207, 58, 30, 0.35);
  }
  50% {
    box-shadow: 0 6px 22px rgba(207, 58, 30, 0.55);
  }
}

.notify-option__btn--full {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  margin-top: 4px;
}

.notify__legal {
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: #a8b8c8;
}

.notify__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #3d6b8c;
  background: none;
  border: none;
  cursor: pointer;
}

.notify__back:hover {
  color: #1a2d42;
}

.notify__panel[hidden] {
  display: none;
}

.notify-field__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.notify-field {
  display: block;
  margin-bottom: 14px;
}

.notify-field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5a6d82;
  margin-bottom: 6px;
}

.notify-field input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #1a2d42;
  background: #f5f8fb;
  border: 1px solid #e0e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notify-field input:focus {
  border-color: #3d6b8c;
  box-shadow: 0 0 0 3px rgba(61, 107, 140, 0.15);
  background: #fff;
}

.notify__panel--callback {
  position: relative;
  min-height: 420px;
}

.notify-callback-panel__inner {
  transition: opacity 0.2s ease;
}

.notify__panel--callback.is-success .notify-callback-panel__inner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.notify-callback-form {
  position: relative;
}

.notify-callback-success {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  animation: notifySuccessIn 0.35s ease;
}

.notify__panel--callback.is-success .notify-callback-success {
  display: flex;
}

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

.notify-callback-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e8f8ee;
  color: #2d7a4f;
  box-shadow: 0 0 0 8px rgba(45, 122, 79, 0.08);
}

.notify-callback-success__icon .ui-icon {
  width: 32px;
  height: 32px;
}

.notify-callback-success__title {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 700;
  color: #1a2d42;
}

.notify-callback-success__text {
  margin: 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
  color: #5a6d82;
}

.notify-callback-success__btn {
  margin-top: 8px;
  background: #2d7a4f;
}

.notify-callback-success__btn:hover {
  background: #256841;
}

@keyframes notifySuccessIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notify-callback-form .notify__legal {
  margin-top: 12px;
}

.notify-form-msg {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: #2d7a4f;
}

.notify-form-msg--error {
  color: #c94a3a;
}

body.notify-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .notify__card {
    padding: 28px 20px 22px;
    border-radius: 16px;
  }

  .notify__title {
    font-size: 22px;
  }

  .notify-option {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  .notify-option__btn {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .notify-fab-wrap {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .notify-fab {
    width: 52px;
    height: 52px;
  }

  .notify-fab-hint {
    font-size: 12px;
    padding: 9px 10px 9px 12px;
  }

  .notify-fab-arrow {
    width: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-child,
  .hero__bg,
  .btn,
  .benefit-card,
  .brand-card__car,
  .notify__card,
  .notify__backdrop,
  .notify__countdown--hot,
  .notify__countdown--hot .notify__countdown-unit:last-child .notify__countdown-num,
  .notify-option__btn--hot,
  .notify-fab-callout,
  .notify-fab-arrow__line,
  .notify-fab-arrow__head,
  .notify-fab-arrow__dot {
    animation: none;
  }

  .hero:hover .hero__bg {
    transform: scaleX(-1);
  }
}
