:root {
  --primary: #1e293b;
  --primary-dark: #0f172a;
  --muted: #64748b;
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --viber: #7360f2;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --radius: 16px;
  --container: 1152px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--primary);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

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

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.badge-dark {
  background: rgba(30, 41, 59, 0.1);
  color: var(--primary);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.section {
  padding: 48px 0;
}

.section-head {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .section-head h2 { font-size: 36px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-md {
  padding: 12px 24px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover { background: var(--gold-dark); }

.btn-dark {
  background: var(--primary);
  color: #fff;
}

.btn-dark:hover { background: var(--primary-dark); }

.btn-viber {
  background: var(--viber);
  color: #fff;
}

.btn-viber:hover { background: #7360f2cc; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  width: 100%;
}

.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.is-scrolled,
.header.is-open {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-inner { height: 80px; }
}

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

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo > span,
.footer-brand > span {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  transition: color 0.2s;
}

.logo-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.header.is-scrolled .logo-title,
.header.is-open .logo-title {
  color: var(--primary);
}

.header.is-scrolled .logo-sub,
.header.is-open .logo-sub {
  color: var(--muted);
}

.nav-desktop,
.header-contacts {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header-contacts {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.nav-desktop a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  transition: color 0.2s;
}

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

.header.is-scrolled .nav-desktop a { color: var(--muted); }
.header.is-scrolled .nav-desktop a:hover { color: var(--gold); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.header-phone:hover { color: var(--gold); }
.header.is-scrolled .header-phone { color: var(--primary); }
.header.is-scrolled .header-phone:hover { color: var(--gold); }

.menu-toggle {
  display: flex;
  padding: 8px;
  color: #fff;
}

.header.is-scrolled .menu-toggle,
.header.is-open .menu-toggle {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.icon-close { display: none; }
.header.is-open .icon-menu { display: none; }
.header.is-open .icon-close { display: block; }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: 16px 0;
}

.header.is-open .mobile-menu { display: block; }

@media (min-width: 1024px) {
  .header.is-open .mobile-menu { display: none; }
}

.mobile-menu a,
.mobile-menu .nav-link {
  display: block;
  padding: 12px 16px;
  text-align: left;
  color: var(--muted);
  width: 100%;
}

.mobile-menu a:hover,
.mobile-menu .nav-link:hover {
  background: #f9fafb;
  color: var(--primary);
}

.mobile-menu-contacts {
  margin-top: 16px;
  padding: 16px 16px 0;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-contacts .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  padding: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6)),
    url("../images/hero.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  max-width: 768px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

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

.hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold); }

.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 672px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-actions .btn { width: 100%; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-trust-item .icon { color: var(--gold); width: 16px; height: 16px; }

.hero-phone-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.hero-phone:hover { color: var(--gold); }

.hero-phone-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.hero-phone-icon .icon { width: 24px; height: 24px; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
}

.scroll-hint-frame {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint-dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

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

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn,
  .hero-actions a { width: auto; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 20px; }
  .hero-phone { font-size: 30px; }
  .hero-content { padding: 96px 0; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 60px; }
}

/* Services */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.service-featured {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-featured::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.service-featured-inner { position: relative; z-index: 1; }

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.icon-box-lg {
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  margin-bottom: 24px;
}

.icon-box-lg .icon { width: 32px; height: 32px; }

.service-featured h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-featured p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.mini-dot {
  width: 20px;
  height: 20px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.mini-dot .icon { width: 12px; height: 12px; }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.service-card-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-box-sm {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .icon-box-sm {
  background: var(--primary);
  color: var(--gold);
}

.icon-box-sm .icon { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.help-cta {
  text-align: center;
}

.help-cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--muted);
}

.help-cta-inner .icon { color: var(--gold); width: 24px; height: 24px; }

.help-cta a {
  color: var(--primary);
  font-weight: 500;
}

.help-cta a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .service-featured h3 { font-size: 30px; }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-featured {
    grid-row: span 2;
  }
}

/* Pricing */
.pricing-block { margin-bottom: 48px; }

.block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.block-title h3 {
  font-size: 20px;
}

.icon-box-md {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.icon-box-gold {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.icon-box-dark {
  background: rgba(30, 41, 59, 0.1);
  color: var(--primary);
}

.icon-box-md .icon { width: 20px; height: 20px; }

.price-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.price-box .lead {
  color: var(--muted);
  margin-bottom: 16px;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.price-value span {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}

.includes-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.includes .mini-dot {
  background: rgba(212, 175, 55, 0.1);
  margin-top: 2px;
}

.extra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.extra-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  transition: border-color 0.2s;
}

.extra-card:hover { border-color: rgba(212, 175, 55, 0.3); }

.extra-card p { font-weight: 500; }
.extra-card small {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.extra-tag {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .extra-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Why us */
.why { background: var(--bg-alt); }

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.feature-card .icon-box {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  margin: 0 auto 16px;
}

.feature-card .icon-box .icon { width: 28px; height: 28px; }

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.stats {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.stat-icon .icon { width: 24px; height: 24px; }

.stat-value {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

@media (min-width: 768px) {
  .features { grid-template-columns: 1fr 1fr; }
  .stats { padding: 48px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-value { font-size: 36px; }
}

@media (min-width: 1024px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

/* How we work */
.timeline-wrap {
  max-width: 896px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
}

.step {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.step:last-child { margin-bottom: 0; }

.step-icon-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.step-icon .icon { width: 32px; height: 32px; }

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.step-body { padding-top: 8px; }

.step-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-body p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 14px;
  border-radius: 999px;
}

.tag .icon {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.notice {
  margin-top: 48px;
  text-align: center;
}

.notice + .notice { margin-top: 16px; }

.notice-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  color: var(--muted);
  text-align: left;
}

.notice-inner .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.notice strong { color: var(--primary); }

@media (min-width: 768px) {
  .timeline-line { left: 48px; }
  .step { gap: 40px; }
  .step-icon {
    width: 96px;
    height: 96px;
  }
  .step-icon .icon { width: 40px; height: 40px; }
  .step-body { padding-top: 16px; }
  .step-body h3 { font-size: 24px; }
}

/* FAQ */
.faq { background: var(--bg-alt); }

.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 0 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary:hover { color: var(--gold); }

.faq-item summary .chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary .chevron { transform: rotate(180deg); }

.faq-item .answer {
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-item .answer a:hover { color: var(--gold); }

.faq-more {
  margin-top: 48px;
  text-align: center;
}

.faq-more p {
  color: var(--muted);
  margin-bottom: 16px;
}

.faq-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
}

.faq-more a:hover { color: var(--gold); }

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.contact-card:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.contact-card--form {
  background: var(--primary);
}

.contact-card--form:hover { box-shadow: none; }

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-icon .icon { width: 32px; height: 32px; }

.icon-gold-bg {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.icon-white-bg {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.icon-green-bg {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-card--form h3 { color: #fff; }

.contact-phone {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.contact-phone:hover { color: var(--gold); }

.contact-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-card--form .sub {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card .btn { width: 100%; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.contact-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

.contact-form input:focus { border-color: var(--gold); }

.contacts-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  color: var(--muted);
}

.contacts-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacts-meta .icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

@media (min-width: 768px) {
  .contacts-grid {
    grid-template-columns: repeat(2, minmax(0, 380px));
    justify-content: center;
  }
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 48px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand strong {
  display: block;
  font-size: 16px;
}

.footer-brand small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 12px;
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.social:hover { background: rgba(255, 255, 255, 0.2); }

.social-viber { background: var(--viber); }
.social-viber:hover { background: #7360f2cc; }

.footer h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

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

.footer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-row:hover { color: var(--gold); }

.footer-row .box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-row .box .icon { width: 20px; height: 20px; }

.footer-row strong {
  display: block;
  color: #fff;
  font-weight: 500;
}

.footer-row small {
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 64px 0;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Mobile call bar */
.mobile-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
}

.mobile-call .btn {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .mobile-call { display: none; }
}

body {
  padding-bottom: 88px;
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

/* Toast */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 100;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: calc(100% - 32px);
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.is-success { background: #15803d; }
.toast.is-error { background: #b91c1c; }
