/* BeUnique — landing page styles */

:root {
  --bg: #ffffff;
  --bg-alt: #f3f3f3;
  --text: #111111;
  --text-secondary: #666666;
  --text-muted: #888888;
  --primary: #000000;
  --primary-text: #ffffff;
  --footer-bg: #121212;
  --footer-text: #f2f2f2;
  --footer-muted: #888888;
  --accent: #b35d00;
  --border: #e5e5e5;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --card-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-logo: 'Pacifico', cursive;
  --header-h: 76px;
  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section--alt {
  background: var(--bg-alt);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 0, 0, 0.03), transparent);
  pointer-events: none;
}

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

/* Logo */
.logo {
  font-family: var(--font-logo);
  font-size: 1.55rem;
  color: var(--primary);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.75; }

/* Icon boxes */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #fafafa, #ececec);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.icon-box svg {
  width: 32px;
  height: 32px;
  color: var(--text);
}

.icon-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.icon-box--dark {
  background: linear-gradient(145deg, #1a1a1a, #000);
  border-color: rgba(255, 255, 255, 0.08);
}

.icon-box--dark img { filter: invert(1); }

.icon-box--accent {
  background: linear-gradient(145deg, #fff8f0, #f5ebe0);
  border-color: rgba(179, 93, 0, 0.15);
}

.card:hover .icon-box {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.card:hover .icon-box:not(.icon-box--dark):not(.icon-box--accent) {
  background: var(--primary);
}

.card:hover .icon-box:not(.icon-box--dark):not(.icon-box--accent) svg {
  color: var(--primary-text);
}

.card:hover .icon-box:not(.icon-box--dark):not(.icon-box--accent) img {
  filter: brightness(0) invert(1);
}

/* Circular about icons */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.icon-circle img,
.icon-circle svg {
  width: 36px;
  height: 36px;
  object-fit: contain;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.icon-circle--light {
  background: linear-gradient(145deg, #ffffff, #e8e8e8);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.icon-circle--dark {
  background: radial-gradient(circle at 35% 30%, #333333, #000000);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-circle--dark img {
  filter: none;
}

.icon-circle--bex {
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.icon-circle--bex img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.about-card:hover .icon-circle {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.about-card:hover .icon-circle--bex {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-card:hover .icon-circle--light {
  background: var(--primary);
}

.about-card:hover .icon-circle--light img {
  filter: brightness(0) invert(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--primary-text);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 22px; font-size: 14px; }

/* Cards */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--card-shadow);
  padding: 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav a:hover { color: var(--text); }
.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.lang-switch__btn {
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}

.lang-switch__btn.is-active {
  background: var(--primary);
  color: var(--primary-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-switch__btn:not(.is-active):hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  padding-top: 56px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-text);
  background: var(--primary);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.035em;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0 0 36px;
  max-width: 460px;
  line-height: 1.7;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  height: 52px;
  padding: 0 18px 0 14px;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.store-badge:active {
  transform: translateY(0);
}

.store-badge__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-badge__icon--play {
  width: 24px;
  height: 24px;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge__small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.store-badge__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider {
  width: 100%;
  max-width: 720px;
  min-height: 480px;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  min-height: 460px;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}

.hero-phones {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 680px;
  padding-bottom: 8px;
}

.hero-phones__phone {
  display: block;
  width: auto;
  height: clamp(360px, 42vw, 520px);
  max-width: none;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-phones__phone--profile {
  position: relative;
  z-index: 2;
  margin-right: -72px;
}

.hero-phones__phone--bookings {
  position: relative;
  z-index: 1;
  transform: translateY(28px);
}

.hero-slider__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-slider__glow {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 78%;
  height: 38%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.hero-slider[data-theme="male"] .hero-slider__glow--blue {
  opacity: 0.55;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.75) 0%, rgba(59, 130, 246, 0.25) 45%, transparent 72%);
}

.hero-slider[data-theme="female"] .hero-slider__glow--rose {
  opacity: 0.55;
  background: radial-gradient(ellipse at center, rgba(244, 114, 182, 0.75) 0%, rgba(236, 72, 153, 0.28) 45%, transparent 72%);
}

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #d4d4d4;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), width 0.25s var(--ease);
}

.hero-slider__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #111111;
}

.hero-slider__dot[data-slide="0"].is-active {
  background: #2563eb;
}

.hero-slider__dot[data-slide="1"].is-active {
  background: #ec4899;
}

.hero__mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  user-select: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.news-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.news-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-alt);
  transition: transform 0.5s var(--ease);
}

.news-card:hover .news-card__img { transform: scale(1.05); }

.news-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.news-card:hover .news-card__img-wrap::after { opacity: 1; }

.news-card__body { padding: 24px; }

.news-card__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: gap 0.25s var(--ease), color 0.2s;
}

.news-card:hover .news-card__link {
  gap: 10px;
  color: var(--accent);
}

.contact-form.card:hover,
.faq.card:hover {
  transform: none;
  box-shadow: var(--card-shadow);
}
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.form-status {
  font-size: 14px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.form-status.is-success {
  color: var(--text);
  background: #f0f0f0;
}

.form-status.is-error {
  color: var(--accent);
  background: #fff8f0;
}

.contact-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 15px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
}

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

.contact-info__list a:hover { color: var(--text); text-decoration: underline; }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg);
  transition: all 0.25s var(--ease);
}

.social-row a:hover {
  background: var(--primary);
  color: var(--primary-text);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.faq { margin-top: 0; }

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 2px 0;
}

.faq__item:last-child { border-bottom: none; }

.faq__item summary {
  padding: 16px 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq__item summary:hover { color: var(--text-secondary); }
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: background 0.2s, transform 0.2s;
}

.faq__item[open] summary::after {
  content: '−';
  background: var(--primary);
  color: var(--primary-text);
}

.faq__item p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 72px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 36px;
  margin-bottom: 52px;
}

.footer__brand p {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--footer-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer__logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--footer-text);
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--footer-muted);
  margin-bottom: 11px;
  transition: color 0.2s, transform 0.2s;
}

