@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #E85D1A;
  --primary-hover: #ff743a;
  --secondary: #1A1A2E;
  --dark-bg: #0C0C0C;
  --alt-bg: #111111;
  --card-bg: rgba(255, 255, 255, 0.04);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #0a0a0a;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

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

ul { list-style: none; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.alt-bg {
  background: var(--alt-bg);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  transition: var(--transition);
}

.logo-img:hover { opacity: 0.8; }

.header-phones {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-phones a {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-phones a:hover { color: var(--primary); }

.header-hours {
  color: var(--text-secondary);
  font-size: 0.72rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.header-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header-nav {
  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid var(--glass-border);
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li { flex: 1; }

.nav-list a {
  display: block;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  color: var(--text-secondary);
}

.nav-list a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.85rem 2rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 40px rgba(232, 93, 26, 0.35);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232, 93, 26, 0.06);
}

.btn.lg { padding: 1.1rem 2.8rem; font-size: 0.75rem; }
.btn.w-100 { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to bottom, transparent 60%, var(--dark-bg) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark-bg), transparent);
  z-index: 2;
}

.hero .container { position: relative; z-index: 3; }

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

.brand-sub {
  display: inline-block;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(232, 93, 26, 0.3);
  position: relative;
}

.brand-sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  opacity: 0.4;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BRANDS BAR ===== */
.brands-bar {
  padding: 2rem 0;
  background: #050505;
  border-bottom: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
}

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

.brand-logo-item {
  flex: 0 0 calc(8.33% - 0.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  filter: grayscale(1) brightness(2);
  opacity: 0.25;
  transition: var(--transition);
}

.brand-logo-item:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.brand-logo-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title span {
  display: inline-block;
  color: var(--primary);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.5rem;
}

.section-title span::before,
.section-title span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}

.section-title span::before { right: 100%; }
.section-title span::after { left: 100%; }

.section-title h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left span::before { display: none; }

.section-title.text-left h2::after {
  left: 0;
  transform: none;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
}

.service-card-item {
  background: var(--dark-bg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-item:hover::before { transform: scaleX(1); }

.service-card-item:hover {
  background: rgba(232, 93, 26, 0.04);
}

.service-card-img {
  margin-bottom: 1.2rem;
}

.service-card-img ion-icon {
  font-size: 40px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card-item:hover .service-card-img ion-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(232, 93, 26, 0.4));
}

.service-card-name {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ===== TO TABLE ===== */
.to-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.to-menu {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-right: 1px solid var(--glass-border);
}

.to-tab {
  padding: 1rem 1.2rem;
  margin-bottom: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  color: var(--text-secondary);
  border-left: 2px solid transparent;
}

.to-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(232, 93, 26, 0.3);
}

.to-tab.active {
  background: var(--primary);
  color: white;
  border-left-color: transparent;
}

.to-details { padding: 2.5rem 3rem; }

.to-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}

.to-table tr { transition: var(--transition); }
.to-table tr:hover { background: rgba(255, 255, 255, 0.02); }

.to-table td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
}

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

.to-footer .total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* ===== SPLIT CONTENT ===== */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}

.check-list { margin-bottom: 2.5rem; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.check-list li:hover { color: var(--text-primary); transform: translateX(4px); }

.check-list ion-icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  transition: var(--transition);
}

.price-item:first-child { border-top: 1px solid var(--glass-border); }

.price-item:hover {
  padding-left: 0.8rem;
  border-bottom-color: rgba(232, 93, 26, 0.2);
}

.price-item span:last-child {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 1rem;
}

.content-image.glass-card {
  position: relative;
  overflow: hidden;
}

.content-image.glass-card img {
  width: 100%;
  border-radius: 0;
  display: block;
  transition: var(--transition-slow);
}

.content-image.glass-card:hover img {
  transform: scale(1.03);
}

.content-image.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  pointer-events: none;
  transition: var(--transition);
}

.content-image.glass-card:hover::after {
  border-color: rgba(232, 93, 26, 0.3);
}

.floating-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  z-index: 2;
}

/* ===== CERTIFICATES ===== */
.certificates-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.cert-item {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition-slow);
  position: relative;
}

