/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.logo:hover { color: #fff; }
.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--primary-glow);
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; color: #fff; }
.logo-text { font-weight: 800; }
.logo-text span { color: var(--primary-light); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: #fff; }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px var(--primary-glow);
  transition: all var(--transition);
}
.header-phone:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--primary-glow);
}
.header-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  animation: float 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
}
.hero-badge .pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-content h1 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.hero-content h1 .accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}
.hero-phone-block .phone-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-phone-block .phone-icon svg { width: 22px; height: 22px; color: #fff; }
.hero-phone-block .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: block; }
.hero-phone-block a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-phone-block a:hover { color: var(--primary-light); }

/* Hero image */
.hero-image-wrap {
  position: relative;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  aspect-ratio: 4/5;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.5) 100%);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-card-rating {
  bottom: 32px;
  left: -20px;
}
.hero-card-rating .stars {
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.hero-card-rating strong { color: var(--dark); font-size: 0.95rem; }
.hero-card-rating small { color: var(--text-light); font-size: 0.78rem; display: block; }

.hero-card-experience {
  top: 32px;
  right: -20px;
  background: var(--dark);
  color: #fff;
}
.hero-card-experience .big {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-card-experience small { color: rgba(255,255,255,0.8); font-size: 0.78rem; }

/* ============ STATS BAR ============ */
.stats-bar {
  position: relative;
  margin-top: -60px;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border-soft);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-soft); }
.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: rgba(255, 107, 26, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }

/* ============ STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.step-card:hover::before { transform: scaleX(1); }

.step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,107,26,0.12), rgba(255,184,0,0.12));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: var(--transition);
}
.step-icon svg { width: 30px; height: 30px; }
.step-card:hover .step-icon {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}
.step-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; }

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-soft);
}
.feature-card:hover::before { transform: scaleY(1); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,107,26,0.1), rgba(255,184,0,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: var(--transition);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card:hover .feature-icon { background: var(--grad-primary); color: #fff; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); font-weight: 700; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  background: var(--grad-primary);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta-banner::before { width: 300px; height: 300px; top: -150px; left: -50px; }
.cta-banner::after { width: 400px; height: 400px; bottom: -200px; right: -100px; }
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner .alert-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cta-banner .alert-icon svg { width: 30px; height: 30px; }
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-banner p {
  opacity: 0.95;
  margin: 0 auto 32px;
  max-width: 600px;
  font-size: 1.05rem;
}
.cta-banner .btn { margin: 0 6px 8px; }

/* ============ BRANDS ============ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.brand-card > * { position: relative; z-index: 1; }
.brand-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.brand-card:hover::before { opacity: 1; }
.brand-card:hover h3 { color: #fff; }
.brand-card:hover .brand-logo {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.brand-card .brand-logo {
  width: 72px;
  height: 72px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--dark);
  transition: var(--transition);
}
.brand-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 700;
  transition: color var(--transition);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-soft);
}
.stars {
  color: #fbbf24;
  font-size: 1.05rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 0.98rem;
  line-height: 1.7;
}
.testimonial-author-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}
.testimonial-avatar span {
  display: block;
  line-height: 1;
}
.testimonial-author-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author {
  margin: 0;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.35;
}
.testimonial-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.35;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(20%);
  opacity: 0.85;
  transition: var(--transition);
}
.gallery-item:hover::after { transform: translateY(0); opacity: 1; }

/* ============ PRICING ============ */
.pricing-list {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  gap: 16px;
  transition: background var(--transition);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li:hover { background: var(--bg-soft); }
.pricing-list .service-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}
.pricing-list .check-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-list .price {
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  font-size: 1.02rem;
}
.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============ DISTRICTS ============ */
.districts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.district-tag {
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 500;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.district-tag::before {
  content: '📍';
  font-size: 0.85em;
  filter: grayscale(1);
  opacity: 0.5;
  transition: var(--transition);
}
.district-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.district-tag:hover::before { filter: none; opacity: 1; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--border-soft); box-shadow: var(--shadow-sm); }
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.12);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question::after {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='2.5' stroke-linecap='round'><path d='M5 12h14'/></svg>");
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
  border-color: transparent;
}
.blog-card-image {
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
  flex: 1;
}
.read-more {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 12px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-col h3, .footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 700;
}
.footer-col p { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.7); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}
.footer-logo .logo-icon { width: 36px; height: 36px; }
.footer-logo span { color: var(--primary-light); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-legal a:hover { color: #fff; }

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transition: all var(--transition);
  color: #fff;
  position: relative;
}
.float-btn svg { width: 26px; height: 26px; }
.float-phone { background: var(--grad-primary); }
.float-phone::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0.5;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.float-phone:hover { color: #fff; transform: scale(1.1); }
.float-whatsapp { background: var(--whatsapp); }
.float-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; transform: scale(1.1); }

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 14px;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-btn svg { width: 18px; height: 18px; }
.sticky-call { background: var(--grad-primary); box-shadow: 0 4px 16px var(--primary-glow); }
.sticky-call:hover { color: #fff; }
.sticky-wa { background: var(--whatsapp); }
.sticky-wa:hover { background: var(--whatsapp-dark); color: #fff; }

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 899;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); }

/* ============ COOKIE CONSENT ============ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}
.cookie-consent a { color: var(--primary-light); text-decoration: underline; }
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-consent .btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}
@media (max-width: 768px) {
  .cookie-consent { padding: 14px 14px 90px; }
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .cookie-consent-actions .btn { width: 100%; justify-content: center; }
}

/* ============ PAGE HERO (inner) ============ */
.page-hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding: 80px 0 64px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.18) 0%, transparent 60%);
  filter: blur(20px);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero p {
  opacity: 0.88;
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.breadcrumb {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .sep { opacity: 0.4; margin: 0 2px; }

.page-hero--left .breadcrumb {
  justify-content: flex-start;
}

/* ============ SERVICE BRAND CARDS ============ */
.service-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.service-brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-brand-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-brand-card .brand-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,107,26,0.1), rgba(255,184,0,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}
.service-brand-card .brand-badge--logo {
  width: auto;
  min-width: 120px;
  height: 56px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
}
.service-brand-card .brand-badge--logo img {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-hero-logo {
  margin-bottom: 20px;
}
.brand-hero-logo img {
  max-height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.error-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.error-brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.error-brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.error-brand-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-brand-logo img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
}
.error-brand-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}
.error-brand-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}
.error-brand-card .read-more {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
}
.brand-card .brand-logo img {
  max-width: 100px;
  max-height: 36px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.brand-card .brand-logo {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 8px;
}
.service-brand-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}
.service-brand-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

