:root {
  --bg: #EEF1F4;
  --bg-card: #ffffff;
  --bg-dark: #ffffff;
  --ink: #12141A;
  --accent: #E04E2A;
  --accent-hover: #C93F1F;
  --accent-light: rgba(224, 78, 42, 0.1);
  --text-primary: #12141A;
  --text-secondary: #5A6575;
  --border: #E2E7EE;
  --border-light: #E8EDF3;
  --success: #1F8A5B;
  --shadow: 0 1px 2px rgba(18, 20, 26, 0.06);
  --shadow-lg: 0 12px 40px rgba(18, 20, 26, 0.08);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 14px;
  --cat-implementation: #f59e0b;
  --cat-customization: #10b981;
  --cat-support: #3d6b8c;
  --cat-update: #c45d7a;
  --cat-integration: #2a9d8f;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.hero-brand,
.brand-name,
.section-title-light {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
header {
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.header-search {
  flex: 1;
  max-width: 400px;
  margin: 0 2rem;
}
.header-search .search-input {
  margin: 0;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  font-size: 0.9rem;
  border-radius: 8px;
  background-position: 0.5rem center;
  background-size: 16px;
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: var(--shadow);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--success) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo .logo-dot {
  color: var(--success);
  display: inline-block;
  -webkit-text-fill-color: var(--success);
  animation: pulse-glow 1.5s ease-in-out infinite;
  text-shadow: 0 0 10px var(--success), 0 0 20px var(--success), 0 0 30px var(--success);
  line-height: 1;
}
.logo .logo-online {
  font-weight: 500;
  font-size: 1rem;
  -webkit-text-fill-color: var(--success);
  color: var(--success);
  line-height: 1;
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px var(--success), 0 0 20px var(--success), 0 0 30px var(--success);
  }
  50% {
    opacity: 0.5;
    text-shadow: 0 0 20px var(--success), 0 0 40px var(--success), 0 0 60px var(--success), 0 0 80px var(--success);
  }
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.online-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.online-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.hero-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #dbeafe 100%);
  border-bottom: 1px solid var(--border);
}
.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  background: linear-gradient(90deg, var(--accent-light) 0%, #eff6ff 25%, var(--accent-light) 50%, var(--accent-light) 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.search-box {
  display: none;
}
.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.75rem center;
  transition: border-color 0.2s;
}
.search-input:focus {
  outline: none;
  border-color: var(--accent);
}
.search-input::placeholder {
  color: var(--text-secondary);
}
.results-count {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  min-height: 1.5rem;
}
.packages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.packages-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.package-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
}
.package-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.package-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.package-list {
  list-style: none;
  margin: 1rem 0;
}
.package-list li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.package-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0;
}
.package-price .new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.package-price .old {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}
.package-price .save {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
}
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.faq-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-question {
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-primary);
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 2rem 2rem;
}
.sticky-filters {
  position: sticky;
  top: 60px;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  z-index: 50;
  padding: 1rem 2rem;
  margin: 0 -2rem 2rem;
  border-bottom: 1px solid var(--border);
}
.services-hero-compact {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
.services-hero-compact .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-hero-compact .hero-info {
  flex: 1;
}
.services-hero-compact .hero-info .hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.services-hero-compact .hero-info .hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}
.services-hero-compact .hero-badge {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transform: translateY(0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-hero-compact .hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.services-toolbar {
  margin-bottom: 2rem;
}
.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0 2rem;
}
.category-tabs .tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.category-tabs .tab-btn .tab-count {
  font-size: 0.75rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  font-weight: 600;
}
.category-tabs .tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.category-tabs .tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.category-tabs .tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.filters-panel {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.filters-panel .filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filters-panel .filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}
.filter-checkbox input {
  display: none;
}
.filter-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.filter-checkbox .checkmark::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.filter-checkbox:hover {
  color: var(--text-primary);
}
.filter-checkbox:hover .checkmark {
  border-color: var(--accent);
}
.filter-checkbox input:checked + .checkmark {
  border-color: var(--accent);
}
.filter-checkbox input:checked + .checkmark::after {
  opacity: 1;
}
.services-content-full {
  padding: 0 2rem;
}
.services-hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}
.services-hero .services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.services-hero .services-hero-badge .badge-icon {
  font-size: 1rem;
}
.services-hero .services-hero-badge .badge-text {
  letter-spacing: 0.3px;
}
.services-hero .services-hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.services-hero .services-hero-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.5;
}
.services-header {
  text-align: center;
  margin-bottom: 2rem;
}
.services-header .services-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.services-header .services-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 6px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.4rem;
}
.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}
.filter-btn {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.services-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
}
.services-sidebar {
  position: relative;
}
.sidebar-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1.25rem;
}
.sidebar-nav h3 {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s ease;
}
.sidebar-link .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.sidebar-link .count {
  margin-left: auto;
  font-size: 0.75rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.sidebar-link:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--accent);
}
.sidebar-link:hover .dot {
  transform: scale(1.2);
}
.sidebar-link.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 500;
}
.sidebar-link.active::before {
  background: var(--accent);
}
.sidebar-link.active .count {
  background: var(--accent);
  color: white;
}
.sticky-sidebar {
  position: sticky;
  top: 80px;
}
.services-content {
  min-width: 0;
}
.service-category {
  margin-bottom: 2rem;
}
.category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.category-title .category-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.category-title .category-count {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 0.3rem 0.75rem;
  margin-left: auto;
  transition: all 0.2s ease;
}
.category-title:hover .category-dot {
  transform: scale(1.3);
}
.category-title:hover .category-count {
  background: var(--accent-light);
  color: var(--accent);
}
.category-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s ease forwards;
}
.service-card.compact::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.service-card.compact:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
}
.service-card.compact:hover::after {
  left: 100%;
}
.service-card.compact:active {
  transform: translateY(0);
}
.service-card.compact[data-category="implementation"] {
  border-left-color: var(--cat-implementation);
}
.service-card.compact[data-category="customization"] {
  border-left-color: var(--cat-customization);
}
.service-card.compact[data-category="support"] {
  border-left-color: var(--cat-support);
}
.service-card.compact[data-category="update"] {
  border-left-color: var(--cat-update);
}
.service-card.compact[data-category="integration"] {
  border-left-color: var(--cat-integration);
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.service-card-main {
  min-width: 0;
}
.service-card-main h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.service-card-main p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.service-card-meta .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.service-card-meta .time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.order-btn-sm {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.order-btn-sm::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.order-btn-sm:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.order-btn-sm:active {
  transform: translateY(0);
}
.order-btn-sm:active::before {
  width: 300px;
  height: 300px;
}
.order-btn-sm:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.order-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.order-btn:hover {
  background: var(--accent-hover);
}
.order-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.order-btn:active::after {
  width: 200px;
  height: 200px;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
.wavy-divider {
  height: 60px;
  background: var(--bg);
  position: relative;
}
.wavy-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.benefits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.benefits-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.benefit-icon svg {
  width: 100%;
  height: 100%;
}
.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.about-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.about-avatar {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--success) 50%, var(--accent-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4), 0 0 0 4px white, 0 0 0 6px var(--accent-light);
  position: relative;
  transition: all 0.3s ease;
}
.about-avatar::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--success), var(--cat-implementation), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-avatar:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5), 0 0 0 4px white, 0 0 0 6px var(--accent);
}
.about-avatar:hover::before {
  opacity: 0.6;
  animation: rotate-gradient 3s linear infinite;
}
.about-avatar svg {
  width: 60px;
  height: 60px;
  stroke: white;
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.about-quote {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--accent);
}
.about-details {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.about-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.testimonials-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.1);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(59, 130, 246, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--border);
}
.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}
.testimonial-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--success);
}
.cases {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.cases-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.1);
}
.case-image {
  height: 140px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.case-content {
  padding: 1.25rem;
}
.case-type {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.case-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.case-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.case-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
}
.modal-content h3 {
  margin-bottom: 1rem;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
}
.modal-content textarea {
  min-height: 100px;
  resize: vertical;
}
.modal-buttons {
  display: flex;
  gap: 0.5rem;
}
.modal-buttons button {
  flex: 1;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}
.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  background: var(--bg);
}
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  top: -100px;
  right: -100px;
}
.blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  bottom: 20%;
  left: -50px;
}
.blob-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  top: 50%;
  right: 10%;
}
.category-hero {
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}
.category-hero:nth-child(6) {
  transition-delay: 0.5s;
}
.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .nav-links {
    display: none;
  }
  .services-hero-compact {
    padding: 1rem 0;
  }
  .services-hero-compact .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 1rem;
  }
  .services-hero-compact .hero-info .hero-title {
    font-size: 1.5rem;
  }
  .services-hero-compact .hero-info .hero-subtitle {
    font-size: 0.9rem;
  }
  .services-hero-compact .hero-badge {
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .category-tabs {
    padding: 0 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
  .category-tabs .tab-btn {
    flex-shrink: 0;
  }
  .filters-panel {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .services-content-full {
    padding: 0 1rem;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
  .services-sidebar {
    display: none;
  }
  .service-card.compact {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-card.compact .service-card-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .service-card.compact .service-card-meta .price {
    font-size: 1rem;
  }
  .service-card.compact .service-card-meta .time {
    font-size: 0.75rem;
  }
  .category-title {
    font-size: 1.1rem;
  }
  .category-title .category-count {
    font-size: 0.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem 2rem;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .benefits-grid,
  .testimonials-grid,
  .cases-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
}
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 50%, #f0f0f0 100%);
  z-index: -2;
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ff6b35, #ff8552);
  top: 10%;
  right: 10%;
}
.gradient-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  bottom: 20%;
  left: 5%;
}
.gradient-orb.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  top: 50%;
  right: 30%;
}
.nav-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eeeeee;
}
.nav-dark .nav-brand {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0a0f26, #676767);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-dark .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-dark .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-dark .nav-links a:hover {
  color: var(--text-primary);
}
.nav-dark .nav-links .nav-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border-radius: 8px;
  font-weight: 600;
}
.nav-dark .nav-links .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.hero-dark {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-content-dark {
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge-dark {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.hero-title-dark {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-subtitle-dark {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 1.2rem;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}
.btn-hero-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.32);
}
.btn-hero-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-catalog-line {
  margin: 0 auto 1rem;
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.hero-catalog-list {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.hero-catalog-item {
  display: inline-block;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.24);
  background: rgba(255, 107, 53, 0.08);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}
.hero-catalog-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 980px;
  text-align: left;
}
.hero-offer-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 107, 53, 0.16);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(10, 15, 38, 0.04);
}
.hero-offer-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.98rem;
  line-height: 1.5;
}
.hero-offer-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 980px;
  text-align: left;
}
.hero-process-item {
  background: rgba(10, 15, 38, 0.04);
  border: 1px solid rgba(10, 15, 38, 0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}
.hero-process-item p {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.55;
}
.hero-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}
.hero-cta-note {
  max-width: 720px;
  margin: -1rem auto 2.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.search-box {
  display: flex;
  max-width: 700px;
  margin: 0 auto 3rem;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.search-box .search-input-dark {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-size: 1rem;
}
.search-box .search-input-dark::placeholder {
  color: var(--text-secondary);
}
.search-box .search-input-dark:focus {
  outline: none;
}
.search-box .search-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.search-box .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.hero-stats .stat-item {
  text-align: center;
}
.hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.floating-shapes .shape {
  position: absolute;
  opacity: 0.03;
}
.floating-shapes .shape.shape-1 {
  width: 100px;
  height: 100px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  top: 20%;
  left: 10%;
}
.floating-shapes .shape.shape-2 {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  top: 60%;
  right: 15%;
}
.floating-shapes .shape.shape-3 {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 40%;
  right: 25%;
}
.hero-badge-dark {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.category-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.category-card::after {
  content: '→';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--accent);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.category-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.category-card:hover .category-icon-large {
  transform: scale(1.1);
}
.category-card .category-icon-large {
  transition: all 0.3s ease;
}
.service-item-dark {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.service-item-dark:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-item-dark:hover .service-icon-large {
  transform: scale(1.05);
}
.service-item-dark:hover .service-price-large {
  color: var(--accent-hover);
}
.service-item-dark .service-icon-large {
  transition: all 0.3s ease;
}
.service-item-dark .service-price-large {
  transition: all 0.3s ease;
}
.btn-gradient {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}
.search-box {
  display: flex;
  max-width: 700px;
  margin: 0 auto 3rem;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.urgency-bar {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 1rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
}
.urgency-bar .urgency-btn {
  transition: all 0.2s ease;
}
.urgency-bar .urgency-btn:hover {
  transform: translateY(-2px);
}
.trust-badges .trust-item {
  transition: all 0.3s ease;
}
.trust-badges .trust-item:hover {
  transform: translateY(-2px);
}
.trust-badges .trust-item:hover svg {
  transform: scale(1.1);
}
.trust-badges .trust-item svg {
  transition: all 0.3s ease;
}
.hero-stats .stat-item .stat-number {
  color: var(--accent);
  font-weight: 800;
}
.category-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-icon-large svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-badges .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.trust-badges .trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--success);
}
.urgency-bar {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
}
.urgency-bar .urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.urgency-bar .urgency-icon {
  font-size: 1.5rem;
}
.urgency-bar .urgency-text {
  color: var(--text-primary);
  font-size: 1rem;
}
.urgency-bar .urgency-text strong {
  color: #ef4444;
  font-weight: 700;
}
.urgency-bar .urgency-btn {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.urgency-bar .urgency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}
.categories-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.categories-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.categories-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.categories-section .section-header p {
  color: var(--text-secondary);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.category-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}
.category-card .category-icon-large {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 16px;
}
.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.category-card span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.nav-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-v2 .nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.nav-v2 .nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-v2 .nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.hero-v2 {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-v2 .hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-v2 .hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-v2 .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-v2 .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-v2 .btn-primary-large {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.hero-v2 .btn-primary-large:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.hero-v2 .hero-guarantee {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.section-title-light {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.popular-services {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-item-dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.service-item-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}
.service-item-dark .service-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 133, 82, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}
.service-item-dark .service-icon-large svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
}
.service-item-dark .service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.service-item-dark .service-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.service-item-dark .service-price-large {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.btn-gradient {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}
.btn-gradient-large {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gradient-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}
.testimonial-item-dark {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.testimonial-item-dark:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.04), 0 3px 16px rgba(0, 0, 0, 0.08);
}
.testimonial-item-dark .testimonial-text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-item-dark .testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.testimonial-item-dark .testimonial-result {
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 600;
}
.order-section {
  padding: 5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.order-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.order-subtitle a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.order-subtitle a:hover {
  text-decoration: underline;
}
.order-form-simple {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.order-form-simple .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .order-form-simple .form-row {
    grid-template-columns: 1fr;
  }
}
.order-form-simple input,
.order-form-simple textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: inherit;
}
.order-form-simple input::placeholder,
.order-form-simple textarea::placeholder {
  color: var(--text-secondary);
}
.order-form-simple input:focus,
.order-form-simple textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.order-form-simple textarea {
  resize: vertical;
  min-height: 120px;
}
.modal-content-simple {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.modal-content-simple h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.modal-content-simple p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.modal-content-simple .btn-close {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}
.modal-content-simple .btn-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}
.footer-simple {
  padding: 4rem 2rem;
  border-top: 1px solid #eeeeee;
  text-align: center;
  background: #ffffff;
}
.footer-simple .footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0a0f26, #676767);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.footer-simple .footer-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer-simple .footer-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.footer-simple .footer-contact a:hover {
  text-decoration: underline;
}
.footer-simple .footer-contact .footer-separator {
  margin: 0 1rem;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .nav-dark {
    padding: 1rem;
  }
  .nav-dark .nav-links {
    gap: 1rem;
  }
  .nav-dark .nav-links a:not(.nav-btn) {
    display: none;
  }
  .hero-dark {
    padding: 3rem 1rem;
  }
  .hero-dark .hero-title-dark {
    font-size: 2rem;
  }
  .hero-dark .hero-subtitle-dark {
    font-size: 1rem;
  }
  .hero-offer-grid,
  .hero-process {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    max-width: 360px;
  }
  .btn-hero {
    width: 100%;
  }
  .hero-catalog-line {
    font-size: 0.9rem;
  }
  .hero-offer-item,
  .hero-process-item {
    padding: 1rem;
  }
  .hero-cta-note {
    margin-top: -0.5rem;
    font-size: 0.92rem;
  }
  .search-box {
    flex-direction: column;
  }
  .search-box .search-input-dark {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .search-box .search-btn {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .category-card {
    padding: 1.5rem;
  }
  .services-grid-simple {
    grid-template-columns: 1fr;
  }
  .testimonials-grid-simple {
    grid-template-columns: 1fr;
  }
}
.popular-services {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}
.service-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}
.service-item .service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-item .service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.service-item .service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.service-item .service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-item .btn-order {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.service-item .btn-order:hover {
  background: var(--accent-hover);
}
.testimonials-short {
  padding: 4rem 2rem;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.testimonials-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.testimonial-item .testimonial-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-item .testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.testimonial-item .testimonial-result {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
}
.order-section {
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.order-container {
  text-align: center;
}
.order-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.order-subtitle a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.order-form-simple {
  text-align: left;
}
.order-form-simple .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.order-form-simple input,
.order-form-simple textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 1rem;
  font-family: inherit;
}
.order-form-simple input:focus,
.order-form-simple textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.order-form-simple textarea {
  resize: vertical;
}
.order-form-simple .btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.order-form-simple .btn-submit:hover {
  background: var(--accent-hover);
}
.faq-short {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-item-short .faq-q {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.faq-item-short .faq-a {
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-simple {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-simple .footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.footer-simple .footer-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.footer-simple .footer-contact a {
  color: var(--accent);
  text-decoration: none;
}
.footer-simple .footer-contact .footer-separator {
  margin: 0 0.5rem;
  color: var(--text-secondary);
}
.modal-content-simple {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.modal-content-simple h3 {
  margin-bottom: 1rem;
}
.modal-content-simple p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.modal-content-simple .btn-close {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
}
.modal-content-simple .btn-close:hover {
  background: var(--accent-hover);
}
@media (max-width: 640px) {
  .hero-v2 {
    padding: 2rem 1rem;
  }
  .hero-v2 .hero-title {
    font-size: 1.75rem;
  }
  .hero-v2 .hero-subtitle {
    font-size: 1rem;
  }
  .services-grid-simple {
    grid-template-columns: 1fr;
  }
  .testimonials-grid-simple {
    grid-template-columns: 1fr;
  }
  .order-form-simple .form-row {
    grid-template-columns: 1fr;
  }
  .nav-v2 {
    padding: 1rem;
  }
}
.nav-dark {
  position: sticky;
  top: 0;
  z-index: 200;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-field {
  display: block;
  margin-bottom: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.is-open {
  border-color: var(--accent);
}
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-hamburger:hover {
  border-color: var(--accent);
}
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
  .nav-dark .nav-links,
  .site-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 199;
  }
  .nav-dark .nav-links.nav-open,
  .site-nav .nav-links.nav-open {
    display: flex;
  }
  .nav-dark .nav-links a,
  .site-nav .nav-links a {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid #f5f5f5;
  }
  .nav-dark .nav-links a:last-child,
  .site-nav .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-dark .nav-links a.nav-btn,
  .site-nav .nav-links a.nav-btn {
    margin: 0.75rem 1.5rem;
    width: auto;
    border-radius: 8px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-bottom: none;
  }
}
.workreap-card {
  content: '';
}
.shadow-workreap-hover:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.btn-workreap {
  content: '';
}
.btn-workreap-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.service-hero {
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}
.service-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.service-hero-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.service-hero-breadcrumb a:hover {
  color: var(--accent);
}
.service-hero-breadcrumb span {
  color: var(--text-secondary);
}
.service-hero-content {
  max-width: 800px;
}
.service-hero-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 20px;
}
.service-hero-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.service-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}
.service-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0;
}
.service-hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.service-hero-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.service-hero-price .price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.service-hero-price .price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.service-hero-time {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.service-hero-time .time-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.service-hero-time .time-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.service-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.service-section {
  padding: 4rem 0;
}
.service-section.service-section-alt {
  background: #f8fafc;
}
.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.service-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.service-content .service-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-content .service-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.service-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}
.service-list li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .service-sidebar {
    display: none;
  }
}
.service-card-mini {
  padding: 1.5rem;
  text-align: center;
  position: sticky;
  top: 100px;
}
.service-card-mini .service-card-mini-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 16px;
}
.service-card-mini .service-card-mini-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.service-card-mini h4 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.service-card-mini p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.service-card-mini .service-card-mini-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.process-steps {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.process-step:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.process-step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}
.process-step-content {
  flex: 1;
}
.process-step-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}
.service-result {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.service-result .service-result-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
  border-radius: 12px;
  flex-shrink: 0;
}
.service-result .service-result-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}
.service-result .service-result-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.service-result .service-result-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}
.service-faq {
  max-width: 800px;
}
.service-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.service-link .service-link-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.service-link:hover .service-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .service-hero {
    padding: 1.5rem 0 2rem;
  }
  .service-hero-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
  }
  .service-hero-icon {
    width: 60px;
    height: 60px;
  }
  .service-hero-icon svg {
    width: 30px;
    height: 30px;
  }
  .service-hero-title {
    font-size: 1.75rem;
  }
  .service-hero-subtitle {
    font-size: 1rem;
  }
  .service-hero-meta {
    gap: 1.5rem;
  }
  .service-hero-price .price-value,
  .service-hero-time .time-value {
    font-size: 1.25rem;
  }
  .service-hero-actions {
    flex-direction: column;
  }
  .service-section {
    padding: 2.5rem 0;
  }
  .service-section-title {
    font-size: 1.5rem;
  }
  .process-step {
    padding: 1rem;
  }
  .process-step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}
.category-hero {
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}
.category-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.category-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.category-hero-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.category-hero-breadcrumb a:hover {
  color: var(--accent);
}
.category-hero-breadcrumb span {
  color: var(--text-secondary);
}
.category-hero-content {
  max-width: 800px;
}
.category-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.category-hero-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}
.category-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.category-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}
.category-hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 600px;
}
.category-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.category-services {
  padding: 4rem 0;
  background: #f8fafc;
}
.category-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.category-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.category-services-grid {
  display: grid;
  gap: 1rem;
}
.category-service-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.category-service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.category-service-card:hover .category-service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.category-service-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.category-service-card-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.category-service-card-content {
  min-width: 0;
}
.category-service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}
.category-service-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}
.category-service-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.category-service-card-price {
  font-size: 1.1rem;
  font-weight: 700;
}
.category-service-card-time {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  background: var(--bg);
  border-radius: 20px;
}
.category-service-card-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 10px;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.category-other {
  padding: 4rem 0;
  background: white;
}
.category-other .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.category-other .category-card {
  text-decoration: none;
  color: inherit;
}
.category-other .category-card .category-icon-large {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .category-hero {
    padding: 1.5rem 0 2rem;
  }
  .category-hero-icon {
    width: 60px;
    height: 60px;
  }
  .category-hero-icon svg {
    width: 30px;
    height: 30px;
  }
  .category-hero-title {
    font-size: 1.75rem;
  }
  .category-hero-subtitle {
    font-size: 1rem;
  }
  .category-hero-actions {
    flex-direction: column;
  }
  .category-services {
    padding: 2.5rem 0;
  }
  .category-section-title {
    font-size: 1.5rem;
  }
  .category-service-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .category-service-card .category-service-card-icon {
    width: 48px;
    height: 48px;
  }
  .category-service-card .category-service-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .category-service-card .category-service-card-arrow {
    display: none;
  }
  .category-service-card-meta {
    flex-wrap: wrap;
  }
  .category-other .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(224, 78, 42, 0.16), transparent 55%), radial-gradient(ellipse 60% 40% at 100% 20%, rgba(61, 107, 140, 0.12), transparent 50%), radial-gradient(ellipse 50% 35% at 0% 80%, rgba(224, 78, 42, 0.08), transparent 45%), linear-gradient(180deg, #F5F7FA 0%, #EEF1F4 45%, #E8ECF1 100%);
}
.atmosphere-mesh {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(18, 20, 26, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 20, 26, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}
.atmosphere-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5), transparent 35%), radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.35), transparent 40%);
}
.atmosphere-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.atmosphere-orb-a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: -8%;
  right: -6%;
  background: rgba(224, 78, 42, 0.22);
}
.atmosphere-orb-b {
  width: 36vw;
  height: 36vw;
  max-width: 420px;
  max-height: 420px;
  bottom: 10%;
  left: -8%;
  background: rgba(61, 107, 140, 0.18);
  animation-delay: -6s;
}
@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-3%, 4%) scale(1.06);
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.site-nav,
.nav-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 250, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 231, 238, 0.9);
}
.site-nav .nav-links,
.nav-dark .nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav .nav-links a,
.nav-dark .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.site-nav .nav-links a:hover,
.nav-dark .nav-links a:hover {
  color: var(--ink);
}
.site-nav .nav-links .nav-btn,
.nav-dark .nav-links .nav-btn {
  padding: 0.65rem 1.15rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 12px;
  font-weight: 700;
}
.site-nav .nav-links .nav-btn:hover,
.nav-dark .nav-links .nav-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.hero {
  min-height: calc(100vh - 74px);
  max-width: none !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3rem) 4rem !important;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero h1,
.hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.15rem) !important;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 auto 1.1rem !important;
  max-width: 18ch;
}
.hero p,
.hero .hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem) !important;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto 2rem !important;
  line-height: 1.65;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.hero .hero-brand,
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.2rem) !important;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink) !important;
  margin: 0 auto 1.35rem !important;
  opacity: 1;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 auto 1.1rem;
  max-width: 18ch;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(224, 78, 42, 0.28);
}
.btn-hero-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--ink);
}
.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-rise {
  animation: rise-in 0.75s ease both;
}
.anim-delay-1 {
  animation-delay: 0.12s;
}
.anim-delay-2 {
  animation-delay: 0.24s;
}
.anim-delay-3 {
  animation-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
  .anim-rise {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .atmosphere-orb {
    animation: none;
  }
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 3rem;
}
.proof-item {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-top: 1px solid var(--border);
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.proof-item span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.categories-section,
.popular-services,
.testimonials-short {
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem);
}
.categories-section .section-header,
.popular-services .section-header,
.testimonials-short .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.categories-section .section-header h2,
.popular-services .section-header h2,
.testimonials-short .section-header h2,
.categories-section .section-header .section-title-light,
.popular-services .section-header .section-title-light,
.testimonials-short .section-header .section-title-light {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}
.categories-section .section-header p,
.popular-services .section-header p,
.testimonials-short .section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.popular-services .section-title-light {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 2.5rem;
}
.category-card,
.service-item-dark {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}
.category-card:hover,
.service-item-dark:hover {
  border-color: rgba(224, 78, 42, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card {
  display: block;
  padding: 1.75rem 1.35rem;
  text-align: center;
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.85rem 0 0.35rem;
}
.category-card span {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
}
.category-card::after {
  display: none;
}
.service-item-dark {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  text-align: left;
}
.service-item-dark .service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.75rem 0 0.4rem;
}
.service-item-dark .service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}
.service-item-dark .service-price-large {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.service-item-dark .service-cta {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}
.service-item-dark .btn-gradient,
.service-item-dark .service-link-arrow {
  display: none;
}
.service-icon-large,
.category-icon-large {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 12px;
}
.service-icon-large svg,
.category-icon-large svg {
  width: 24px;
  height: 24px;
}
.testimonial-item-dark {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
  box-shadow: none;
}
.testimonial-item-dark .testimonial-text {
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
}
.testimonial-item-dark .testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.testimonial-item-dark .testimonial-result {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
}
.order-section {
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem);
  max-width: 640px;
  margin: 0 auto;
}
.order-section h2,
.order-section .section-title-light {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.order-form-simple {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.order-form-simple input,
.order-form-simple textarea,
.order-form-simple .form-input-workreap {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
}
.order-form-simple input:focus,
.order-form-simple textarea:focus,
.order-form-simple .form-input-workreap:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.btn-gradient-large,
.btn-gradient,
.btn-close {
  background: var(--accent) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.btn-gradient-large:hover,
.btn-gradient:hover,
.btn-close:hover {
  background: var(--accent-hover) !important;
}
.footer-simple {
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.footer-simple .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.footer-simple .brand {
  justify-content: center;
}
.footer-simple .footer-text {
  color: var(--text-secondary);
  margin: 0;
}
.footer-simple .footer-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.footer-simple .footer-contact a:hover {
  text-decoration: underline;
}
.footer-simple .footer-separator {
  margin: 0 0.6rem;
  color: var(--text-secondary);
}
.back-to-top {
  border-radius: 12px;
}
.back-to-top:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}
@media (max-width: 768px) {
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding-bottom: 2rem;
  }
  .hero {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }
  .hero-title {
    max-width: none;
  }
  .site-nav .nav-links.nav-open,
  .nav-dark .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 247, 250, 0.98);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
  }
}
.testimonials-section,
.faq-section,
.seo-about {
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem);
}
.testimonials-section .section-header,
.faq-section .section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.testimonials-section .section-header h2,
.faq-section .section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}
.testimonials-section .section-header p,
.faq-section .section-header p {
  color: var(--text-secondary);
}
.reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 auto 1.5rem;
  max-width: 900px;
}
.reviews-filter {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-secondary);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.reviews-filter:hover {
  border-color: rgba(224, 78, 42, 0.4);
  color: var(--ink);
}
.reviews-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.reviews-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.reviews-track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.review-card {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review-card[hidden] {
  display: none !important;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.review-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
}
.review-stars {
  color: #d5dbe3;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}
.review-stars .star.is-on {
  color: #E6A700;
}
.review-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-end;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-author strong {
  font-size: 0.95rem;
  color: var(--ink);
}
.review-author span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.review-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--success);
  text-align: right;
}
.reviews-nav {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.reviews-nav svg {
  width: 18px;
  height: 18px;
}
.reviews-nav:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.reviews-hint {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item-home {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
}
.faq-item-home summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  padding: 1rem 1.2rem;
  color: var(--ink);
  position: relative;
}
.faq-item-home summary::-webkit-details-marker {
  display: none;
}
.faq-item-home summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-body);
}
.faq-item-home[open] summary::after {
  content: '–';
}
.faq-item-home .faq-answer-home {
  padding: 0 1.2rem 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item-home .faq-answer-home p {
  margin: 0;
}
.seo-about {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.seo-about .seo-about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  color: var(--text-secondary);
  line-height: 1.7;
}
.seo-about .seo-about-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--ink);
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}
.seo-about .seo-about-inner p + p {
  margin-top: 0.85rem;
}
.seo-about .seo-about-inner a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.seo-about .seo-about-inner a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }
  .reviews-nav {
    display: none;
  }
  .reviews-track {
    grid-auto-columns: minmax(260px, 88vw);
  }
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.25rem 0 1.1rem;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-secondary);
  cursor: pointer;
}
.consent-field input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.consent-field a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.consent-field a:hover {
  text-decoration: underline;
}
.footer-legal {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.9rem;
}
.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-legal-note {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  max-width: 36rem;
}
.legal-page {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 4rem;
}
.legal-article {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}
.legal-article .legal-eyebrow {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.legal-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.legal-article h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.7rem;
  letter-spacing: -0.02em;
}
.legal-article p,
.legal-article li {
  color: var(--text-secondary);
  line-height: 1.65;
}
.legal-article p + p {
  margin-top: 0.75rem;
}
.legal-article ul,
.legal-article ol {
  margin: 0.6rem 0 0.8rem 1.2rem;
}
.legal-article li + li {
  margin-top: 0.35rem;
}
.legal-article a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.legal-article a:hover {
  text-decoration: underline;
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.1rem;
}
.cookie-banner-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.cookie-banner-inner p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.cookie-banner-btn {
  flex-shrink: 0;
  border: none;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  cursor: pointer;
}
.cookie-banner-btn:hover {
  background: var(--accent-hover);
}
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}
.order-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.order-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
}
.order-trust-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}
.order-trust-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.order-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.order-quotes blockquote {
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.45;
}
.order-quotes cite {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.service-hero-price-note {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.service-hero-price-note strong {
  color: var(--text-primary);
}
.service-card-mini-time {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.service-card-mini-cta {
  display: inline-flex;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.hero-cta-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.hero-cta-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.hero-cta-note a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .order-trust,
  .order-quotes {
    grid-template-columns: 1fr;
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
  pointer-events: none;
  transition: width 0.05s linear;
}
.btn-hero {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 20, 26, 0.12);
}
.btn-hero:active {
  transform: translateY(0);
}
.hero-with-media {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 241, 244, 0.35) 0%, rgba(238, 241, 244, 0.82) 48%, rgba(238, 241, 244, 0.96) 100%), linear-gradient(90deg, rgba(238, 241, 244, 0.92) 0%, rgba(238, 241, 244, 0.55) 55%, rgba(238, 241, 244, 0.2) 100%);
}
.hero-with-media .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-with-media .hero-brand,
.hero-with-media .hero-title {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  opacity: 0.55;
}
.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs [aria-current="page"] span {
  color: var(--text-primary);
  font-weight: 600;
}
.cases-hero,
.case-article,
.cases-grid-section {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3.5rem;
}
.cases-hero h1,
.case-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.75rem;
}
.cases-lead {
  color: var(--text-secondary);
  max-width: 46rem;
  font-size: 1.05rem;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.case-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.case-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}
.case-metrics li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: rgba(18, 20, 26, 0.03);
}
.case-metrics strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.case-metrics span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.case-metrics-lg {
  margin: 1.25rem 0 2rem;
}
.case-meta {
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.case-article section {
  margin-bottom: 1.75rem;
}
.case-article section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.case-article section p {
  color: var(--text-primary);
  max-width: 48rem;
  line-height: 1.65;
}
.case-related {
  margin-top: 2.5rem;
}
.case-cta-line {
  margin-top: 2rem;
}
.service-audience li {
  margin-bottom: 0.55rem;
}
@media (max-width: 768px) {
  .hero-with-media {
    min-height: auto;
    padding-top: 5rem;
    align-items: flex-start;
  }
  .case-metrics {
    grid-template-columns: 1fr;
  }
}
