/* ============================================
   1in.pt — Premium Auto Dealer
   ============================================ */

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --bg-section-dark: #08080d;
  --surface: #16161f;
  --border: #1e1e2a;
  --border-light: #2a2a38;
  --text: #e8e8ed;
  --text-muted: #8888a0;
  --text-dim: #55556a;
  --accent: #f0c040;
  --accent-hover: #ffd060;
  --accent-glow: rgba(240, 192, 64, 0.15);
  --accent2: #4090ff;
  --gradient-accent: linear-gradient(135deg, #f0c040, #ff9020);
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #101025 50%, #0a0a1a 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 32px rgba(240, 192, 64, 0.2);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --nav-h: 72px;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Section */
.section { padding: 100px 0; }
.section--dark { background: var(--bg-section-dark); }

.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(240, 192, 64, 0.25);
  border-radius: 100px;
  background: var(--accent-glow);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--gradient-accent);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 40px rgba(240, 192, 64, 0.35); }
.btn--outline {
  border: 2px solid var(--border-light);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--accent {
  background: var(--gradient-accent);
  color: #000;
  font-weight: 700;
}
.btn--accent:hover { transform: translateY(-1px); }
.btn--ghost {
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 14px;
}
.btn--ghost:hover { color: var(--accent); }

.accent { color: var(--accent); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--nav-h);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.nav--scrolled { border-bottom-color: var(--border); background: rgba(10, 10, 15, 0.95); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  filter: invert(1);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }

/* Language switcher — dropdown */
.lang-switch {
  position: relative;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.lang-current:hover { border-color: var(--border-light); color: var(--text); }
.lang-current::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 2px;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  overflow: hidden;
}
.lang-switch.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
.lang-btn:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.lang-btn.active { color: var(--accent); background: var(--accent-glow); }
.lang-btn .lang-flag { font-size: 18px; line-height: 1; }

/* Section view-all */
.section__view-all { text-align: center; margin-top: 40px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  position: relative;
  z-index: 1002;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gradient-hero);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(240, 192, 64, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(64, 144, 255, 0.04) 0%, transparent 70%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
}
.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.8;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__title--accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats { display: flex; gap: 40px; }
.hero__stat { text-align: left; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.hero__stat-num::after { content: '+'; font-size: 0.7em; }
.hero__stat-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Hero Live Feed */
.hero__feed {
  width: 100%;
  max-width: 520px;
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(240, 192, 64, 0.06);
  backdrop-filter: blur(12px);
}
.feed__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.feed__live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: feedPulse 2s ease-in-out infinite;
}
@keyframes feedPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.feed__title {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.feed__cards {
  padding: 16px;
  position: relative;
  min-height: 300px;
}
.feed__card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: feedIn 0.5s ease forwards;
}
.feed__card:nth-child(2) { animation-delay: 0.15s; }
.feed__card:nth-child(3) { animation-delay: 0.3s; }
@keyframes feedIn { to { opacity: 1; transform: translateY(0); } }

.feed__card-img {
  width: 100px; height: 75px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface);
}
.feed__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feed__card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text-dim);
  background: linear-gradient(135deg, var(--surface), var(--bg-card));
  letter-spacing: 1px;
}
.feed__card-body { flex: 1; min-width: 0; }
.feed__card-source {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.feed__card-source--auction { background: rgba(240,192,64,0.15); color: var(--accent); }
.feed__card-source--de { background: rgba(64,144,255,0.15); color: var(--accent2); }
.feed__card-source--pt { background: rgba(34,197,94,0.15); color: #22c55e; }
.feed__card-source--stand { background: rgba(34,197,94,0.2); color: #22c55e; }
.feed__card-source--olx { background: rgba(0,160,220,0.15); color: #00a0dc; }
.feed__card-source--sv { background: rgba(255,80,0,0.15); color: #ff6020; }
.feed__card-source--auto1 { background: rgba(255,100,50,0.12); color: #ff8040; }
.feed__card-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.feed__card-prices {
  display: flex; align-items: baseline; gap: 8px;
}
.feed__card-price {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--accent);
}
.feed__card-market {
  font-size: 12px; color: var(--text-dim);
  text-decoration: line-through;
}
.feed__card-save {
  font-size: 11px; font-weight: 600;
  color: #22c55e;
  margin-top: 2px;
}
.feed__card-highlight {
  font-size: 12px; font-weight: 600;
  margin-top: 3px;
}
.feed__card-highlight--price { color: #22c55e; }
.feed__card-highlight--km { color: var(--accent2); }
.feed__card-highlight--cond { color: #22c55e; }
.feed__card-highlight--feat { color: var(--accent); }
.feed__bar {
  height: 3px;
  background: var(--border);
  overflow: hidden;
}
.feed__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  transition: width 0.1s linear;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: all var(--transition);
  animation: scrollBounce 2s infinite;
}
.hero__scroll-btn:hover { border-color: var(--accent); color: var(--accent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.services__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card--wide { grid-column: span 2; }

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  padding: 12px;
  background: var(--accent-glow);
  border-radius: var(--radius);
  color: var(--accent);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link:hover { gap: 8px; }

/* ============================================
   BONUSES
   ============================================ */
.bonuses { padding: 60px 0; background: linear-gradient(135deg, rgba(240,192,64,0.04), rgba(64,144,255,0.03)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bonuses__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bonus {
  text-align: center;
  padding: 28px 16px;
}
.bonus__icon { font-size: 2rem; margin-bottom: 12px; }
.bonus h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.bonus p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .bonuses__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bonus { padding: 20px 12px; }
}
@media (max-width: 480px) {
  .bonuses__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ANALYTICS
   ============================================ */
.analytics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.analytics__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.analytics__card:hover {
  border-color: rgba(240, 192, 64, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(240, 192, 64, 0.08);
}
.analytics__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.analytics__card-icon svg { width: 100%; height: 100%; }
.analytics__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.analytics__card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   INVENTORY
   ============================================ */
.inventory__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--border-light); color: var(--text); }
.filter-btn.active {
  background: var(--gradient-accent);
  color: #000;
  border-color: transparent;
  font-weight: 600;
}

.inventory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.car-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}
.car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card:hover .car-card__image img { transform: scale(1.05); }
/* Card image counter */
.car-card__count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,0,0,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}
.car-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--gradient-accent);
  color: #000;
}
.car-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.car-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.car-card__meta {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.car-card__meta span { display: flex; align-items: center; gap: 4px; }
.car-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.car-card__price-note {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

/* ============================================
   PROCESS
   ============================================ */
.process__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--border) 100%);
}
.process__step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}
.process__num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.process__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process__body p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CASES
   ============================================ */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.case-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}
.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card__sold {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: #22c55e;
  color: #fff;
}
.case-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.case-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-card__meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.case-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: pre-line;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-card__date {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.about__list { display: flex; flex-direction: column; gap: 14px; }
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
}
.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border);
}
.about__image {
  width: 100%;
  border-radius: var(--radius-xl);
}

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact__info {
  display: flex;
  flex-direction: column;
}
.contact__info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact__channels { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact__channel:hover { border-color: var(--border-light); transform: translateX(4px); }
.contact__channel-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.contact__channel-icon--wa { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.contact__channel-icon--tg { background: rgba(0, 136, 204, 0.15); color: #0088cc; }
.contact__channel-icon--phone { background: rgba(64, 144, 255, 0.15); color: var(--accent2); }
.contact__channel-icon--email { background: rgba(240, 192, 64, 0.15); color: var(--accent); }
.contact__channel-icon--map { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.contact__channel strong { display: block; font-size: 15px; }
.contact__channel span { font-size: 13px; color: var(--text-muted); }

.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}
.form__group { margin-bottom: 16px; }
.form__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}
.form__input:focus { border-color: var(--accent); }
.form__input::placeholder { color: var(--text-dim); }
.form__select { appearance: none; cursor: pointer; }
.form__select option { background: var(--bg-card); color: var(--text); }
.form__textarea {
  resize: vertical;
  min-height: 100px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.form__textarea::-webkit-scrollbar { width: 6px; }
.form__textarea::-webkit-scrollbar-track { background: transparent; }
.form__textarea::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }

/* Phone input with country code */
.form__phone-group {
  display: flex;
  gap: 8px;
}
.form__phone-code {
  width: 110px !important;
  flex-shrink: 0;
  padding: 14px 8px !important;
  text-align: center;
  font-size: 14px;
}
.form__phone-num { flex: 1; }
.form__recaptcha { display: flex; justify-content: center; margin-bottom: 8px; }
/* Hide number spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }
.form__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
.form__note a { color: var(--accent); text-decoration: underline; }
.form__or {
  text-align: center; color: var(--text-dim); font-size: 13px;
  margin: 16px 0; position: relative;
}
.form__or::before, .form__or::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 60px); height: 1px; background: var(--border);
}
.form__or::before { left: 0; }
.form__or::after { right: 0; }
.form__direct { display: flex; gap: 10px; }
.form__direct .btn { font-size: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}
.footer__links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal.active { opacity: 1; visibility: visible; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.modal__content {
  position: relative;
  max-width: 860px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal__content::-webkit-scrollbar { width: 6px; }
.modal__content::-webkit-scrollbar-track { background: transparent; }
.modal__content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
.modal__content::-webkit-scrollbar-thumb:hover { background: var(--border-light); }
.modal.active .modal__content { transform: translateY(0) scale(1); }

/* Modal header — title+price left, buttons right */
.modal__car-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.modal__car-header .modal__car-title { margin-bottom: 4px; }
.modal__car-header .modal__car-price { margin-bottom: 0; }
.modal__car-header .modal__car-actions { flex-shrink: 0; gap: 8px; }
.modal__car-header .modal__car-actions .btn { padding: 10px 28px; }
.modal__car-header .modal__car-actions .btn-call {
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s;
}
.modal__car-header .modal__car-actions .btn-call:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-muted);
  z-index: 10;
  transition: all var(--transition);
}
.modal__close:hover { background: var(--border); color: var(--text); }

