@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --graphite: #1C1C1E;
  --graphite-light: #2C2C2E;
  --graphite-mid: #3A3A3C;
  --orange: #FF6700;
  --orange-dark: #CC5200;
  --orange-light: #FF8C3A;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --text-muted: #A0A0A8;
  --border-color: rgba(255,103,0,0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --radius-card: 12px;
  --radius-img: 24px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--graphite);
  color: var(--white);
  font-family: 'PT Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Fjalla One', sans-serif;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* ===== SECTION TAG LABEL ===== */
.jux-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'PT Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* ===== SECTION HEADING ===== */
.jux-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.5em;
}

.jux-heading span { color: var(--orange); }

/* ===== GRADIENT BUTTON ===== */
.jux-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255,103,0,0.4);
}

.jux-cta-btn:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: 0 6px 28px rgba(255,103,0,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== FLAT CARDS ===== */
.jux-tile {
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.jux-tile:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ===== ICON BOX ===== */
.jux-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(255,103,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.jux-icon-box svg {
  width: 26px;
  height: 26px;
  fill: var(--orange);
}

/* ===== DIVIDER WITH ICON ===== */
.jux-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 5%;
  margin: 0;
}

.jux-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.jux-divider-icon {
  width: 32px;
  height: 32px;
  fill: var(--orange);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ===== SIDE ACCENT STRIPE ===== */
.jux-stripe-left { border-left: 4px solid var(--orange); padding-left: 20px; }
.jux-stripe-right { border-right: 4px solid var(--orange); padding-right: 20px; }

/* ===== NAVBAR ===== */
#jux-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28,28,30,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,103,0,0.15);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}

#jux-topbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.jux-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jux-logo img {
  height: 38px;
  width: auto;
  border-radius: 6px;
}

.jux-logo-name {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.jux-logo-name span { color: var(--orange); }

.jux-nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.jux-nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.jux-nav-links a:hover { color: var(--orange); }

.jux-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.jux-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.jux-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jux-hamburger.active span:nth-child(2) { opacity: 0; }
.jux-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#jux-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--graphite);
  border-bottom: 2px solid var(--orange);
  padding: 20px 5%;
  flex-direction: column;
  gap: 0;
}

#jux-mobile-menu.open { display: flex; }

#jux-mobile-menu a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

#jux-mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
#jux-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
  background: var(--graphite);
}

.jux-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imges/bg.jpg');
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  filter: brightness(0.22);
  z-index: 0;
}

.jux-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,30,0.4) 0%, rgba(28,28,30,0.85) 100%);
  z-index: 1;
}

.jux-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.jux-hero-badge {
  display: inline-block;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.jux-hero-title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.jux-hero-title .highlight { color: var(--orange); }

.jux-hero-slogan {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.jux-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.jux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.jux-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all var(--transition);
}

.jux-hero-phone:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,103,0,0.08);
}

.jux-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 56px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.jux-stat-item { text-align: center; }

.jux-stat-num {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
}

.jux-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ===== ADVANTAGES ===== */
#jux-advantages {
  padding: 60px 5% 50px;
  position: relative;
}

#jux-advantages::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

.jux-adv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.jux-adv-tile {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.jux-adv-tile h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.jux-adv-tile p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== SERVICES ===== */
#jux-services {
  padding: 60px 5%;
  position: relative;
}

.jux-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.jux-service-card {
  position: relative;
  overflow: hidden;
}

.jux-service-card::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.jux-service-card:hover::before { transform: scaleY(1); }

.jux-service-name {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.jux-service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.jux-service-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.jux-price-num {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.6rem;
  color: var(--orange);
}

.jux-price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
#jux-process {
  padding: 60px 5%;
  position: relative;
}

#jux-process::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, var(--orange) 100%);
}

.jux-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  position: relative;
}

.jux-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

.jux-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}

.jux-step-num {
  width: 56px;
  height: 56px;
  background: var(--graphite-mid);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.jux-step-body h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  margin-top: 14px;
}

.jux-step-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== PROCESS VISUAL ===== */
#jux-process-visual {
  padding: 60px 5%;
}

.jux-pv-img {
  border-radius: var(--radius-img);
  width: 100%;
  object-fit: cover;
  height: 260px;
  margin-top: 28px;
}

