/* ==========================================================================
   Адвокатське бюро «Кравець та Партнери»
   High-Conversion Lead Engine Design System (Sapphire, Steel & Dual Messengers)
   ========================================================================== */

:root {
  --bg-deep: #040812;
  --bg-main: #071022;
  --bg-surface: #0c1832;
  --bg-surface-hover: #102142;
  --bg-card: rgba(12, 24, 50, 0.92);

  --border-subtle: rgba(148, 163, 184, 0.15);
  --border-card: rgba(148, 163, 184, 0.22);
  --border-card-hover: rgba(96, 165, 250, 0.6);

  --blue-tech: #1d4ed8;
  --blue-bright: #2563eb;
  --blue-light: #60a5fa;
  --blue-ice: #bfdbfe;

  --silver-white: #ffffff;
  --silver-light: #f8fafc;
  --silver-steel: #cbd5e1;
  --silver-muted: #94a3b8;
  --silver-dim: #64748b;

  --red-alert: #ef4444;
  --red-hover: #dc2626;

  --color-tg: #0284c7;
  --color-tg-hover: #0369a1;
  --color-wa: #16a34a;
  --color-wa-hover: #15803d;
  --color-vb: #7360f2;
  --color-mono: #f43f5e;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 0 1px 1px rgba(255, 255, 255, 0.05);
  --shadow-blue-glow: 0 4px 20px rgba(37, 99, 235, 0.35);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.22s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1140px;
  --sticky-bar-height: 68px;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--silver-light);
  background-color: var(--bg-deep);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(30, 58, 138, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 100% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 45%);
  background-attachment: fixed;
  overflow-x: hidden;
  padding-bottom: var(--sticky-bar-height);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

/* ==========================================================================
   Top Alert Bar
   ========================================================================== */
.top-alert-bar {
  background: #02050d;
  color: var(--silver-muted);
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.top-alert-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-alert-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--silver-steel);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
}

.top-alert-hotline {
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: rgba(4, 8, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-emblem-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px;
  border: 1px solid var(--border-subtle);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--silver-muted);
  white-space: nowrap;
}

.header-nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 992px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--silver-muted);
}

.nav-link:hover {
  color: var(--blue-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Buttons (Telegram, WhatsApp, Call 24/7, Outline)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: var(--shadow-blue-glow);
  border: 1px solid rgba(147, 197, 253, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  transform: translateY(-2px);
}

.btn-tg {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.4);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.btn-tg:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: 1px solid rgba(134, 239, 172, 0.4);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
}

.btn-wa:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border: 1px solid rgba(254, 202, 202, 0.35);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.btn-call:hover {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(12, 24, 50, 0.7);
  border: 1px solid var(--border-card);
  color: var(--silver-light);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--blue-bright);
  color: #ffffff;
}

.btn-copy-address {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: var(--blue-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.35rem;
}

.btn-copy-address:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #ffffff;
}

.btn-lg {
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   SOS Emergency Banner (For Criminal / Raids / Arrests)
   ========================================================================== */
.sos-banner {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.18) 0%, rgba(185, 28, 28, 0.25) 100%);
  border: 1px solid rgba(239, 68, 68, 0.45);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .sos-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.sos-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sos-badge {
  background: var(--red-alert);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.sos-text {
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.4;
}

.sos-text strong {
  color: #fca5a5;
}

/* ==========================================================================
   1900 UAH High-Conversion Value Offer Strip
   ========================================================================== */
.offer-price-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(12, 24, 50, 0.95) 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
}

.offer-price-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.offer-price-current {
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.offer-price-old {
  font-size: 1.05rem;
  color: var(--silver-dim);
  text-decoration: line-through;
}

.offer-price-badge {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.offer-price-desc {
  font-size: 0.875rem;
  color: var(--silver-steel);
  line-height: 1.5;
}

/* ==========================================================================
   Dual Messenger CTA Block (Telegram + WhatsApp)
   ========================================================================== */
.dual-messenger-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 540px) {
  .dual-messenger-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.security-trust-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: var(--silver-muted);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.security-trust-note svg {
  width: 15px;
  height: 15px;
  color: #22c55e;
  flex-shrink: 0;
}

/* ==========================================================================
   Interactive Split Selector (Military / TCK / SZCH / VLK)
   ========================================================================== */
.split-selector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.split-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.split-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

.split-card-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--blue-light);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 0.65rem;
}

.split-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.split-card-desc {
  font-size: 0.8125rem;
  color: var(--silver-steel);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.split-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

/* ==========================================================================
   Hero Section with Large Dignified Portrait of Igor Kravets
   ========================================================================== */
.hero-section {
  padding: 2.25rem 0 2rem;
  position: relative;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 3.25rem 0 2.75rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
  }
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  color: var(--blue-light);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.85rem;
  line-height: 1.22;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.45rem;
  }
}