/* Gallery in modal */
.gallery {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}
.gallery__slide {
  min-width: 100%;
  height: 100%;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  z-index: 5;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.gallery__btn:hover { background: rgba(0,0,0,0.85); }
.gallery__btn--prev { left: 12px; }
.gallery__btn--next { right: 12px; }
.gallery__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.gallery__dot.active { background: var(--accent); width: 20px; border-radius: 4px; }
.gallery__counter {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  color: #fff;
  backdrop-filter: blur(4px);
  z-index: 5;
}
.modal__car-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal__car-body { padding: 32px; }
.modal__car-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal__car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.modal__car-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  white-space: pre-line;
}
.modal__car-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}
.modal__car-actions { display: flex; gap: 12px; }

/* ============================================
   FULLSCREEN LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.lightbox.active { opacity: 1; }
.lightbox__img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__counter {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  z-index: 10;
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* Mobile: bigger touch targets, no arrow buttons (swipe only) */
@media (max-width: 768px) {
  .lightbox__prev, .lightbox__next { display: none; }
  .lightbox__img-wrap { padding: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__counter { top: 16px; left: 16px; font-size: 13px; }
}

/* Landscape: use full width */
@media (orientation: landscape) and (max-height: 500px) {
  .lightbox__img-wrap { padding: 4px 60px; }
  .lightbox__close { top: 8px; right: 8px; width: 36px; height: 36px; font-size: 22px; }
  .lightbox__counter { top: 10px; left: 10px; font-size: 12px; }
  .lightbox__prev, .lightbox__next { width: 36px; height: 36px; font-size: 22px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* Particle */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.1; }
  90% { opacity: 0.1; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid, .services__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .analytics__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: 1; }
  .hero__feed { max-width: 450px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Nav mobile — bitmotors-style full panel */
  .nav__links {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    z-index: 998;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + 24px) 32px 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links.active {
    transform: translateX(0);
    visibility: visible;
  }

  /* Backdrop */
  .nav__links::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
  .nav__links.active::before { opacity: 1; }

  /* Menu links */
  .nav__links li { list-style: none; }
  .nav__links a {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 16px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .nav__links a::after { display: none; }
  .nav__links a:active { color: var(--accent); }

  /* Mobile menu extras (injected by JS) */
  .nav__links .mobile-extras {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-extras .lang-switch-mobile {
    display: flex;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
  }
  .mobile-extras .lang-switch-mobile button {
    flex: 1;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
  }
  .mobile-extras .lang-switch-mobile button.active {
    background: var(--accent);
    color: #000;
  }
  .mobile-extras .mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-extras .mobile-contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.2s;
  }
  .mobile-extras .mobile-contacts a:active { border-color: var(--accent); }
  .mobile-extras .mobile-contacts a svg { flex-shrink: 0; }
  .mobile-extras .mobile-contacts .mc-tg svg { color: #0088cc; }
  .mobile-extras .mobile-contacts .mc-wa svg { color: #25d366; }
  .mobile-extras .mobile-contacts .mc-phone svg { color: var(--accent2); }

  .nav__burger { display: flex; }

  /* Hide desktop elements on mobile */
  .nav__actions .lang-switch { display: none; }
  .lang-dropdown { right: auto; left: 0; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero__inner { padding: 40px 16px; }
  .hero__badge { font-size: 11px; }
  .hero__stats { flex-direction: row; gap: 20px; flex-wrap: wrap; }
  .hero__stat-num { font-size: 2rem; }
  .hero__stat-label { font-size: 11px; }
  .hero__feed { max-width: 100%; }
  .feed__card-img { width: 80px; height: 60px; }
  .feed__card-name { font-size: 13px; }
  .feed__card-price { font-size: 14px; }
  .hero__scroll { display: none; }

  /* Services */
  .services__grid, .services__grid--3 { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .service-card { padding: 28px 20px; }

  /* Analytics */
  .analytics__grid { grid-template-columns: repeat(2, 1fr); }
  .analytics__card { padding: 24px 16px; }
  .analytics__card h3 { font-size: 1rem; }

  /* Inventory & Cases */
  .inventory__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }

  /* Process */
  .process__step { gap: 16px; }
  .process__num { width: 56px; height: 56px; font-size: 1.1rem; }
  .process__timeline::before { left: 28px; }
  .process__body h3 { font-size: 1.1rem; }

  /* About */
  .about__content p { font-size: 1rem; }

  /* Contact */
  .contact__form-wrap { padding: 24px; }
  .contact__channel { padding: 12px 14px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  /* Modal mobile */
  .modal__content { width: 95%; max-height: 95vh; border-radius: var(--radius-lg); }
  .modal__car-body { padding: 20px; }
  .modal__car-header { flex-direction: column; gap: 12px; }
  .modal__car-title { font-size: 1.25rem; }
  .modal__car-price { font-size: 1.5rem; }
  .modal__car-meta { gap: 12px; font-size: 13px; }
  .modal__car-actions { flex-direction: column; width: 100%; }

  /* Gallery */
  .gallery__btn { width: 34px; height: 34px; font-size: 18px; }
  .gallery__btn--prev { left: 6px; }
  .gallery__btn--next { right: 6px; }

  /* Section header */
  .section__header { margin-bottom: 40px; }
  .section__title { font-size: 1.75rem; }
  .section__desc { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.75rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__stats { flex-direction: column; gap: 16px; text-align: center; }
  .hero__cta { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .analytics__grid { grid-template-columns: 1fr; }
  .dash__row { flex-direction: column; gap: 8px; }
  .nav__logo-text { font-size: 1.2rem; }
  .car-card__meta { flex-wrap: wrap; gap: 8px; }
  .contact__form-wrap { padding: 16px; }
  .form__input { padding: 12px 14px; font-size: 16px; /* prevent zoom on iOS */ }
}

/* ============================================
   ADMIN LINK (hidden)
   ============================================ */
.admin-link {
  position: fixed;
  bottom: 8px;
  right: 8px;
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0.3;
  transition: opacity var(--transition);
  z-index: 100;
}
.admin-link:hover { opacity: 1; }

/* Loading shimmer for images */
.shimmer {
  background: linear-gradient(90deg, var(--surface) 25%, var(--border) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Inventory empty state */
.inventory__empty, .cases__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.inventory__empty-icon {
  margin-bottom: 20px;
  color: var(--text-dim);
}
.inventory__empty p, .cases__empty p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.cookie-banner p { margin: 0; flex: 1; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 16px; }
  .cookie-banner p { font-size: 13px; }
}

/* Floating Telegram button */
.tg-float {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  z-index: 9000;
  display: block;
  line-height: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.tg-float img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .tg-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .tg-float img { width: 50px; height: 50px; }
  .nav__actions .btn--accent { display: none; }
}