.cert-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232, 93, 26, 0.2), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.cert-item:hover::after { opacity: 1; }

.cert-item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 26, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cert-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.cert-item:hover img { transform: scale(1.05); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  z-index: 2;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { width: 100%; }

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(232, 93, 26, 0.3);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.review-card .stars {
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.review-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== GUARANTEE GRID (WHY US) ===== */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
}

.g-card {
  padding: 3rem 2rem;
  background: var(--dark-bg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.g-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.g-card:hover::after { opacity: 1; width: 60px; }

.g-card:hover {
  background: rgba(232, 93, 26, 0.03);
}

.g-card ion-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.g-card:hover ion-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(232, 93, 26, 0.4));
}

.g-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.g-card-desc {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 64px;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(232, 93, 26, 0.3));
}

.guarantee-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.guarantee-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.guarantee-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.stat-card { text-align: center; }

.stat-card .num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.04em;
}

.stat-card .label {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ===== CONTACTS GRID ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
}

.contact-card {
  background: var(--dark-bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(232, 93, 26, 0.03);
}

.contact-card ion-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.contact-address {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.contact-phone {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-phone:hover { color: var(--primary-hover); }

.contact-hours {
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

/* ===== CONTACT FORM + MAP ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  filter: grayscale(1) invert(0.9) brightness(0.7) contrast(1.1);
}

.contact-form-container {
  padding: 4rem;
  background: #060606;
  position: relative;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 93, 26, 0.05), transparent 70%);
  pointer-events: none;
}

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

.label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

select {
  cursor: pointer;
  background: transparent;
}

select option {
  background: #111;
  color: white;
}

textarea { resize: vertical; min-height: 60px; }

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.privacy-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  border: 1px solid var(--glass-border);
}

.privacy-row label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.privacy-row a { color: var(--primary); }
.privacy-row a:hover { text-decoration: underline; }

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.form-security ion-icon {
  color: var(--primary);
  font-size: 16px;
}

/* ===== ABOUT ===== */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.about-text p { margin-bottom: 1.5rem; }
.about-text strong { color: var(--text-primary); font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  padding: 4rem 0;
  background: #000;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo { display: block; transition: var(--transition); }
.footer-logo:hover { opacity: 0.7; }

.footer-links {
  display: flex;
  gap: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

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

.footer-addresses {
  display: flex;
  gap: 2rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-addresses ion-icon {
  vertical-align: middle;
  color: var(--primary);
  margin-right: 4px;
  font-size: 14px;
}

.footer-phones {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-phones a {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-phones a:hover { color: var(--primary); }

footer p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split-content { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .to-container { grid-template-columns: 1fr; }
  .to-menu {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    gap: 4px;
  }
  .to-tab { white-space: nowrap; padding: 0.7rem 1rem; border-left: none; border-bottom: 2px solid transparent; }
  .to-tab.active { border-bottom-color: transparent; }
  .to-tab:hover { border-left-color: transparent; }
  .contact-section { grid-template-columns: 1fr; }
  #map { min-height: 400px; }
  .certificates-row { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-bar-grid { justify-content: center; }
  .brand-logo-item { flex: 0 0 calc(16.66% - 0.5rem); }
  .header-hours { display: none; }
  .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.2rem; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.65rem; }
  .btn.lg { padding: 0.9rem 2rem; font-size: 0.7rem; }
  .section-title h2 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .to-details { padding: 2rem 1.5rem; }
  .contact-form-container { padding: 3rem 1.5rem; }
  .certificates-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-stats { flex-direction: column; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .footer-addresses { flex-direction: column; gap: 0.5rem; }
  .footer-phones { flex-direction: column; gap: 0.5rem; }
  .floating-badge { padding: 0.8rem 1.2rem; font-size: 1rem; }
  .brand-logo-item { flex: 0 0 calc(25% - 0.5rem); }

  /* Header mobile */
  .burger { display: flex; }
  .header-cta { display: none; }
  .header-phones { margin-left: auto; }
  .header-row { gap: 1rem; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
  }
  .header-nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-list a {
    text-align: left;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .nav-list a:hover { border-left-color: var(--primary); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .certificates-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-card .num { font-size: 3rem; }
}

/* ===== PROMOS SECTION ===== */
.promos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.promo-card:hover {
  border-color: rgba(232, 93, 26, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.promo-featured {
  background: linear-gradient(135deg, rgba(232, 93, 26, 0.08), rgba(232, 93, 26, 0.02));
  border-color: rgba(232, 93, 26, 0.2);
}

.promo-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}

.promo-discount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.promo-featured .promo-discount {
  font-size: 5rem;
}

.promo-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.promo-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.promo-card .btn {
  align-self: flex-start;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
  padding: 5rem 0;
  background: #050505;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 26, 0.04), transparent 70%);
  pointer-events: none;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
}

.achievement-item {
  background: #050505;
  text-align: center;
  padding: 3rem 1.5rem;
  transition: var(--transition);
}

.achievement-item:hover {
  background: rgba(232, 93, 26, 0.03);
}

.achievement-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(232, 93, 26, 0.2);
}

.achievement-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.2), transparent),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.03) 60px,
      rgba(255,255,255,0.03) 61px
    );
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 0.8rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.cta-banner .btn-primary:hover {
  background: var(--dark-bg);
  color: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.cta-phone {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.cta-phone:hover { opacity: 0.8; }

/* ===== HEADER SOCIALS ===== */
.header-socials {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.header-socials a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header-socials a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

/* ===== FOOTER SOCIALS ===== */
.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232, 93, 26, 0.06);
}

/* ===== NEW SECTIONS RESPONSIVE ===== */
@media (max-width: 1024px) {
  .promos-grid { grid-template-columns: 1fr; }
  .promo-featured .promo-discount { font-size: 4rem; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { max-width: none; }
  .header-socials { display: none; }
}

@media (max-width: 768px) {
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .achievement-num { font-size: 3.5rem; }
  .cta-banner { padding: 3.5rem 0; }
  .cta-text h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .achievements-grid { grid-template-columns: 1fr; }
}

/* ========================================
   DESIGN UPGRADE — CINEMATIC INDUSTRIAL
   ======================================== */

/* --- Dramatic cursor --- */
* { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Ccircle cx='8' cy='8' r='3' fill='none' stroke='%23E85D1A' stroke-width='1.5'/%3E%3Ccircle cx='8' cy='8' r='1' fill='%23E85D1A'/%3E%3C/svg%3E") 8 8, auto; }
a, button, .btn, .to-tab, .service-card-item, .gallery-item { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='6' fill='none' stroke='%23E85D1A' stroke-width='1.5'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%23E85D1A'/%3E%3C/svg%3E") 10 10, pointer; }

/* --- Ambient glow on sections --- */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(232,93,26,0.12) 50%, transparent 95%);
  pointer-events: none;
}

/* --- Hero upgrade: dramatic diagonal clip + parallax depth --- */
.hero {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  min-height: 95vh;
}

.hero::before {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to bottom, transparent 50%, var(--dark-bg) 100%);
}

/* Hero decorative number */
.hero-content::before {
  content: '01';
  position: absolute;
  top: -3rem;
  right: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 20rem);
  color: rgba(232, 93, 26, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.hero-content { position: relative; }

/* --- Brand sub with animated line --- */
.brand-sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  animation: lineGrow 1.5s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineGrow {
  to { width: 100%; }
}

/* --- Section numbers (decorative) --- */
.services-section { counter-reset: none; }
.services-section::after {
  content: '02';
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
}

/* --- Service cards: magnetic hover glow --- */
.service-card-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(232,93,26,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card-item:hover::after { opacity: 1; }

/* --- TO tabs: active glow --- */
.to-tab.active {
  box-shadow: 0 0 25px rgba(232,93,26,0.25);
}

/* --- Glass card: diagonal decorative corner --- */
.content-image.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  z-index: 3;
  opacity: 0.5;
  transition: var(--transition);
}

.content-image.glass-card:hover::before {
  width: 80px;
  height: 80px;
  opacity: 1;
}

/* --- Floating badge: clean --- */
.floating-badge::before { display: none; }

/* --- Gallery: dramatic hover with text --- */
.gallery-item::after {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}

/* --- Review cards: editorial quote styling --- */
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover::after { width: 100%; }

/* --- Promo cards: glassmorphism upgrade --- */
.promo-featured::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232,93,26,0.1), transparent 70%);
  pointer-events: none;
}

/* --- Achievement numbers: text stroke effect --- */
.achievement-num {
  -webkit-text-stroke: 1px rgba(232,93,26,0.3);
  paint-order: stroke fill;
}

/* --- CTA banner: diagonal cut --- */
.cta-banner {
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  padding: 7rem 0;
}

/* --- Contact form: glowing input focus --- */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 2px 0 0 var(--primary);
}

/* --- Footer: refined divider --- */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

footer { position: relative; }

/* --- Guarantee grid card: number watermark --- */
.g-card:nth-child(1)::after { content: '01'; }
.g-card:nth-child(2)::after { content: '02'; }
.g-card:nth-child(3)::after { content: '03'; }
.g-card:nth-child(4)::after { content: '04'; }
.g-card:nth-child(5)::after { content: '05'; }
.g-card:nth-child(6)::after { content: '06'; }

.g-card::after {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}

/* --- Contact cards: left accent on hover --- */
.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s;
}

.contact-card:hover::before { width: 3px; }

/* --- Cert items: number overlay --- */
.cert-item:nth-child(1)::before { content: '01'; }
.cert-item:nth-child(2)::before { content: '02'; }
.cert-item:nth-child(3)::before { content: '03'; }
.cert-item:nth-child(4)::before { content: '04'; }
.cert-item:nth-child(5)::before { content: '05'; }

.cert-item::before {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: white;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.cert-item:hover::before { opacity: 0.7; }

/* --- Price items: animated left border --- */
.price-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(232,93,26,0.06);
  transition: width 0.3s;
}

.price-item { position: relative; overflow: hidden; }
.price-item:hover::before { width: 100%; }

/* --- Smooth page load animation --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content .brand-sub { animation: fadeInUp 0.8s 0.2s both; }
.hero-content h1 { animation: fadeInUp 0.8s 0.4s both; }
.hero-content p { animation: fadeInUp 0.8s 0.6s both; }
.hero-content .hero-btns { animation: fadeInUp 0.8s 0.8s both; }

/* --- Nav link hover: industrial underline --- */
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.nav-list a { position: relative; }
.nav-list a:hover::after { width: 70%; }

/* --- Button ripple on click --- */
.btn:active {
  transform: scale(0.97);
}

/* --- Diagonal section backgrounds --- */
.alt-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--dark-bg), transparent);
  pointer-events: none;
  z-index: 1;
}

.alt-bg { position: relative; }

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: #111;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: translateY(40px) scale(0.92);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  box-shadow:
    0 0 0 1px rgba(232, 93, 26, 0.25),
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(232, 93, 26, 0.08);
}

.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
  line-height: 1;
  border-radius: 0;
}