.jux-pv-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.jux-pv-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.jux-pv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.jux-pv-point span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* ===== COMPARE ===== */
#jux-compare {
  padding: 60px 5%;
  position: relative;
}

.jux-compare-table {
  margin-top: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.jux-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}

.jux-compare-row:last-child { border-bottom: none; }

.jux-compare-cell {
  padding: 14px 16px;
  font-size: 0.85rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.jux-compare-cell:last-child { border-right: none; }

.jux-compare-row.header .jux-compare-cell {
  background: var(--graphite-mid);
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.9rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jux-compare-row:not(.header) .jux-compare-cell:nth-child(2) {
  background: rgba(255,103,0,0.06);
  font-weight: 700;
  color: var(--white);
}

.jux-ok { color: #4CAF50; }
.jux-no { color: #f44336; }

/* ===== MATERIALS ===== */
#jux-materials {
  padding: 60px 5%;
}

.jux-mat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.jux-mat-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.jux-mat-card h4 { font-size: 1rem; margin-bottom: 5px; }
.jux-mat-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== TRUST ===== */
#jux-trust {
  padding: 60px 5%;
  position: relative;
}

#jux-trust::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.jux-trust-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin-top: 28px;
}

.jux-trust-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.jux-trust-num-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.jux-trust-big {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.jux-trust-small {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ===== REVIEWS ===== */
#jux-reviews {
  padding: 60px 5%;
}

.jux-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.jux-review-card {
  position: relative;
}

.jux-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.jux-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--graphite-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.jux-review-name {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
}

.jux-review-city {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.jux-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.jux-star { fill: var(--orange); width: 16px; height: 16px; }
.jux-star.empty { fill: var(--graphite-mid); }

.jux-review-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-style: italic;
}

.jux-review-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Fjalla One', sans-serif;
  font-size: 4rem;
  color: rgba(255,103,0,0.15);
  line-height: 1;
}

/* ===== CHECKLIST ===== */
#jux-checklist {
  padding: 60px 5%;
}

.jux-checklist-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin-top: 28px;
  margin-bottom: 28px;
}

.jux-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jux-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.jux-check-icon { flex-shrink: 0; margin-top: 2px; }
.jux-check-icon svg { width: 18px; height: 18px; fill: var(--orange); }

/* ===== ABOUT ===== */
#jux-about {
  padding: 60px 5%;
  position: relative;
}

.jux-about-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin-bottom: 28px;
}

.jux-about-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

.jux-about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.jux-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.jux-value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ===== LOCAL MAP ===== */
#jux-local {
  padding: 60px 5%;
}

.jux-local-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.jux-local-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.jux-local-item svg { width: 22px; height: 22px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }

.jux-local-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.jux-local-item span { font-size: 0.85rem; color: var(--text-muted); }

.jux-map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-img);
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.jux-map-placeholder svg { width: 36px; height: 36px; fill: var(--orange); opacity: 0.6; }

/* ===== FAQ ===== */
#jux-faq {
  padding: 70px 5%;
  position: relative;
}

#jux-faq::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

.jux-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  counter-reset: faq;
}

.jux-faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.jux-faq-item:first-child { border-top: 1px solid var(--border-color); }

.jux-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  counter-increment: faq;
}

.jux-faq-num {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2rem;
  color: rgba(255,103,0,0.25);
  line-height: 1.1;
  flex-shrink: 0;
  min-width: 48px;
  transition: color var(--transition);
}

.jux-faq-item.open .jux-faq-num { color: var(--orange); }

.jux-faq-q-text {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  flex: 1;
  padding-top: 4px;
}

.jux-faq-arrow {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-top: 4px;
}

.jux-faq-item.open .jux-faq-arrow { transform: rotate(180deg); fill: var(--orange); }

.jux-faq-ans {
  display: none;
  padding: 14px 0 0 64px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.jux-faq-item.open .jux-faq-ans { display: block; }

/* ===== CTA STRIP ===== */
#jux-cta-strip {
  padding: 48px 5%;
  background: linear-gradient(135deg, rgba(255,103,0,0.12) 0%, rgba(28,28,30,0) 100%);
  border-top: 1px solid rgba(255,103,0,0.2);
  border-bottom: 1px solid rgba(255,103,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.jux-cta-strip-text {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--white);
  max-width: 600px;
}

.jux-cta-strip-text span { color: var(--orange); }

/* ===== CONTACTS ===== */
#jux-contacts {
  padding: 80px 5% 60px;
}

