:root {
  /* Colors */
  --bg-dark: #0b0c10;
  --bg-card: #13151c;
  --bg-card-hover: #1b1e28;
  --primary: #f5b000; /* Rich Renault Gold-Yellow */
  --primary-glow: rgba(245, 176, 0, 0.25);
  --primary-light: #ffd260;
  --text-main: #f1f3f9;
  --text-muted: #8e95a5;
  --text-dark: #0b0c10;
  --white: #ffffff;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(245, 176, 0, 0.4);
  
  /* Fonts */
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px var(--primary-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #252836;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography & Global Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

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

ul {
  list-style: none;
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.text-primary {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 176, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  background: rgba(245, 176, 0, 0.03);
}

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

.section-subtitle {
  font-family: var(--font-title);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.25rem 0;
  background: rgba(11, 12, 16, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  padding: 0.75rem 0;
  background: rgba(11, 12, 16, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  right: 15%;
  bottom: 15%;
  background: var(--bg-dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-icon-inner {
  width: 16px;
  height: 16px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
}

.logo-text {
  background: linear-gradient(135deg, var(--white) 60%, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text span {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Navigation Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  background: rgba(19, 21, 28, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0.85rem 0;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px) scale(1);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-hover);
}

.dropdown-menu-list a {
  padding: 0.7rem 1.5rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: block;
}

.dropdown-menu-list a::after {
  display: none !important;
}

.dropdown-menu-list a:hover,
.dropdown-menu-list a.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.03);
  padding-left: 1.75rem;
}


.header-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-link .phone-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link .phone-num i {
  color: var(--primary);
  font-size: 0.9rem;
}

.phone-link .phone-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Responsive Header */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .header-contacts .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .phone-link .phone-num {
    font-size: 0.95rem;
  }
  .phone-link .phone-label {
    display: none;
  }
  .logo {
    font-size: 1.25rem;
    gap: 0.5rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  .logo-icon-inner {
    width: 13px;
    height: 13px;
  }
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(245, 176, 0, 0.07) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(30, 41, 59, 0.2) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./../images/reno-sto.png') center center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(100%) brightness(0.6);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-cols: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-cols: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 176, 0, 0.1);
  border: 1px solid rgba(245, 176, 0, 0.2);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--white) 30%, #a1a8b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight {
  display: inline;
  background: linear-gradient(135deg, var(--primary) 0%, #ffdf7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

.hero-features {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

@media (max-width: 640px) {
  .hero-features {
    grid-template-cols: 1fr;
    gap: 1.5rem;
  }
}

.hero-feat-item {
  display: flex;
  flex-direction: column;
}

.hero-feat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-feat-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Card Badge image decoration for Hero Right Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: linear-gradient(135deg, rgba(20, 22, 30, 0.7) 0%, rgba(11, 12, 16, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 176, 0, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.hero-card-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.hero-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-card-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-card-icon {
  width: 24px;
  height: 24px;
  background: rgba(245, 176, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.hero-card-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

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

.hero-card-btn {
  position: relative;
  z-index: 1;
  width: 100%;
}

.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  top: -10%;
  right: -10%;
}

.orb-2 {
  bottom: -15%;
  left: -15%;
}

/* Sections Global */
.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 2rem;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-cols: 1fr;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 176, 0, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(245, 176, 0, 0.3);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Services Section */
.services {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0f15 50%, var(--bg-dark) 100%);
}

.services-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-cols: 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-price-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  z-index: 2;
}

.service-info {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.service-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

.service-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-time i {
  font-size: 0.85rem;
}

/* About & Diagnostic Block */
.about {
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-cols: 1fr;
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 85%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.about-img-sub {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 45%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid var(--bg-dark);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
  .about-img-main {
    width: 100%;
    height: 320px;
  }
  .about-img-sub {
    display: none;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-list-icon {
  width: 24px;
  height: 24px;
  background: rgba(245, 176, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-list-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about-list-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Stats Counter Section */
.stats {
  background: #0d0f15;
  border-y: 1px solid var(--border-color);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-cols: repeat(2, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* Interactive Pricing Calculator */
.calc-section {
  background: radial-gradient(circle at 10% 20%, rgba(245, 176, 0, 0.04) 0%, transparent 40%),
              var(--bg-dark);
}

.calc-container {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .calc-container {
    padding: 2rem 1.5rem;
  }
}

.calc-grid {
  display: grid;
  grid-template-cols: 1.2fr 0.8fr;
  gap: 3.5rem;
}

@media (max-width: 850px) {
  .calc-grid {
    grid-template-cols: 1fr;
    gap: 2.5rem;
  }
}

.calc-form-group {
  margin-bottom: 1.75rem;
}

.calc-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.calc-select-grid {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .calc-select-grid {
    grid-template-cols: repeat(2, 1fr);
  }
}

.calc-btn-option {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-btn-option:hover {
  border-color: rgba(245, 176, 0, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.calc-btn-option.selected {
  border-color: var(--primary);
  color: var(--text-dark);
  background: var(--primary);
  font-weight: 600;
}

.service-checklist {
  display: grid;
  grid-template-cols: 1fr;
  gap: 0.75rem;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom Checkbox styles */
.service-check-item {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.service-check-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-check-item.selected {
  border-color: rgba(245, 176, 0, 0.4);
  background: rgba(245, 176, 0, 0.05);
}

.service-check-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  font-size: 0.7rem;
}

.service-check-item.selected .service-check-box {
  border-color: var(--primary);
  background: var(--primary);
}

.service-check-name {
  font-size: 0.9rem;
  font-weight: 500;
  flex-grow: 1;
}

.service-check-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.calc-summary-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.calc-summary-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.calc-summary-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.calc-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.calc-summary-row .label {
  color: var(--text-muted);
}

.calc-summary-row .value {
  font-weight: 600;
  text-align: right;
}

.calc-total-box {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-total-label {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.calc-total-price {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.calc-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.calc-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.5rem;
}

.calc-loader,
.calc-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.calc-error {
  color: #ff6b6b;
}

.calc-category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  min-height: 5rem;
}

.calc-category-btn i {
  font-size: 1.25rem;
  color: var(--primary);
}

.calc-category-btn.selected i {
  color: var(--text-dark);
}

.calc-selected-model-info {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 176, 0, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(245, 176, 0, 0.2);
}

.calc-selected-model-info span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.calc-summary-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0;
}

.calc-summary-row--highlight {
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.calc-summary-row--highlight .value {
  color: var(--primary);
}

.calc-print-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#calcBookBtn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Блок печати расчёта */
.print-invoice {
  display: none;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.print-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.print-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111;
}

.print-logo span {
  color: #f5b000;
}

.print-company {
  text-align: right;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
}

.print-divider {
  border: none;
  border-top: 2px solid #f5b000;
  margin: 1rem 0 1.5rem;
}

.print-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.print-order-number {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.print-date,
.print-model {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.25rem;
}

.print-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.85rem;
}

.print-table th,
.print-table td {
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.print-table th {
  background: #f5f5f5;
  font-weight: 600;
}

.print-table td:last-child,
.print-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.print-total {
  text-align: right;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 2rem;
  color: #111;
}

.print-footer {
  font-size: 0.75rem;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  line-height: 1.6;
}

@media print {
  body * {
    visibility: hidden;
  }

  #printInvoice,
  #printInvoice * {
    visibility: visible;
  }

  #printInvoice {
    display: block !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 1.5rem;
  }

  header,
  footer,
  .btn-back-to-top,
  #successToast {
    display: none !important;
  }
}

/* Согласие на обработку ПДн */
.consent-group {
  margin-bottom: 1rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.consent-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Юридическая страница */
.legal-content h2 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--white);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--primary);
}

/* Баннер согласия на cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 176, 0, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cookie-banner-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-desc a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.75rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .cookie-banner-btn {
    width: 100%;
  }
}

/* Reviews/Testimonials Section */
.reviews {
  background: #0d0f15;
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem;
  container-type: inline-size;
}

.reviews-track {
  display: flex;
  transition: transform var(--transition-slow);
  gap: 2rem;
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  padding-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

@container (min-width: 769px) {
  .review-slide {
    flex: 0 0 calc((100cqi - 2rem) / 2);
    max-width: calc((100cqi - 2rem) / 2);
  }
}

.review-stars {
  color: var(--primary);
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  padding-right: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.review-author > div {
  min-width: 0;
  flex: 1;
}

.review-author-img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  background: var(--bg-card-hover);
}

.review-author-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.review-author-car {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.4;
}

.review-quote-icon {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 3rem;
  color: rgba(245, 176, 0, 0.08);
  pointer-events: none;
  z-index: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* Contacts & Map Section */
.contacts {
  background: var(--bg-dark);
}

.contacts-grid {
  display: grid;
  grid-template-cols: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .contacts-grid {
    grid-template-cols: 1fr;
    gap: 3rem;
  }
}

.contacts-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-item-box {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-item-box:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 176, 0, 0.08);
  border: 1px solid rgba(245, 176, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-item-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item-content a:hover {
  color: var(--primary);
}

.map-wrapper {
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #1a1d24;
}

.map-placeholder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 12, 16, 0.9) 0%, rgba(19, 21, 28, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

.map-placeholder-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.map-placeholder-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.map-placeholder-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background: #07080a;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-cols: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-cols: 1fr;
    gap: 2.5rem;
  }
}

.footer-col h3 {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-logo-desc {
  margin-top: 1.25rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.25rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  max-height: 90vh;
}

@media (max-width: 480px) {
  .modal-window {
    padding: 2rem 1.5rem;
  }
}

.modal-overlay.active .modal-window {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(245, 176, 0, 0.1);
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Success State Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-left: 5px solid #10b981;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(150%);
  transition: transform var(--transition-normal);
}

.toast.active {
  transform: translateY(0);
}

.toast-icon {
  color: #10b981;
  font-size: 1.25rem;
}

.toast-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

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

/* Floating Actions */
.btn-back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--primary);
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 999;
  border: none;
  outline: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.btn-back-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

.btn-back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 1050;
  transition: right var(--transition-normal);
  padding: 6rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-shadow: var(--shadow-lg);
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-nav-links a {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary);
}

.mobile-sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-sidebar-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Overlay for Mobile Sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 8, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Animations on Scroll elements */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Error pages (403, 404, 500 и т.д.) */
.error-page {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.error-page--standalone {
  min-height: 100vh;
}

.error-page-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.error-page-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.error-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.error-code {
  font-family: var(--font-title);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 176, 0, 0.35);
  margin-bottom: 0.5rem;
  user-select: none;
}

.error-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.error-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

.error-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.error-links a {
  color: var(--primary);
  font-weight: 600;
}

.error-links a:hover {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .error-header .nav-links,
  .error-header .header-contacts .phone-link {
    display: none;
  }

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