/* ============ CONTENT ARTICLE ============ */
.article-date {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.content-article { max-width: 820px; margin: 0 auto; }
.content-article h2 {
  font-size: 1.6rem;
  margin: 44px 0 18px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.content-article h3 {
  font-size: 1.25rem;
  margin: 32px 0 14px;
  color: var(--dark);
  font-weight: 700;
}
.content-article h4 { font-size: 1.08rem; margin: 22px 0 10px; color: var(--dark); }
.content-article p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.02rem;
}
.content-article ul, .content-article ol { margin: 0 0 18px 28px; color: var(--text); }
.content-article li { margin-bottom: 10px; line-height: 1.7; }

.error-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  font-size: 0.92rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.error-table th, .error-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.error-table tr:last-child td { border-bottom: none; }
.error-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.error-table tr:nth-child(even) td { background: var(--bg-soft); }
.error-table td:first-child { font-weight: 700; color: var(--primary); }

.info-box {
  background: linear-gradient(135deg, rgba(255,107,26,0.06), rgba(255,184,0,0.06));
  border: 1px solid rgba(255,107,26,0.15);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 28px 0;
}
.info-box h4 { color: var(--dark); margin-bottom: 10px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,107,26,0.12), rgba(255,184,0,0.12));
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 22px; height: 22px; }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); font-weight: 700; }
.contact-info-item p,
.contact-info-item a { color: var(--text-light); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 480px; margin: 0 auto; aspect-ratio: 16/12; transform: none; }
  .hero-floating-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > :last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display: block; padding: 12px 16px; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-phone .phone-num { display: none; }
  .header-phone { padding: 10px; }

  .hero { padding: 60px 0 96px; }
  .stats-bar { margin-top: -48px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 24px 16px; }
  .stat-num { font-size: 1.5rem; }

  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid > :last-child { grid-column: auto; max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .floating-cta { right: 16px; bottom: 90px; }
  .float-btn { width: 52px; height: 52px; }
  .mobile-sticky-bar { display: flex; }
  .scroll-top { right: 16px; bottom: 80px; width: 42px; height: 42px; }

  .hero-content h1 { font-size: 1.85rem; }
  .hero-phone-block { width: 100%; }
}