.jux-contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

.jux-contacts-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-img);
}

.jux-contacts-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jux-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: border-color var(--transition);
}

.jux-contact-row:hover { border-color: var(--orange); }

.jux-contact-row svg { width: 22px; height: 22px; fill: var(--orange); flex-shrink: 0; margin-top: 1px; }

.jux-contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

.jux-contact-val {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  color: var(--white);
}

.jux-contact-val a { color: var(--white); }
.jux-contact-val a:hover { color: var(--orange); }

/* ===== FOOTER ===== */
#jux-footer {
  background: var(--graphite-light);
  border-top: 1px solid var(--border-color);
  padding: 40px 5% 28px;
}

.jux-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.jux-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.jux-footer-brand img { height: 32px; border-radius: 4px; }
.jux-footer-brand-name {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
}

.jux-footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.jux-footer-contact-small {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.jux-footer-nav h5 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}

.jux-footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.jux-footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.jux-footer-nav a:hover { color: var(--white); }

.jux-footer-bottom {
  border-top: 1px solid var(--border-color);
  margin-top: 32px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== COOKIES BANNER ===== */
#jux-cookies {
  position: fixed;
  bottom: 20px;
  left: 5%;
  right: 5%;
  z-index: 2000;
  background: var(--graphite-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

#jux-cookies.hidden { display: none; }

.jux-cookies-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.jux-cookies-text a { color: var(--orange); }

.jux-cookies-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jux-cookie-accept {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition);
}

.jux-cookie-accept:hover { opacity: 0.85; }

.jux-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.jux-cookie-decline:hover { color: var(--white); border-color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.jux-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== TABLET (min-width: 600px) ===== */
@media (min-width: 600px) {
  .jux-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .jux-services-grid { grid-template-columns: repeat(2, 1fr); }
  .jux-pv-points { grid-template-columns: repeat(2, 1fr); }
  .jux-mat-grid { grid-template-columns: repeat(2, 1fr); }
  .jux-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .jux-footer-grid { grid-template-columns: 1fr 1fr; }
  .jux-pv-img { height: 340px; }
  #jux-cta-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== DESKTOP (min-width: 900px) ===== */
@media (min-width: 900px) {
  .jux-nav-links { display: flex; }
  .jux-hamburger { display: none; }

  .jux-adv-grid { grid-template-columns: repeat(3, 1fr); }
  .jux-services-grid { grid-template-columns: repeat(3, 1fr); }
  .jux-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .jux-trust-nums { grid-template-columns: repeat(4, 1fr); }
  .jux-contacts-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .jux-footer-grid { grid-template-columns: 1.5fr 1fr; }
  .jux-mat-grid { grid-template-columns: repeat(3, 1fr); }
  .jux-pv-img { height: 420px; }
  .jux-pv-points { grid-template-columns: repeat(2, 1fr); }

  .jux-steps::before { left: 31px; }

  .jux-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .jux-about-img { margin-bottom: 0; height: 100%; min-height: 320px; }

  #jux-advantages { padding: 80px 5% 70px; }
  #jux-services { padding: 80px 5%; }
  #jux-process { padding: 80px 5%; }
  #jux-trust { padding: 80px 5%; }
  #jux-reviews { padding: 80px 5%; }
  #jux-faq { padding: 90px 5%; }
  #jux-contacts { padding: 100px 5% 80px; }
}

/* ===== WIDE (min-width: 1200px) ===== */
@media (min-width: 1200px) {
  #jux-topbar { padding: 0 8%; }
  #jux-hero { padding: 100px 8% 80px; }
  #jux-advantages, #jux-services, #jux-process, #jux-trust,
  #jux-reviews, #jux-faq, #jux-contacts, #jux-about,
  #jux-compare, #jux-materials, #jux-checklist,
  #jux-process-visual, #jux-local, #jux-cta-strip, #jux-footer {
    padding-left: 8%;
    padding-right: 8%;
  }
  .jux-hero-stats { gap: 60px; }
}