.popup-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* --- Orange header block --- */
.popup-header {
  background: var(--primary);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.popup-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.15), transparent),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px);
  pointer-events: none;
}

.popup-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.popup-icon ion-icon {
  font-size: 26px;
  color: white;
}

.popup-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 0.4rem;
  position: relative;
}

.popup-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.5;
  position: relative;
}

/* --- Form area --- */
.popup form {
  padding: 2rem 2rem 2rem;
}

.popup-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.popup-field {
  margin-bottom: 1.3rem;
}

.popup-field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.popup-field input,
.popup-field select,
.popup-field textarea {
  width: 100%;
  padding: 0.8rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  font-size: 0.88rem;
  transition: var(--transition);
  border-radius: 0;
}

.popup-field input:focus,
.popup-field select:focus,
.popup-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(232, 93, 26, 0.05);
  box-shadow: 0 0 0 2px rgba(232, 93, 26, 0.12);
}

.popup-field input::placeholder,
.popup-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.popup-field select { cursor: pointer; -webkit-appearance: none; }
.popup-field select option { background: #111; color: white; }
.popup-field textarea { resize: none; min-height: 50px; }

.popup-submit {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  padding: 1.1rem;
  letter-spacing: 0.18em;
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.popup-submit:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 30px rgba(232, 93, 26, 0.4);
}

/* --- Trust badges --- */
.popup-trust {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.popup-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 1rem 0.5rem;
  color: var(--text-secondary);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.popup-trust-item:last-child { border-right: none; }

.popup-trust-item ion-icon {
  color: var(--primary);
  font-size: 18px;
}

/* --- Popup responsive --- */
@media (max-width: 768px) {
  .popup-overlay { padding: 0; align-items: flex-end; }
  .popup {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 0;
    box-shadow:
      0 -2px 0 0 var(--primary),
      0 -20px 60px rgba(0, 0, 0, 0.5);
  }
  .popup-header { padding: 2rem 1.5rem 1.5rem; }
  .popup-header h3 { font-size: 1.6rem; }
  .popup form { padding: 1.5rem; }
  .popup-form-row { grid-template-columns: 1fr; }
  .popup-trust-item { font-size: 0.58rem; padding: 0.8rem 0.3rem; }
  .popup-trust-item ion-icon { font-size: 15px; }
}

/* =============================================
   DESIGN UPGRADE v2 — PREMIUM POLISH
   ============================================= */

/* --- Kill gimmicks: scanlines & custom cursor --- */
body::after { display: none !important; }
* { cursor: auto !important; }
a, button, .btn, .to-tab, .service-card-item, .gallery-item, select { cursor: pointer !important; }

/* --- Kill broken clip-paths --- */
.hero { clip-path: none !important; }
.cta-banner { clip-path: none !important; padding: 5rem 0 !important; }

/* --- Typography: bigger, bolder, more dramatic hierarchy --- */
.hero h1 {
  font-size: clamp(3.8rem, 9vw, 8.5rem) !important;
  line-height: 0.92 !important;
  margin-bottom: 2.5rem !important;
}

.section-title h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem) !important;
  letter-spacing: 0.05em !important;
}

