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

:root {
  --bg: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #06b6d4;
  --accent-glow: rgba(6, 182, 212, 0.35);
  --green: #25d366;
  --green-glow: rgba(37, 211, 102, 0.3);
  --instagram: #e1306c;
  --youtube: #ff0000;
  --gradient: linear-gradient(135deg, #06b6d4, #3b82f6);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.12);
  top: -100px;
  right: -100px;
}

.bg-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.08);
  bottom: 20%;
  left: -100px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.25rem;
}

.logo__img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: #0a1628;
}

.logo__img[src=""],
.logo__img:not([src]) {
  display: none;
}

.logo__text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
}

.logo__icon svg {
  width: 18px;
  height: 18px;
}

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

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

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

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

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch--mobile {
  width: fit-content;
  margin-bottom: 8px;
}

.lang-switch__btn {
  padding: 6px 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch__btn.active {
  background: var(--accent);
  color: var(--bg);
}

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

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.btn--whatsapp {
  background: var(--green);
  color: white;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #0891b2);
  color: white;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
}

.btn--instagram {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--instagram:hover {
  border-color: var(--instagram);
  color: var(--instagram);
  transform: translateY(-2px);
}

.btn--youtube {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--youtube:hover {
  border-color: var(--youtube);
  color: var(--youtube);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 60px) 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.badge__dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat__value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.hero-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-card__status {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-card__body {
  padding: 24px;
}

.hero-card__photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border);
}

.hero-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.15);
}

.photo-placeholder,
.gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  min-height: 160px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.photo-placeholder svg,
.gallery__placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.circuit {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.circuit__chip {
  width: 80px;
  height: 80px;
  color: var(--accent);
  animation: float 4s ease-in-out infinite;
}

.circuit__chip svg {
  width: 100%;
  height: 100%;
}

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

.circuit__node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}

.circuit__node--1 { top: 30%; left: 15%; animation: blink 3s infinite; }
.circuit__node--2 { top: 20%; right: 20%; animation: blink 3s 1s infinite; }
.circuit__node--3 { bottom: 25%; right: 15%; animation: blink 3s 2s infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.circuit__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  height: 1px;
  opacity: 0.4;
}

.circuit__line--1 {
  width: 80px;
  top: 35%;
  left: 20%;
  transform: rotate(15deg);
}

.circuit__line--2 {
  width: 60px;
  bottom: 35%;
  right: 22%;
  transform: rotate(-20deg);
}

.hero-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check {
  color: var(--accent);
  font-weight: 700;
}

/* Sections */
section {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.3);
  background: var(--bg-card-hover);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* About */
.about {
  padding: 100px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about__content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about__content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
}

.feature__num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.brands-grid span {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.brands-grid span:hover {
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--text);
}

/* Partners strip — под hero */
.partners {
  position: relative;
  z-index: 1;
  padding: 0 0 48px;
  margin-top: -24px;
}

.partners__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 140px;
  padding: 16px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

a.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.35);
  background: var(--bg-card-hover);
}

.partner-card__logo {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.partner-card__logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  transition: opacity 0.2s;
}

a.partner-card:hover .partner-card__logo img {
  opacity: 1;
}

