/*
Theme Name: styazhka-minsk.by
Theme URI: https://styazhka-minsk.by
Author: styazhka-minsk.by
Author URI: https://styazhka-minsk.by
Description: Современная минималистичная тема WordPress для сайта styazhka-minsk.by.
Version: 1.0.0
Text Domain: styazhka-minsk-by
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fcca00;
  background-color: #f3f4f6;
  line-height: 1.6;
}

html,
body {
  overflow-x: hidden;
}

a {
  color: #0f766e;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #115e59;
}

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

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.single-hero-banner {
  position: relative;
  width: 100vw;
  height: 260px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 1.75rem;
  background-image: var(--mnd-dynamic-bg, radial-gradient(circle at top left, #22c55e 0, transparent 55%), radial-gradient(circle at bottom right, #0ea5e9 0, transparent 55%), #020617);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.single-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.9));
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .single-hero-banner {
    height: 200px;
    margin-bottom: 1.25rem;
  }
}

.container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding-inline: 16px;display: contents;
}

/* Header & navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;max-width: 1270px;
    margin: auto;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.site-description {
  display: none;
}

.custom-logo-link img {
  height: 40px;
  width: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.primary-navigation a {
  color: #111827;
  font-weight: 500;
  font-size: 0.9375rem;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  color: #0f766e;
}

/* Dropdowns */
.primary-navigation li {
  position: relative;
}

.submenu-toggle {
  display: none;
}

.primary-navigation .menu-item-has-children > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 0.35rem;
  opacity: 0.8;
}

.primary-navigation ul ul {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 200px;
  padding: 0.75rem 0;
  margin: 0;
  display: block;
  gap: 0;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 40;
}

.primary-navigation ul ul li {
  width: 100%;
}

.primary-navigation ul ul a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.primary-navigation li:hover > ul,
.primary-navigation li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Burger button (mobile) */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle-box {
  width: 28px;
  height: 20px;
  position: relative;
}

.menu-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.menu-toggle-line:nth-child(1) {
  top: 0;
}

.menu-toggle-line:nth-child(2) {
  top: 9px;
}

.menu-toggle-line:nth-child(3) {
  bottom: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 768px) {
  .primary-navigation .menu-item-has-children > a::after {
    display: none;
  }

  .site-header-inner {
    padding: 0 12px;
  }

  .primary-navigation {
    position: fixed;
    inset: 72px 0 auto 0;
    background: #ffffff;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    padding: 1.25rem 1.5rem 1.75rem;
  }

  .primary-navigation.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .primary-navigation ul ul {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .primary-navigation li.is-submenu-open > ul {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.25rem 0 0.5rem 0.9rem;
  }

  .primary-navigation ul ul a {
    padding-inline-start: 0;
    font-size: 0.875rem;
    opacity: 0.9;
  }

  .submenu-toggle {
    margin-left: 0.25rem;
    border: 0;
    background: none;
    padding: 0.15rem 0.15rem 0.15rem 0.35rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .submenu-toggle-icon {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #4b5563;
    border-bottom: 2px solid #4b5563;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
  }

  .is-submenu-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg);
  }

  .menu-toggle {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
  }
}

/* Hero (front-page) */
.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #22c55e 0, transparent 55%),
              radial-gradient(circle at bottom right, #0ea5e9 0, transparent 55%),
              #020617;
  color: #f9fafb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 34rem;
  color: #cbd5f5;
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
}

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

.btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-secondary:hover {
  border-color: #e5e7eb;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.hero-visual {
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.15), transparent 55%),
              radial-gradient(circle at bottom, rgba(56, 189, 248, 0.12), transparent 55%);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.65);
}

.hero-visual-inner {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.25rem 1.5rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 60%),
              #020617;
}

.hero-visual-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.hero-visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5f5;
}

.hero-visual-list li::before {
  content: "●";
  color: #22c55e;
  margin-right: 0.5rem;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 4.25rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  max-width: 32rem;
  margin: 0 auto;
  color: #6b7280;
  font-size: 0.9375rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(209, 213, 219, 0.8);
}

.card-title {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
}

.card-text {
  font-size: 0.9375rem;
  color: #6b7280;
}

/* Blog layout */
.content-area {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
  gap: 2.5rem;max-width: 1270px;
    margin: auto;
}

.content-area--page {
  display: block;
  grid-template-columns: none;
  gap: 0;display: contents;
}

@media (max-width: 960px) {
  .content-area {
    grid-template-columns: minmax(0, 1fr);
  }
}

.post-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem 1.75rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.75rem;
}

.post-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.post-card-meta {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.post-card-excerpt {
  font-size: 0.9375rem;
}

/* Full/wide aligned blocks (background to full width) */
.entry-content > .alignwide {
  margin-left: calc(50% - min(50vw, 635px));
  margin-right: calc(50% - min(50vw, 635px));
}

.entry-content > .alignfull {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}

.entry-header-title {
  margin: 0 0 0.5rem;
  font-size: 1.875rem;
}

.entry-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 96px;
  align-self: flex-start;
}

.mnd-sidebar-widget {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.25), transparent 60%), #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.mnd-sidebar-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.mnd-sidebar-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(16, 185, 129, 0.6);
}

.mnd-sidebar-widget:hover::before {
  opacity: 1;
}

.mnd-sidebar-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.mnd-sidebar-post-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-decoration: none;
}