.footer__col a:hover {
  color: var(--footer-text);
  transform: translateX(3px);
}

.footer__social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.footer__col--social {
  min-width: 168px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: var(--footer-text);
  border-radius: 12px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer__social a:hover {
  background: var(--footer-text);
  color: var(--footer-bg);
  border-color: var(--footer-text);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__copy {
  text-align: center;
  font-size: 13px;
  color: var(--footer-muted);
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid #2a2a2a;
}

/* Modal */
.modal {
  border: none;
  padding: 0;
  max-width: 580px;
  width: calc(100% - 32px);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal__inner { padding: 0; position: relative; }

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.modal__close:hover { transform: scale(1.08); }

.modal__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.modal__date,
.modal__title,
.modal__body { padding: 0 28px; }

.modal__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 0 10px;
}

.modal__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.modal__body {
  color: var(--text-secondary);
  margin: 0 0 28px;
  padding-bottom: 28px;
  line-height: 1.7;
}

/* Coming soon modal */
.modal--coming-soon {
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  animation: modalIn 0.35s var(--ease);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__inner--center {
  padding: 36px 32px 32px;
  text-align: center;
}

.coming-soon__stores {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.coming-soon__store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px dashed var(--border);
}

.coming-soon__store svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.coming-soon__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff8f0;
  border: 1px solid rgba(179, 93, 0, 0.2);
  border-radius: var(--radius-pill);
}

.coming-soon__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.3;
}

.coming-soon__text {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.coming-soon__btn {
  min-width: 140px;
}

.modal--coming-soon .modal__close {
  top: 14px;
  right: 14px;
}

/* Legal pages */
.legal-page {
  padding: calc(var(--header-h) + 48px) 0 96px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 28px;
  letter-spacing: -0.03em;
}

.legal-page pre {
  white-space: pre-wrap;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  background: var(--bg-alt);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.legal-page .back-link:hover { color: var(--text); }

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .about-card,
  .feature-card,
  .news-card {
    animation: fadeUp 0.7s var(--ease) both;
  }

  .about-card:nth-child(2) { animation-delay: 0.08s; }
  .about-card:nth-child(3) { animation-delay: 0.16s; }

  .feature-card:nth-child(2) { animation-delay: 0.05s; }
  .feature-card:nth-child(3) { animation-delay: 0.1s; }
  .feature-card:nth-child(4) { animation-delay: 0.15s; }
  .feature-card:nth-child(5) { animation-delay: 0.2s; }
  .feature-card:nth-child(6) { animation-delay: 0.25s; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 40px; }
  .hero__mockup { max-width: 500px; margin-inline: auto; }
  .about-grid,
  .features-grid,
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

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

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 28px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

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

  .nav a::after { display: none; }
  .nav a { padding: 12px 0; font-size: 17px; }

  .menu-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }

  .about-grid,
  .features-grid,
  .news-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero-phones__phone {
    height: clamp(320px, 38vw, 500px);
  }

  .hero-phones__phone--profile {
    margin-right: -48px;
  }

  .hero-phones__phone--bookings {
    transform: translateY(18px);
  }

  .hero-slider {
    min-height: 380px;
  }

  .hero-slider__track {
    min-height: 360px;
  }

  .hero-phones {
    animation: none;
  }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { width: min(100% - 32px, var(--container)); }
  .card { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
}