.partner-card__placeholder {
  display: none;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.partner-card--placeholder .partner-card__logo img {
  display: none;
}

.partner-card--placeholder .partner-card__placeholder {
  display: block;
}

.partner-card__name {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

/* Gallery */
.gallery {
  padding: 80px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item .gallery__placeholder {
  display: none;
}

.gallery__item--placeholder img {
  display: none;
}

.gallery__item--placeholder .gallery__placeholder {
  display: flex;
  min-height: 100%;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Reviews */
.reviews {
  padding: 80px 0;
}

.reviews__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.reviews__layout--static {
  grid-template-columns: 1fr;
  max-width: 720px;
}

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

.reviews__empty {
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: rgba(6, 182, 212, 0.25);
}

.review-card--pending {
  border-style: dashed;
  opacity: 0.85;
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card__author {
  font-weight: 700;
  font-size: 1rem;
}

.review-card__badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
  flex-shrink: 0;
}

.review-card__rating-wrap {
  margin-bottom: 4px;
}

.star-display {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 10px;
}

.star-display__star {
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(148, 163, 184, 0.35);
}

.star-display__star--filled {
  color: #fbbf24;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.35);
}

.star-input {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.star-input__star {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(148, 163, 184, 0.35);
  transition: color 0.15s, transform 0.15s;
}

.star-input__star:hover,
.star-input__star:focus-visible {
  transform: scale(1.1);
  outline: none;
}

.star-input__star--active {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.star-input__star:focus-visible {
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.5);
  border-radius: 4px;
}

.review-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.review-card__date {
  display: block;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.7);
}

.reviews__form-wrap {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.reviews__form-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.reviews__form-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.reviews__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reviews__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews__field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews__field input,
.reviews__field textarea,
.reviews__select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  resize: vertical;
}

.reviews__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='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.reviews__field input:focus,
.reviews__field textarea:focus,
.reviews__select:focus {
  outline: none;
  border-color: rgba(6, 182, 212, 0.5);
}

.reviews__field input:invalid:not(:placeholder-shown),
.reviews__field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.reviews__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.reviews__notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.reviews__success {
  margin-top: 16px;
  padding: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-sm);
}

/* Speak languages */
.speak-langs {
  margin-top: 24px;
}

.speak-langs__label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.speak-langs__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.speak-tag {
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
}

.contact-btn--youtube:hover {
  border-color: var(--youtube);
}

.contact-btn--youtube .contact-btn__icon {
  background: rgba(255, 0, 0, 0.12);
  color: var(--youtube);
}

.contact-btn--email:hover {
  border-color: var(--accent);
}

.contact-btn--email .contact-btn__icon {
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent);
}

.contact-btn--phone:hover {
  border-color: #60a5fa;
}

.contact-btn--phone .contact-btn__icon {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

/* Sticky CTA for Google Ads mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Contact */
.contact {
  padding: 60px 0 100px;
}

.contact__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact__text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact__text p {
  color: var(--text-muted);
}

.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.contact-btn:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.06);
}

.contact-btn--whatsapp:hover {
  border-color: var(--green);
}

.contact-btn--instagram:hover {
  border-color: var(--instagram);
}

.contact-btn__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-btn--whatsapp .contact-btn__icon {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green);
}

.contact-btn--instagram .contact-btn__icon {
  background: rgba(225, 48, 108, 0.15);
  color: var(--instagram);
}

.contact-btn__icon svg {
  width: 22px;
  height: 22px;
}

.contact-btn__info {
  flex: 1;
}

.contact-btn__info strong {
  display: block;
  font-size: 1rem;
}

.contact-btn__info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-btn__arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent);
}

/* FAB */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 4px 20px var(--green-glow);
  transition: transform 0.2s;
}

.fab svg {
  width: 28px;
  height: 28px;
}

.fab--whatsapp {
  background: var(--green);
  color: white;
}

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

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact__box {
    grid-template-columns: 1fr;
    padding: 32px;
  }

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

  .reviews__form-wrap {
    position: static;
  }
}

@media (max-width: 960px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .nav, .header__actions {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    width: calc(50% - 8px);
    max-width: 160px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-cta {
    display: block;
  }

  .fab {
    bottom: 80px;
  }

  body {
    padding-bottom: 70px;
  }

  .hero__title,
  .hero__subtitle,
  h2, h3,
  .service-card h3,
  .service-card > p,
  .service-card ul li,
  .review-card__text,
  .review-card__author,
  .faq__item p,
  .faq__item summary,
  .brands-grid span,
  .section-tag,
  .btn {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .container,
  .hero__inner,
  .services__grid,
  .reviews__layout,
  .service-card {
    min-width: 0;
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }
}

.reviews__error {
  margin-top: 12px;
  padding: 12px;
  text-align: center;
  font-size: 0.88rem;
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
}

.footer__admin {
  font-size: 0.78rem;
  opacity: 0.55;
}

.footer__admin:hover {
  opacity: 1;
  color: var(--accent);
}

.admin-page {
  min-height: 100vh;
}

.admin {
  padding: 48px 0 80px;
}

.admin__container {
  max-width: 720px;
}

.admin__header {
  margin-bottom: 32px;
}

.admin__back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

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

.admin__header h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.admin__subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.admin__panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.admin__panel h2 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.admin__steps {
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.admin__steps code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}

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

.admin__btn {
  width: 100%;
  justify-content: center;
}

.admin__hint {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.admin__hint--small {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.admin__hint code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.admin__error {
  color: #f87171;
  font-size: 0.88rem;
  text-align: center;
}

.admin__warn {
  color: #fbbf24;
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 12px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-sm);
}

.admin__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.admin__count {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.admin__toolbar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.admin__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.admin__tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.admin__tab--active {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.35);
  color: var(--accent);
}

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

.admin__empty,
.admin__loading {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
}

.admin-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.admin-card--pending {
  border-style: dashed;
  border-color: rgba(251, 191, 36, 0.35);
}

.admin-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.admin-card__head time {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.admin-card__text {
  color: var(--text-muted);
  margin: 12px 0 16px;
  white-space: pre-wrap;
}

.admin-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn--approve {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green);
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.btn--reject {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.admin__manual {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}

.admin__manual h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .admin__toolbar {
    flex-direction: column;
  }
}