.hero-subtitle {
  font-size: 0.9875rem;
  line-height: 1.6;
  color: var(--silver-steel);
  margin-bottom: 1.5rem;
}

.hero-subtitle strong {
  color: #ffffff;
}

/* ==========================================================================
   Hero Lawyer Card - Large Dignified Portrait
   ========================================================================== */
.hero-lawyer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-lawyer-photo-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #040916;
}

@media (min-width: 768px) {
  .hero-lawyer-photo-wrap {
    height: 280px;
  }
}

.hero-lawyer-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-lawyer-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 24, 50, 0.96) 90%);
  padding: 1.25rem 1.25rem 0.5rem;
}

.hero-lawyer-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.hero-lawyer-title {
  font-size: 0.8125rem;
  color: var(--blue-light);
  font-weight: 600;
}

.hero-lawyer-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-lawyer-quote {
  font-size: 0.875rem;
  color: var(--silver-steel);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--blue-bright);
  padding-left: 0.75rem;
}

.hero-lawyer-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lawyer-spec-tag {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: var(--silver-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Real Cases / Results Section
   ========================================================================== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.case-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.case-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.case-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.case-desc {
  font-size: 0.875rem;
  color: var(--silver-steel);
  line-height: 1.55;
}

/* ==========================================================================
   Practice Services Section
   ========================================================================== */
.section {
  padding: 3.25rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section-dark {
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.15rem;
  }
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--silver-muted);
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.service-card:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-3px);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.service-card-article {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--blue-light);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--silver-steel);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-points {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 2px solid rgba(96, 165, 250, 0.4);
  padding-left: 0.65rem;
}

.service-card-point {
  font-size: 0.8125rem;
  color: var(--silver-light);
  line-height: 1.4;
}

/* ==========================================================================
   Google Reviews (Trustindex 5.0 Rating Badge)
   ========================================================================== */
.reviews-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.review-author-meta strong {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.2;
}

.review-author-meta small {
  font-size: 0.6875rem;
  color: var(--silver-muted);
}

.review-card-stars {
  color: var(--blue-light);
  font-size: 0.8125rem;
  letter-spacing: 1px;
}

.review-card-text {
  font-size: 0.875rem;
  color: var(--silver-steel);
  font-style: italic;
  line-height: 1.5;
}

/* ==========================================================================
   Financial & Monobank Section
   ========================================================================== */
.finance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.finance-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.65rem 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.finance-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-mono);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.finance-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.finance-card-desc {
  font-size: 0.875rem;
  color: var(--silver-steel);
  line-height: 1.55;
}

/* ==========================================================================
   Contacts Section & Social Pro Profiles
   ========================================================================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .contacts-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.contacts-info-card, .contact-action-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.contacts-info-card h3, .contact-action-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-detail-row {
  margin: 1rem 0;
}

.contact-detail-row strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--silver-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-row p {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.messengers-matrix {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.messengers-matrix h4 {
  font-size: 0.875rem;
  color: var(--silver-light);
  margin-bottom: 0.75rem;
}

.messenger-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.btn-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  font-weight: 700;
  font-size: 0.75rem;
}

.btn-msg svg {
  width: 22px;
  height: 22px;
}

.msg-tg { background: rgba(2, 132, 199, 0.15); color: #38bdf8; border-color: rgba(2, 132, 199, 0.3); }
.msg-wa { background: rgba(22, 163, 74, 0.15); color: #4ade80; border-color: rgba(22, 163, 74, 0.3); }
.msg-vb { background: rgba(115, 96, 242, 0.15); color: #a78bfa; border-color: rgba(115, 96, 242, 0.3); }

/* Social Icons in Footer */
.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--silver-muted);
  transition: all 0.2s;
}

.social-icon-btn:hover {
  background: var(--blue-bright);
  color: #ffffff;
  border-color: #60a5fa;
  transform: translateY(-2px);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #02050d;
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.8125rem;
  color: var(--silver-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.footer-brand h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--silver-light);
  margin-bottom: 0.75rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.75rem;
  color: var(--silver-dim);
}

/* ==========================================================================
   High-Conversion Mobile Sticky Bar (Telegram, WhatsApp, Call 24/7)
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 8, 18, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-card);
  padding: 0.45rem 0.5rem;
  z-index: 1000;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.35rem;
  max-width: 540px;
  margin: 0 auto;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.65rem 0.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.sticky-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.sticky-btn-call {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.sticky-btn-tg {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.sticky-btn-wa {
  background: linear-gradient(135deg, #16a34a, #15803d);
}