.hero p {
  font-size: 1.1rem !important;
  max-width: 520px !important;
  line-height: 1.85 !important;
  font-weight: 300 !important;
}

/* --- Hero: cinematic vignette + stronger gradient --- */
.hero {
  min-height: 90vh !important;
}

.hero::before {
  background:
    radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(0,0,0,0.5) 100%),
    linear-gradient(160deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.15) 100%) !important;
}

.hero::after {
  height: 250px !important;
  background: linear-gradient(to top, var(--dark-bg) 10%, transparent) !important;
}

/* --- Brand-sub: refined pill --- */
.brand-sub {
  border: 1px solid rgba(232,93,26,0.35) !important;
  background: rgba(232,93,26,0.06) !important;
  padding: 0.45rem 1.6rem 0.45rem 1rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.45em !important;
}

.brand-sub::before {
  width: 2px !important;
  background: var(--primary) !important;
}

/* --- Section titles: refined underline --- */
.section-title h2::after {
  width: 40px !important;
  height: 2px !important;
  background: var(--primary) !important;
  box-shadow: 0 0 15px rgba(232,93,26,0.3) !important;
}

/* --- Services grid: premium card feel --- */
.services-grid {
  border-radius: 2px !important;
}

.service-card-item {
  padding: 3rem 1.5rem !important;
}