.mnd-sidebar-post-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
}

.mnd-sidebar-post-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.mnd-sidebar-post-link:hover .mnd-sidebar-post-title {
  color: #0f766e;
}

.mnd-sidebar-contact-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.85rem;
}

.mnd-sidebar-phone-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22 !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  margin-bottom: 0.35rem;
}

.mnd-sidebar-phone-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.mnd-sidebar-contact-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.mnd-sidebar-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.mnd-sidebar-benefits li::before {
  content: "✓";
  margin-right: 0.35rem;
  color: #22c55e;
}

@media (max-width: 960px) {
  .sidebar {
    position: static;
  }
}

.single-entry-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.single-entry-header {
  margin-bottom: 1.5rem;
}

.single-entry-title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.single-entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.single-entry-meta a {
  color: inherit;
}

.single-entry-meta a:hover {
  color: #0f766e;
}

.single-entry-body {
  font-size: 0.975rem;
  color: #111827;
}

.single-entry-body > .entry-content > *:first-child {
  margin-top: 0;
}

.single-entry-meta-separator {
  opacity: 0.7;
}

.mnd-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.mnd-breadcrumbs a {
  color: #6b7280;
}

.mnd-breadcrumbs a:hover {
  color: #0f766e;
}

.mnd-breadcrumbs-home::before {
  content: "⌂";
  margin-right: 0.25rem;
  font-size: 0.9em;
}

.mnd-breadcrumbs-separator {
  opacity: 0.6;
}

.mnd-breadcrumbs-current {
  color: #111827;
}
.widget {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.widget-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: radial-gradient(circle at top left, #0b1120 0, #020617 55%, #000000 100%);
  color: #e5e7eb;
}

.mnd-footer-root {
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.35), transparent 55%), radial-gradient(circle at bottom right, rgb(80 80 80 / 35%), transparent 55%), #0c0c0c;
  padding: 40px 15px 20px 15px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  position: relative;
}

.mnd-footer-glass-wrap {
  max-width: 1270px;
  margin: 0 auto;
  padding: 40px;

}

.mnd-footer-glass-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(34, 197, 94, 0.16), transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.mnd-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.mnd-section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff9800;
  margin-bottom: 20px;
  font-weight: 800;
}

.mnd-footer-logo img {
  height: 45px;
  width: auto;
  margin-bottom: 15px;
}

.mnd-brand-text {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
  margin-bottom: 20px;
}

.mnd-social-flex {
  display: flex;
  gap: 10px;
}

.mnd-social-item {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mnd-social-item img {
  width: 20px;
  height: 20px;
}

.mnd-social-item:hover {
  background: rgba(255, 152, 0, 0.15);
  border-color: #ff9800;
  transform: translateY(-3px);
}

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

.mnd-footer-nav a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.18s ease, text-shadow 0.18s ease;
}

.mnd-footer-nav a:hover {
  color: #f9fafb;
  transform: translateX(3px);
  text-shadow: 0 0 18px rgba(248, 250, 252, 0.65);
}

.mnd-contacts-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mnd-phone-btn {
  background: radial-gradient(circle at 0 0, #f97316, #ea580c);
  color: #020617 !important;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-position 0.25s ease;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
  background-size: 140% 140%;
}

.mnd-phone-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.55);
  background-position: 15% 0;
}

.mnd-mail-link {
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
  font-size: 15px;
  display: block;
  opacity: 0.8;
}