.service-card-img ion-icon {
  font-size: 36px !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card-item:hover .service-card-img ion-icon {
  transform: translateY(-4px) scale(1.12) !important;
}

.service-card-name {
  font-size: 0.8rem !important;
  letter-spacing: 0.04em !important;
  color: var(--text-secondary) !important;
  transition: color 0.3s !important;
}

.service-card-item:hover .service-card-name {
  color: var(--text-primary) !important;
}

/* --- TO container: more depth --- */
.to-container {
  box-shadow: 0 25px 70px rgba(0,0,0,0.4) !important;
}

.to-tab {
  font-size: 0.82rem !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.to-tab.active {
  box-shadow: inset 0 0 20px rgba(232,93,26,0.15) !important;
}

.to-details {
  padding: 3rem !important;
}

.to-footer .total {
  letter-spacing: 0.06em !important;
}

/* --- Split content: refined image treatment --- */
.content-image.glass-card {
  box-shadow: 0 30px 70px rgba(0,0,0,0.35) !important;
  border: 1px solid var(--glass-border) !important;
}

.content-image.glass-card img {
  filter: brightness(0.9) contrast(1.05) !important;
}

.content-image.glass-card:hover img {
  filter: brightness(1) contrast(1.05) !important;
}

.floating-badge {
  font-size: 1.4rem !important;
  padding: 1rem 2.2rem !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 10px 30px rgba(232,93,26,0.3) !important;
}

/* --- Check list: refined spacing --- */
.check-list li {
  padding: 0.4rem 0 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em !important;
}

/* --- Price grid: elegant zebra + hover --- */
.price-item {
  padding: 1.1rem 1rem !important;
  font-size: 0.88rem !important;
}

.price-item:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

.price-item:hover {
  background: rgba(232,93,26,0.04) !important;
  padding-left: 1.5rem !important;
}

.price-item span:first-child {
  color: var(--text-secondary);
}

.price-item:hover span:first-child {
  color: var(--text-primary);
}

.price-item b {
  color: var(--primary);
  font-size: 1.05em;
}

/* --- Promo cards: more depth and glow --- */
.promo-card {
  border: 1px solid rgba(255,255,255,0.06) !important;
  padding: 3rem !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.promo-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,93,26,0.15) !important;
}

.promo-featured {
  border-color: rgba(232,93,26,0.25) !important;
}

.promo-discount {
  font-size: 4rem !important;
  text-shadow: 0 0 40px rgba(232,93,26,0.15) !important;
}

.promo-featured .promo-discount {
  font-size: 5.5rem !important;
}

/* --- Gallery: premium hover with zoom + orange glow --- */
.gallery-grid {
  gap: 6px !important;
}

.gallery-item img {
  height: 280px !important;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-item:hover img {
  transform: scale(1.06) !important;
}

.gallery-item::before {
  z-index: 3 !important;
  height: 3px !important;
  background: var(--primary) !important;
  box-shadow: 0 0 15px rgba(232,93,26,0.5) !important;
}

/* --- Achievement numbers: refined --- */
.achievement-num {
  font-size: clamp(3rem, 7vw, 5.5rem) !important;
  -webkit-text-stroke: none !important;
  text-shadow: 0 0 50px rgba(232,93,26,0.15) !important;
}

.achievement-item {
  padding: 3.5rem 2rem !important;
}

/* --- CTA banner: more dramatic --- */
.cta-banner {
  border-top: none !important;
  border-bottom: none !important;
}

.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.05 !important;
}

.cta-phone {
  font-size: 2rem !important;
  opacity: 0.85;
}

.cta-phone:hover {
  opacity: 1 !important;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* --- Review cards: editorial feel --- */
.review-card {
  padding: 3rem !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.review-card:hover {
  border-color: rgba(232,93,26,0.2) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
}

.review-card::before {
  font-size: 6rem !important;
  opacity: 0.06 !important;
  top: 0.5rem !important;
}

/* --- G-cards: refined hover --- */
.g-card {
  padding: 3rem 2rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.g-card:hover {
  background: rgba(232,93,26,0.04) !important;
}

.g-card ion-icon {
  font-size: 32px !important;
  margin-bottom: 1.5rem !important;
}

.g-card h3 {
  font-size: 0.92rem !important;
  margin-bottom: 0.6rem !important;
}

/* --- Guarantee section: refined centering --- */
.guarantee-icon {
  margin: 0 auto 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.guarantee-big {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  text-shadow: 0 0 30px rgba(232,93,26,0.12) !important;
}

.stat-card .num {
  font-size: clamp(3rem, 5vw, 4.5rem) !important;
}

/* --- Contact cards: refined --- */
.contact-card {
  padding: 3.5rem 2rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.contact-card:hover {
  background: rgba(232,93,26,0.04) !important;
}

.contact-card h3 {
  font-size: 1.05rem !important;
}

/* --- Contact form: more refined inputs --- */
.contact-form-container {
  padding: 4rem 3.5rem !important;
}

/* --- Buttons: refined feel --- */
.btn {
  letter-spacing: 0.18em !important;
  font-size: 0.68rem !important;
}

.btn.lg {
  padding: 1.15rem 3rem !important;
  font-size: 0.72rem !important;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(232,93,26,0.2) !important;
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(232,93,26,0.35) !important;
  transform: translateY(-2px) !important;
}

.btn-outline:hover {
  box-shadow: 0 5px 20px rgba(232,93,26,0.15) !important;
  transform: translateY(-1px) !important;
}

/* --- Footer: more generous spacing --- */
footer {
  padding: 5rem 0 !important;
}

.footer-content {
  gap: 2.5rem !important;
}

.footer-links {
  gap: 3.5rem !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
}

.footer-socials a {
  width: 42px !important;
  height: 42px !important;
}

.footer-socials a:hover {
  transform: translateY(-2px) !important;
}

/* --- Certificates: better aspect ratio --- */
.cert-item img {
  height: 300px !important;
}

/* --- About section: refined text --- */
.about-text {
  font-size: 1.05rem !important;
  line-height: 2 !important;
  letter-spacing: 0.01em !important;
}

/* --- Section spacing: more air --- */
.section {
  padding: 7.5rem 0 !important;
}

/* --- Nav: refined --- */
.nav-list a {
  font-size: 0.7rem !important;
  letter-spacing: 0.14em !important;
  padding: 0.9rem 0.5rem !important;
  color: rgba(255,255,255,0.5) !important;
}

.nav-list a:hover {
  color: var(--primary) !important;
}

/* --- Header refined --- */
.header-phones a {
  font-size: 0.82rem !important;
  letter-spacing: 0.03em !important;
}

/* --- Decorative number: safe overflow --- */
.hero-content::before {
  opacity: 0.5 !important;
  right: 0 !important;
  font-size: clamp(6rem, 15vw, 16rem) !important;
}

.services-section::after {
  display: none !important;
}

/* --- Mobile refinements --- */
@media (max-width: 768px) {
  .section { padding: 5rem 0 !important; }
  .hero { min-height: 85vh !important; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem) !important; }
  .hero p { font-size: 0.95rem !important; }
  .promo-discount { font-size: 3rem !important; }
  .promo-featured .promo-discount { font-size: 4rem !important; }
  .promo-card { padding: 2rem !important; }
  .gallery-item img { height: 200px !important; }
  .cert-item img { height: 220px !important; }
  .to-details { padding: 2rem 1.5rem !important; }
  .contact-form-container { padding: 3rem 2rem !important; }
  .btn.lg { padding: 1rem 2rem !important; }
  .achievement-item { padding: 2.5rem 1.5rem !important; }
  .achievement-num { font-size: 3.5rem !important; }
  .review-card { padding: 2rem !important; }
  .g-card { padding: 2rem 1.5rem !important; }
  .contact-card { padding: 2.5rem 1.5rem !important; }
}

/* =============================================
   FIX v3 — Certs, TO mobile, About redesign
   ============================================= */

/* --- Certificates: 2 columns on mobile, clickable --- */
@media (max-width: 768px) {
  .certificates-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }
  .cert-item img {
    height: 180px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 480px) {
  .certificates-row {
    grid-template-columns: 1fr 1fr !important;
  }
  .cert-item img {
    height: 150px !important;
  }
}

.cert-item {
  cursor: pointer !important;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: var(--primary-hover);
}

/* --- TO section: mobile fix --- */
@media (max-width: 1024px) {
  .to-menu {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 !important;
    padding: 0.8rem !important;
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
  }
  .to-menu::-webkit-scrollbar { display: none; }
  .to-tab {
    white-space: nowrap !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.75rem !important;
    border-left: none !important;
    flex-shrink: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .to-details {
    padding: 1.5rem 1rem !important;
  }
  .to-table td {
    padding: 0.8rem 0.3rem !important;
    font-size: 0.8rem !important;
  }
  .to-footer {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
  .to-footer .total {
    font-size: 1.6rem !important;
  }
  .section-title h2 {
    font-size: clamp(1.8rem, 5vw, 3rem) !important;
  }
}

/* --- About section: redesigned layout --- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 300;
}

.about-lead strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
}

.about-card:hover {
  border-color: rgba(232, 93, 26, 0.2);
  background: rgba(232, 93, 26, 0.03);
}

.about-card ion-icon {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .about-card {
    padding: 1.5rem !important;
  }
}

/* --- Hide old about-text (replaced) --- */
.about-text { display: none; }