.mnd-mail-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.mnd-legal-info {
  margin-top: 20px;
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.mnd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.mnd-copy {
  font-size: 13px;
  color: #555;
}

.mnd-developer {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.18s ease, text-shadow 0.18s ease, transform 0.18s ease;
}

.mnd-developer span {
  color: #ff9800;
  font-weight: bold;
}

.mnd-developer:hover {
  color: #f9fafb;
  text-shadow: 0 0 18px rgba(248, 250, 252, 0.7);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .mnd-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .mnd-footer-glass-wrap {
    padding: 30px 20px;
  }

  .mnd-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .mnd-social-flex {
    justify-content: center;
  }

  .mnd-contacts-block {
    align-items: center;
  }

  .mnd-footer-nav a:hover {
    padding-left: 0;
  }

  .mnd-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 2rem;
}

@media (max-width: 960px) {
  .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-widgets {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding-top: 1rem;
  font-size: 0.8125rem;
}

.footer-menu {
  display: flex;
  gap: 1rem;
}

.footer-menu a {
  color: #9ca3af;
}

.footer-menu a:hover {
  color: #e5e7eb;
}

:root {
  --f-dark: #07080a;
  --f-glass: rgba(255, 255, 255, 0.03);
  --f-glass-hover: rgba(255, 255, 255, 0.06);
  --f-border: rgba(255, 255, 255, 0.08);
  --f-accent: #ff9800;
  --f-text: #ffffff;
  --f-text-muted: #8a8f98;
}

.st-premium-footer {
  background-color: var(--f-dark);
  padding: 40px 20px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
  color: var(--f-text);
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.st-footer-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.st-footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.st-tile {
  background: var(--f-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--f-border);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.4s ease;
}

.st-tile:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--f-glass-hover);
  transform: translateY(-2px);
}

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

.st-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.st-logo-box {
  background: linear-gradient(135deg, #ffb74d, #f97316);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
}

.st-logo-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.st-logo-sub {
  font-size: 12px;
  color: var(--f-text-muted);
}

.st-nav {
  display: flex;
  gap: 20px;
}

.st-nav a {
  color: var(--f-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.st-nav a:hover {
  color: var(--f-accent);
}

.st-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.st-tile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--f-text-muted);
  margin-bottom: 20px;
}

.st-tile-contacts {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
}

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

.st-person-item {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.st-p-avatar {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--f-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.st-p-phone {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--f-text);
  text-decoration: none;
  margin-bottom: 2px;
}

.st-p-desc {
  font-size: 13px;
  color: var(--f-text-muted);
}

.st-p-desc span {
  color: var(--f-accent);
}

.st-tile-icon-bg {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 80px;
  opacity: 0.03;
  transform: rotate(-15deg);
}

.st-tile-social {
  grid-column: span 1;
}

.st-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.st-soc-link {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--f-border);
  padding: 12px 5px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: var(--f-text);
  font-size: 12px;
  transition: 0.3s;
}

.st-soc-link:hover {
  background: var(--f-accent);
  color: #000;
  border-color: var(--f-accent);
}

.st-tile-info {
  grid-column: span 1;
}

.st-info-rows {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.st-info-row {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.st-info-icon {
  font-size: 18px;
}

.st-info-text strong {
  display: block;
  font-size: 14px;
}

.st-info-text span {
  font-size: 12px;
  color: var(--f-text-muted);
}

.st-mail-row {
  margin-top: 5px;
  color: var(--f-accent);
}

.st-tile-legal {
  grid-column: span 4;
}

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

.st-legal-item span {
  display: block;
  font-size: 11px;
  color: var(--f-text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.st-legal-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 210, 255, 0.1);
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.st-badge-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--f-accent);
}

.st-badge-txt {
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
}

.st-tile-bottom {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  font-size: 13px;
  color: var(--f-text-muted);
}

.stopyright strong {
  color: var(--f-text);
}

.st-dev-link {
  color: inherit;
  text-decoration: none;
}

.st-dev-link span {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .st-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-tile-legal {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .st-tile-header,
  .st-nav {
    display: none;
  }

  .st-bento-grid {
    grid-template-columns: 1fr;
  }

  .st-tile-contacts,
  .st-tile-social,
  .st-tile-info,
  .st-tile-legal {
    grid-column: span 1;
  }

  .st-legal-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .st-tile-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.hidden {
  display: none !important;
}

/* 1. ФИКСАЦИЯ МЕНЮ (ПК и Мобильная версия) */
.site-header {
    position: fixed !important; /* Делаем шапку всегда видимой */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Чтобы была поверх всего */
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Компенсируем отступ сверху для контента, так как шапка теперь вырвана из потока */
body {
    padding-top: 72px; 
}

/* Исправляем ширину шапки (ваша старая проблема) */
.site-header-inner {
    width: 100% !important;
    max-width: 1270px !important;
    margin: 0 auto !important;
    padding: 0 20px;
}

/* 2. СОВРЕМЕННАЯ МОБИЛЬНАЯ КНОПКА "ПОЗВОНИТЬ" */
.mnd-mobile-call-bar {
    display: none; /* Скрыта на ПК */
}

@media (max-width: 768px) {
    .mnd-mobile-call-bar {
        display: flex;
        position: fixed;
        bottom: 20px; /* Отступ от низа */
        left: 50%;
        transform: translateX(-50%);
        width: 90%; /* Ширина на весь экран с отступами */
        background: #ff9800; /* Ваш фирменный оранжевый */
        color: #fff !important;
        padding: 15px 20px;
        border-radius: 16px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 99999;
        box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
        animation: mndPulseBtn 2s infinite;
    }

    .mnd-mobile-call-bar svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

    /* Анимация пульсации, чтобы привлекать внимание */
    @keyframes mndPulseBtn {
        0% { box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4); }
        50% { box-shadow: 0 10px 40px rgba(255, 152, 0, 0.7); }
        100% { box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4); }
    }
    
    /* Делаем небольшой отступ снизу у сайта, чтобы кнопка не перекрывала футер */
    footer {
        padding-bottom: 80px;
    }
}

       .sm-hero-final {
  position: relative;
  background-image: var(--mnd-dynamic-bg, radial-gradient(circle at top, #111827, #020617));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* остальной твой код — отступы, высота и т.д. не трогай */
 position: relative;
        min-height: 75vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 40px 0 80px 0;
    }

    /* Умное затемнение: плотнее слева, мягче справа */
    .sm-hero-bg-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, 
            rgba(0,0,0,0.95) 0%, 
            rgba(0,0,0,0.7) 45%, 
            rgba(0,0,0,0.4) 100%);
        z-index: 1;
    }

    .sm-hero-container {
        position: relative;
        z-index: 2;
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    /* ТЕКСТОВЫЕ БЛОКИ */
    .sm-hero-info { flex: 1.2; }

    .sm-hero-badges { display: flex; gap: 15px; margin-bottom: 25px; }
    .sm-badge-yellow { background: #ffcc00; color: #000; padding: 6px 15px; border-radius: 4px; font-weight: 800; font-size: 13px; text-transform: uppercase; }
    .sm-badge-outline { border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 5px 15px; border-radius: 4px; font-size: 13px; font-weight: 600; text-transform: uppercase; }

    .sm-hero-h1 {
        color: #ffffff !important; /* Принудительно белый */
        font-size: clamp(32px, 5vw, 64px);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
        text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    }

    .sm-hero-accent { color: #ffcc00; border-bottom: 6px solid #ffcc00; }

    .sm-hero-p {
        font-size: clamp(16px, 2vw, 20px);
        color: rgba(255,255,255,0.9);
        max-width: 600px;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .sm-hero-advantages { display: flex; gap: 35px; }
    .sm-adv-item { color: rgba(255,255,255,0.7); font-size: 14px; }
    .sm-adv-item b { display: block; font-size: 24px; color: #ffcc00; margin-bottom: 5px; }

    /* СТЕКЛЯННАЯ КАРТОЧКА */
    .sm-hero-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 24px;
        padding: 40px;
        max-width: 440px;
        width: 100%;
        box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    }

    .sm-card-tel {
        display: block;
        color: #fff;
        text-decoration: none;
        font-size: clamp(20px, 3.5vw, 28px); /* Адаптивный размер шрифта */
        font-weight: 900;
        margin-bottom: 10px;
        transition: 0.3s;
        white-space: nowrap; /* Чтобы номер не рвался */
    }
    .sm-card-tel:hover { color: #ffcc00; }

    .sm-hero-btn {
        width: 100%;
        background: #ffcc00;
        color: #000;
        border: none;
        padding: 20px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 10px;
    }
    .sm-hero-btn:hover { background: #fff; transform: translateY(-3px); }

    /* ИКОНКИ */
    .sm-social-row { display: flex; gap: 15px; margin-top: 10px; }
    .sm-soc-icon { width: 44px; height: 44px; border-radius: 50%; background-size: 60%; background-position: center; background-repeat: no-repeat; background-color: rgba(255,255,255,0.1); transition: 0.3s; }
    .sm-soc-icon:hover { transform: scale(1.1); background-color: #ffcc00; }
    .sm-vi { background-image: url('/wp-content/uploads/2026/03/free-icon-viber-2504948-e1773333482785.png'); }
    .sm-tg { background-image: url('/wp-content/uploads/2026/03/free-icon-telegram-2504941-e1773333488533.png'); }
    .sm-wa { background-image: url('/wp-content/uploads/2026/03/free-icon-whatsapp-2504957-e1773333503996.png'); }

    /* БЕГУЩАЯ СТРОКА */
    .sm-ticker-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255,204,0,0.9);
        padding: 12px 0;
        z-index: 3;
    }
    .sm-ticker {
        display: flex;
        white-space: nowrap;
        animation: sm-scroll 30s linear infinite;
    }
    .sm-ticker span {
        color: #000;
        font-weight: 800;
        font-size: 14px;
        padding: 0 30px;
    }

    /* АНИМАЦИИ ПОЯВЛЕНИЯ */
    [class*="sm-anim-"] { opacity: 0; transform: translateY(30px); animation: smFadeUp 0.8s forwards ease-out; }
    .sm-anim-1 { animation-delay: 0.2s; }
    .sm-anim-2 { animation-delay: 0.4s; }
    .sm-anim-3 { animation-delay: 0.6s; }
    .sm-anim-4 { animation-delay: 0.8s; }
    .sm-anim-5 { animation-delay: 1s; }

    @keyframes smFadeUp {
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes sm-scroll {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    /* АДАПТИВНОСТЬ */
    @media (max-width: 991px) {
        .sm-hero-container { flex-direction: column; text-align: center; padding-top: 20px; }
        .sm-hero-badges, .sm-hero-advantages, .sm-social-row { justify-content: center; }
        .sm-hero-final { background-position: 20% bottom; padding-bottom: 120px; }
        .sm-hero-info { margin-bottom: 30px; }
        .sm-hero-bg-overlay { background: rgba(0,0,0,0.85); }
    }
 .sm-srv-section {
        background-color: #f9f9f9;
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
    }

    .sm-srv-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Заголовок секции */
    .sm-srv-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .sm-srv-tag {
        display: inline-block;
        background: #eee;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #777;
        margin-bottom: 15px;
    }

    .sm-srv-title {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 900;
        color: #111;
        margin: 0;
        text-transform: uppercase;
    }

    .sm-srv-divider {
        width: 60px;
        height: 4px;
        background: #ffcc00;
        margin: 20px auto 0;
    }

    /* Сетка */
    .sm-srv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }

    /* Карточка услуги */
    .sm-srv-card {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        border: 1px solid #eee;
        transition: all 0.4s ease;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 240px;
    }

    .sm-srv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border-color: #ffcc00;
    }

    /* Подсветка новых важных карточек */
    .sm-srv-highlight {
        border-left: 4px solid #ffcc00;
    }

    .sm-srv-num {
        font-size: 48px;
        font-weight: 900;
        color: #f0f0f0;
        position: absolute;
        top: 20px;
        right: 30px;
        line-height: 1;
        transition: 0.3s;
    }

    .sm-srv-card:hover .sm-srv-num {
        color: rgba(255, 204, 0, 0.2);
    }

    .sm-srv-name {
        font-size: 20px;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0 0 15px 0;
        line-height: 1.3;
        position: relative;
        z-index: 2;
    }

    .sm-srv-text {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

    .sm-srv-link {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        transition: 0.3s;
    }

    a.sm-srv-link:hover {
        color: #ffcc00;
        padding-left: 5px;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .sm-srv-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .sm-srv-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .sm-srv-section { padding: 60px 0; }
        .sm-srv-card { padding: 30px; }
    }
  /* Основная секция */
    .sm-cta {
        position: relative;
        padding: 100px 0;
        background: #0f0f0f url('/wp-content/uploads/2026/02/styazkabanner1-1.jpg') no-repeat center center / cover;
        background-attachment: fixed; /* Эффект параллакса */
        color: #fff;
        overflow: hidden;
    }

    /* Наложение для глубины и читаемости */
    .sm-cta-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 50%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%);
        z-index: 1;
    }

    .sm-cta-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    /* Левая сторона */
    .sm-cta-content { flex: 1; }

    .sm-cta-title {
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .sm-cta-title span { color: #ffcc00; }

    .sm-cta-desc {
        font-size: 18px;
        color: rgba(255,255,255,0.7);
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .sm-cta-bonuses {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sm-cta-bonus-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .sm-bonus-icon {
        font-size: 14px;
        font-weight: 900;
        color: #ffcc00;
        border: 1px solid #ffcc00;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .sm-bonus-text { font-size: 16px; font-weight: 600; }

    /* Правая сторона - Форма */
    .sm-cta-form-wrap {
        flex: 0 1 420px;
        position: relative;
    }

    .sm-cta-form {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 30px;
        box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    }

    .sm-cta-form h3 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .sm-cta-form p {
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        margin-bottom: 30px;
    }

    .sm-input-group { margin-bottom: 15px; }

    .sm-cta-form input {
        width: 100%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        padding: 16px 20px;
        border-radius: 12px;
        color: #fff;
        font-size: 16px;
        transition: 0.3s;
        box-sizing: border-box;
    }

    .sm-cta-form input:focus {
        background: rgba(255,255,255,0.15);
        border-color: #ffcc00;
        outline: none;
    }

    .sm-cta-submit {
        width: 100%;
        background: #ffcc00;
        color: #000;
        border: none;
        padding: 18px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 10px;
    }

    .sm-cta-submit:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 204, 0, 0.3);
    }

    .sm-form-note {
        font-size: 11px !important;
        margin-top: 20px !important;
        line-height: 1.4;
    }

    /* Статус-бар */
    .sm-cta-status {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        background: #1a1a1a;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sm-status-dot {
        width: 8px;
        height: 8px;
        background: #27ae60;
        border-radius: 50%;
        box-shadow: 0 0 10px #27ae60;
        animation: sm-blink 1.5s infinite;
    }

    @keyframes sm-blink {
        50% { opacity: 0.3; }
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .sm-cta-container { flex-direction: column; text-align: center; }
        .sm-cta-bonuses { align-items: center; margin-bottom: 40px; }
        .sm-cta-form-wrap { width: 100%; }
        .sm-cta { background-attachment: scroll; }
    }
 .sm-benefits {
        background-color: #ffffff;
        padding: 100px 0;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    .sm-benefits-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Заголовок блока */
    .sm-benefits-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .sm-benefits-title {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 900;
        color: #1a1a1a;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: -0.5px;
    }

    .sm-benefits-title span {
        color: #ffcc00;
        position: relative;
        z-index: 1;
    }

    .sm-benefits-title span::after {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 12px;
        background: rgba(255, 204, 0, 0.2);
        z-index: -1;
    }

    .sm-benefits-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Сетка преимуществ */
    .sm-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .sm-benefit-card {
        background: #fcfcfc;
        border: 1px solid #f0f0f0;
        padding: 45px 35px;
        border-radius: 20px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow: hidden;
        cursor: default;
    }

    .sm-benefit-card:hover {
        background: #ffffff;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        border-color: #ffcc00;
    }

    /* Иконки */
    .sm-benefit-icon-wrap {
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: #ffcc00;
        box-shadow: 0 10px 20px rgba(255,204,0,0.1);
        transition: 0.3s;
    }

    .sm-benefit-card:hover .sm-benefit-icon-wrap {
        background: #ffcc00;
        color: #000;
    }

    .sm-benefit-icon-wrap svg {
        width: 32px;
        height: 32px;
    }

    /* Текст внутри карточек */
    .sm-benefit-card h3 {
        font-size: 20px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .sm-benefit-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

    /* Декоративная линия */
    .sm-benefit-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: #ffcc00;
        transition: width 0.4s ease;
    }

    .sm-benefit-card:hover .sm-benefit-line {
        width: 100%;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .sm-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 650px) {
        .sm-benefits { padding: 60px 0; }
        .sm-benefits-grid {
            grid-template-columns: 1fr;
        }
        .sm-benefit-card { padding: 35px 25px; }
        .sm-benefits-header { margin-bottom: 40px; }
    }
  .sm-faq-section {
        background-color: #111;
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
        color: #fff;
    }

    .sm-faq-container {
        max-width: 900px; /* Сужаем для удобства чтения */
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Заголовок */
    .sm-faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .sm-faq-title {
        font-size: clamp(26px, 4vw, 38px);
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .sm-faq-title span {
        color: #ffcc00;
    }

    .sm-faq-subtitle {
        color: #888;
        font-size: 17px;
    }

    /* Аккордеон */
    .sm-faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sm-faq-item {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 15px;
        overflow: hidden;
        transition: 0.3s;
    }

    .sm-faq-item:hover {
        border-color: rgba(255, 204, 0, 0.4);
        background: rgba(255,255,255,0.05);
    }

    /* Скрываем чекбокс */
    .sm-faq-input {
        display: none;
    }

    /* Шапка вопроса */
    .sm-faq-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 30px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        user-select: none;
        transition: 0.3s;
    }

    /* Иконка плюс/минус */
    .sm-faq-icon {
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .sm-faq-icon::before,
    .sm-faq-icon::after {
        content: "";
        position: absolute;
        background-color: #ffcc00;
        transition: 0.3s;
    }

    /* Горизонтальная палочка */
    .sm-faq-icon::before {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    /* Вертикальная палочка */
    .sm-faq-icon::after {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    /* Контент вопроса (скрыт по умолчанию) */
    .sm-faq-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 30px;
        color: #aaa;
        line-height: 1.7;
        font-size: 16px;
    }

    .sm-faq-content p {
        margin-bottom: 25px;
    }

    /* Состояние при открытии */
    .sm-faq-input:checked ~ .sm-faq-content {
        max-height: 500px; /* Достаточная высота для текста */
        padding-top: 10px;
    }

    .sm-faq-input:checked ~ .sm-faq-trigger {
        color: #ffcc00;
    }

    /* Поворот иконки в минус */
    .sm-faq-input:checked ~ .sm-faq-trigger .sm-faq-icon::after {
        transform: translateX(-50%) rotate(90deg);
        opacity: 0;
    }

    /* Адаптивность */
    @media (max-width: 600px) {
        .sm-faq-trigger {
            padding: 20px;
            font-size: 16px;
        }
        .sm-faq-content {
            padding: 0 20px;
        }
        .sm-faq-section {
            padding: 60px 0;
        }
    }
.sm-seo-block {
        background-color: #ffffff;
        padding: 100px 0;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        overflow: hidden;
    }

    .sm-seo-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .sm-seo-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
        align-items: center;
    }

    /* Текст */
    .sm-seo-label {
        color: #ffcc00;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 15px;
    }

    .sm-seo-title {
        font-size: clamp(26px, 3.5vw, 38px);
        font-weight: 900;
        color: #111;
        line-height: 1.2;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    .sm-seo-text {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 40px;
    }

    .sm-seo-text p {
        margin-bottom: 20px;
    }

    .sm-seo-text strong {
        color: #000;
        font-weight: 700;
    }

    /* Кнопка */
    .sm-portfolio-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: #111;
        color: #fff;
        text-decoration: none;
        padding: 18px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .sm-portfolio-btn svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .sm-portfolio-btn:hover {
        background: #ffcc00;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 204, 0, 0.3);
    }

    .sm-portfolio-btn:hover svg {
        transform: translateX(5px);
    }

    /* Фотографии */
    .sm-seo-images {
        position: relative;
        padding-bottom: 40px;
    }

    .sm-img-wrapper {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        transition: transform 0.5s ease;
    }

    .sm-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sm-img-main {
        width: 85%;
        aspect-ratio: 4/5;
        position: relative;
        z-index: 2;
    }

    .sm-img-sub {
        width: 65%;
        aspect-ratio: 1/1;
        position: absolute;
        bottom: -20px;
        right: 0;
        z-index: 3;
        border: 8px solid #fff;
    }

    .sm-seo-decor {
        position: absolute;
        top: -30px;
        left: -30px;
        width: 150px;
        height: 150px;
        background: radial-gradient(#ffcc00 20%, transparent 20%);
        background-size: 15px 15px;
        z-index: 1;
        opacity: 0.3;
    }

    .sm-img-wrapper:hover {
        transform: scale(1.03);
        z-index: 10;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .sm-seo-grid {
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: center;
        }
        .sm-seo-images {
            max-width: 500px;
            margin: 0 auto;
        }
        .sm-portfolio-btn {
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .sm-seo-block { padding: 60px 0; }
        .sm-img-sub { border-width: 4px; }
    }
/* REVIEWS SECTION STYLES */
    .sm-rev-section {
        background-color: #fdfdfd;
        padding: 100px 0;
        font-family: 'Inter', 'Segoe UI', sans-serif;
    }

    .sm-rev-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .sm-rev-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .sm-rev-title {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 900;
        color: #111;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .sm-rev-title span { color: #ffcc00; }

    .sm-rev-subtitle { color: #666; font-size: 18px; }

    /* Сетка отзывов */
    .sm-rev-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 70px;
    }

    .sm-rev-card {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        border: 1px solid #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        transition: 0.3s;
    }

    .sm-rev-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.07);
        border-color: #ffcc00;
    }

    .sm-rev-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .sm-rev-user { font-weight: 800; font-size: 18px; color: #111; }

    .sm-rev-date { 
        font-size: 12px; 
        font-weight: 700; 
        color: #aaa; 
        text-transform: uppercase; 
        background: #f9f9f9;
        padding: 4px 10px;
        border-radius: 4px;
    }

    .sm-rev-rating { color: #ffcc00; font-size: 18px; margin-bottom: 20px; letter-spacing: 2px; }

    .sm-rev-text { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 25px; }

    .sm-rev-object { 
        font-size: 13px; 
        font-weight: 600; 
        color: #999; 
        border-top: 1px solid #f0f0f0; 
        padding-top: 15px;
    }

    /* Блок отправки отзыва */
    .sm-rev-action {
        background: #f9f9f9;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        border: 1px dashed #ddd;
    }

    .sm-rev-action-text {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #333;
    }

    .sm-rev-action-btns {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .sm-rev-btn-mail, .sm-rev-btn-msg {
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .sm-rev-btn-mail { background: #333; color: #fff; }
    .sm-rev-btn-mail:hover { background: #000; }

    .sm-rev-btn-msg.viber { background: #7350f2; color: #fff; }
    .sm-rev-btn-msg.telegram { background: #0088cc; color: #fff; }
    .sm-rev-btn-msg:hover { transform: scale(1.05); opacity: 0.9; }

    /* BOTTOM STRIP STYLES */
    .sm-bottom-strip {
        background: #000;
        border-top: 1px solid #222;
        padding: 30px 0;
        color: #fff;
    }

    .sm-strip-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .sm-strip-text { font-size: 16px; font-weight: 600; color: #777; }

    .sm-strip-phones { display: flex; align-items: center; gap: 20px; }
    .sm-strip-tel { font-size: 22px; font-weight: 900; color: #fff; text-decoration: none; transition: 0.3s; }
    .sm-strip-tel:hover { color: #ffcc00; }
    
    .sm-strip-divider { width: 1px; height: 25px; background: #333; }

    .sm-strip-social { display: flex; gap: 12px; }
    .sm-strip-soc-link {
        font-size: 12px; font-weight: 900; padding: 7px 12px; border-radius: 6px;
        text-decoration: none; color: #fff; transition: 0.3s;
    }
    .sm-strip-soc-link.tg { background: #0088cc; }
    .sm-strip-soc-link.vb { background: #7350f2; }
    .sm-strip-soc-link:hover { transform: translateY(-3px); }

    /* Mobile Adaptivity */
    @media (max-width: 991px) {
        .sm-rev-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .sm-rev-grid { grid-template-columns: 1fr; }
        .sm-rev-section { padding: 60px 0; }
        .sm-strip-container { flex-direction: column; text-align: center; gap: 20px; }
        .sm-strip-divider { display: none; }
        .sm-strip-phones { flex-direction: column; gap: 10px; }
    }

/* POSTS CAROUSEL (SHORTCODE [mnd_posts_carousel]) */
.mnd-posts-carousel-wrap {
  margin: 3rem auto;
  max-width: 1270px;
  padding: 0 16px;
}

.mnd-posts-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mnd-posts-carousel-heading {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
}

.mnd-posts-carousel {
  padding-bottom: 2.8rem;
}

.mnd-posts-carousel-card {
  background: radial-gradient(circle at top left, rgba(255, 152, 0, 0.06) 0, #ffffff 40%, #f9fafb 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.mnd-posts-carousel-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.mnd-posts-carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mnd-posts-carousel-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.45));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mnd-posts-carousel-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #e5e7eb 0, #cbd5f5 40%, #9ca3af 100%);
  color: #374151;
  font-size: 0.875rem;
}

.mnd-posts-carousel-card:hover .mnd-posts-carousel-thumb img {
  transform: scale(1.05);
}

.mnd-posts-carousel-card:hover .mnd-posts-carousel-thumb::after {
  opacity: 1;
}

.mnd-posts-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
  border-color: rgba(249, 115, 22, 0.65);
  background: radial-gradient(circle at top left, rgba(255, 152, 0, 0.09) 0, #ffffff 45%, #f3f4f6 100%);
}

.mnd-posts-carousel-body {
  padding: 1.3rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mnd-posts-carousel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.mnd-posts-carousel-date {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #9ca3af;
}

.mnd-posts-carousel-dot {
  opacity: 0.6;
}

.mnd-posts-carousel-title {
  font-size: 1.02rem;
  margin: 0;
}

.mnd-posts-carousel-title a {
  color: #111827;
  text-decoration: none;
}

.mnd-posts-carousel-title a:hover {
  color: #ff9800;
}

.mnd-posts-carousel-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mnd-posts-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.mnd-posts-carousel-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
}

.mnd-posts-carousel-prev {
  left: 0;
  margin-left: -6px;
}

.mnd-posts-carousel-prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.mnd-posts-carousel-next {
  right: 0;
  margin-right: -6px;
}

.mnd-posts-carousel-next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

.mnd-posts-carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: #ff9800;
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5);
}

.mnd-posts-carousel-arrow:hover::before {
  border-color: #111827;
}

.mnd-posts-carousel-pagination {
  --swiper-pagination-color: #ff9800;
  --swiper-pagination-bullet-inactive-color: #d1d5db;
}

@media (max-width: 1024px) {
  .mnd-posts-carousel-card {
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .mnd-posts-carousel-wrap {
    margin: 2.2rem 0;
  }

  .mnd-posts-carousel {
    padding-bottom: 2.3rem;
  }

  .mnd-posts-carousel-card {
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
  }

  .mnd-posts-carousel-prev {
    margin-left: 4px;
  }

  .mnd-posts-carousel-next {
    margin-right: 4px;
  }
}
.sm-form-success {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.9rem;
}
.sm-form-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Успешная отправка */
.sm-form-status--ok {
  background: #00682b;
  border: 1px solid #22c55e;
  color: #166534;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.25);
}

/* Ошибка */
.sm-form-status--error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #b91c1c;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25);
}

/* ===== Blog (archive + single) ===== */
.blog-page .site-main,
.blog-single .site-main {
  background: #f3f4f6;
}

.blog-hero {
  background: linear-gradient(135deg, #0f1116 0%, #1a1d26 50%, #0f1116 100%);
  color: #fff;
  padding: 72px 0 64px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(252, 204, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 204, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.blog-hero-inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.blog-breadcrumbs a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.blog-breadcrumbs a:hover {
  color: #fc0;
}

.blog-breadcrumbs span {
  color: #fc0;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 204, 0, 0.3);
  background: rgba(252, 204, 0, 0.08);
  color: #fc0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #fff;
}

.blog-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

.blog-layout {
  max-width: 1270px;
  margin: 0 auto;
  padding: 2.5rem 20px 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.blog-main-col {
  min-width: 0;
}

/* Archive cards */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(15, 17, 22, 0.1);
  margin-bottom: 1.5rem;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 17, 22, 0.14);
}

.blog-featured-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: #fc0;
  color: #111;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
}

.blog-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(15, 17, 22, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(15, 17, 22, 0.12);
  border-color: rgba(252, 204, 0, 0.45);
}

.blog-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.6rem;
}

.blog-meta-tag {
  padding: 0.15rem 0.5rem;
  background: rgba(252, 204, 0, 0.15);
  color: #996800;
  border-radius: 4px;
  font-weight: 600;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: #111;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.55;
  margin: 0 0 0.75rem;
  flex: 1;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: #b8860b !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-featured .blog-card-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0.65rem;
}

/* Single article */
.blog-single .single-entry-card {
  border-radius: 1.25rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(15, 17, 22, 0.1);
}

.blog-single .single-entry-header {
  padding: 2rem 2rem 0;
  margin-bottom: 0;
}

.blog-single .single-entry-title {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 900;
  color: #111;
  line-height: 1.2;
}

.blog-single .single-entry-meta {
  gap: 0.5rem;
  margin-bottom: 0;
}

.blog-single .single-entry-date,
.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  background: #f5f5f5;
  border-radius: 6px;
  font-weight: 600;
  color: #555;
}

.blog-single .single-entry-cats a,
.blog-tag {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  background: rgba(252, 204, 0, 0.18);
  color: #996800 !important;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
}

.blog-article-body {
  padding: 1.75rem 2rem 2rem;
}

.blog-article-body .entry-content {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #333;
}

.blog-article-body .entry-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  margin: 2rem 0 0.85rem;
  padding-left: 1rem;
  border-left: 4px solid #fc0;
}

.blog-article-body .entry-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin: 1.5rem 0 0.65rem;
}

.blog-article-body .entry-content p {
  margin: 0 0 1rem;
}

.blog-article-body .entry-content ul,
.blog-article-body .entry-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.blog-article-body .entry-content li {
  margin-bottom: 0.4rem;
}

.blog-article-body .entry-content a {
  color: #b8860b;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article-body .entry-content a:hover {
  color: #996800;
}

.blog-article-body .entry-content img {
  border-radius: 12px;
  margin: 1.25rem 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-article-cta {
  margin-top: 2rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #0f1116, #1a1d26);
  border-radius: 1rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.blog-article-cta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fc0;
}

.blog-article-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

.blog-article-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, #fc0, #e6a800);
  color: #111 !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(252, 204, 0, 0.35);
  transition: transform 0.2s ease;
}

.blog-btn-gold:hover {
  transform: translateY(-2px);
}

.blog-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.35rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none !important;
}

.blog-btn-outline:hover {
  border-color: #fc0;
  color: #fc0 !important;
}

/* Sidebar v2 */
.blog-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.blog-widget {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(15, 17, 22, 0.07);
}

.blog-widget-dark {
  background: linear-gradient(145deg, #0f1116, #1a1d26);
  border-color: rgba(252, 204, 0, 0.15);
  color: #fff;
}

.blog-widget-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(252, 204, 0, 0.35);
}

.blog-widget-dark .blog-widget-title {
  color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(252, 204, 0, 0.25);
}

.blog-sidebar-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blog-sidebar-post {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  text-decoration: none !important;
  padding: 0.65rem;
  margin: -0.65rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.blog-sidebar-post:hover {
  background: rgba(252, 204, 0, 0.08);
}

.blog-sidebar-post-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar-post-info {
  flex: 1;
  min-width: 0;
}

.blog-sidebar-post-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

.blog-sidebar-post:hover .blog-sidebar-post-title {
  color: #b8860b;
}

.blog-sidebar-post-date {
  font-size: 0.72rem;
  color: #999;
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.blog-toc-list a {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.blog-toc-list a:hover {
  background: rgba(252, 204, 0, 0.1);
  color: #111;
  border-left-color: #fc0;
}

.blog-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-services-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-services-list li:last-child {
  border-bottom: none;
}

.blog-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333 !important;
  text-decoration: none !important;
}

.blog-services-list a::after {
  content: "→";
  color: #fc0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.blog-services-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.blog-cta-widget {
  text-align: center;
}

.blog-cta-widget p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.blog-cta-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fc0 !important;
  text-decoration: none !important;
  margin-bottom: 0.35rem;
}

.blog-cta-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.blog-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-benefits li {
  font-size: 0.85rem;
  color: #555;
  padding-left: 1.35rem;
  position: relative;
}

.blog-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fc0;
  font-weight: 800;
}

.blog-widget-dark .blog-benefits li {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-single .single-entry-header,
  .blog-article-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .blog-hero {
    padding: 56px 0 48px;
  }
}