/* ============================================================
   Lex-Klíma — Landing page styles
   Apple-like, glassmorphism, light-blue palette
   ============================================================ */

:root {
  /* Brand palette derived from the logo */
  --blue-50:  #f3f8ff;
  --blue-100: #e6f0ff;
  --blue-200: #cfe1ff;
  --sky:      #bcd6ff;
  --brand:    #3f63f6;   /* primary royal blue */
  --brand-2:  #2c33d6;   /* deep indigo */
  --brand-light: #8fa6ff;
  --accent:   #ff9a4d;   /* warm orange (sun) */
  --accent-2: #ff7e3d;

  --ink:    #0c1a39;     /* deep navy text */
  --slate:  #51618a;     /* secondary text */
  --muted:  #8492b4;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-brd: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 20px 50px -20px rgba(33, 58, 140, 0.35);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-50) 40%, var(--blue-100) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Decorative animated background ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; top: -160px; left: -120px;
  background: radial-gradient(circle, var(--brand-light), transparent 70%); }
.blob-2 { width: 460px; height: 460px; top: 30%; right: -160px;
  background: radial-gradient(circle, var(--sky), transparent 70%); animation-delay: -6s; }
.blob-3 { width: 420px; height: 420px; bottom: -140px; left: 30%;
  background: radial-gradient(circle, rgba(255,154,77,0.45), transparent 70%); animation-delay: -11s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 25px) scale(0.96); }
}

/* ---------- Glass primitives ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow);
}
.glass-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px; padding: 9px 16px;
  font-size: 0.86rem; font-weight: 500;
  box-shadow: 0 8px 22px -12px rgba(33,58,140,0.4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.1px;
  padding: 12px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 14px 30px -10px rgba(63,99,246,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(63,99,246,0.7); }
.btn-ghost {
  color: var(--brand-2);
  background: rgba(255,255,255,0.6);
  border-color: rgba(63,99,246,0.25);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn-ghost:hover { transform: translateY(-2px); background: #fff; }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--brand);
  background: linear-gradient(90deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-sub { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--slate); max-width: 620px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 100;
  transition: top .3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px; padding: 10px 14px 10px 22px;
  box-shadow: 0 12px 36px -18px rgba(33,58,140,0.4);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled .nav-inner { background: rgba(255,255,255,0.72); box-shadow: 0 16px 44px -18px rgba(33,58,140,0.5); }

.brand-logo { height: 30px; width: auto; filter: drop-shadow(0 2px 6px rgba(63,99,246,0.25)); }
/* logo is white with icon — tint container so it reads on light bg */
.brand { display: flex; align-items: center; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  padding: 7px 14px; border-radius: 100px; }

.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width .25s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(63,99,246,0.08); border-radius: 100px; padding: 3px;
}
.lang-btn {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 0.82rem; color: var(--slate);
  padding: 6px 11px; border-radius: 100px; transition: all .2s ease;
}
.lang-btn.is-active { background: #fff; color: var(--brand-2); box-shadow: 0 4px 10px -4px rgba(33,58,140,0.4); }
.lang-sep { width: 1px; height: 14px; background: rgba(63,99,246,0.2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 160px 0 90px; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 1.04;
  letter-spacing: -1.5px; margin: 16px 0 18px;
  background: linear-gradient(120deg, var(--ink) 0%, var(--brand-2) 55%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--slate); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.hero-badges .glass-chip { flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 18px; }
.hero-badges strong { font-size: 1.25rem; font-weight: 800; color: var(--brand-2); line-height: 1.1; }
.hero-badges span { font-size: 0.78rem; color: var(--slate); }

.hero-visual { position: relative; }
.hero-card { border-radius: 28px; padding: 12px; overflow: hidden; position: relative;
  transform: rotate(1.5deg); animation: heroFloat 7s ease-in-out infinite; }
.hero-card img { border-radius: 20px; width: 100%; height: 460px; object-fit: cover; }
.hero-card-badge { position: absolute; left: 26px; bottom: 26px; }
.hero-card-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #36d07f; box-shadow: 0 0 0 4px rgba(54,208,127,0.25); }
.hero-temp {
  position: absolute; top: 28px; right: -10px; font-weight: 700; gap: 6px;
  animation: heroFloat 7s ease-in-out infinite; animation-delay: -3.5s;
}
.temp-snow { color: var(--brand); } .temp-sun { color: var(--accent); }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%      { transform: translateY(-16px) rotate(1.5deg); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 86px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .section-sub { margin: 0 auto; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.75); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: 0 18px 44px -24px rgba(33,58,140,0.45);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 56px -26px rgba(33,58,140,0.55); }
.service-ico {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 20px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 24px -10px rgba(63,99,246,0.6);
}
.service-card:nth-child(2) .service-ico { background: linear-gradient(135deg, #54b0ff, var(--brand)); }
.service-card:nth-child(3) .service-ico { background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 12px 24px -10px rgba(255,126,61,0.55); }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--slate); font-size: 0.98rem; }

/* ---------- Why us ---------- */
.section-why { padding-top: 40px; }
.why-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.why-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; color: var(--ink); }
.why-list .check {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; margin-top: 2px;
  display: grid; place-items: center; color: #fff; font-size: 0.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.why-stats { display: grid; gap: 18px; }
.stat-card { border-radius: var(--radius); padding: 26px 28px; display: flex; flex-direction: column; gap: 6px; }
.stat-card strong { font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card span { color: var(--slate); font-size: 0.95rem; }

/* ---------- Machines ---------- */
.machine-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 940px; margin: 0 auto 34px;
}
.filter-chip {
  font: inherit; cursor: pointer; font-size: 0.82rem; font-weight: 600; color: var(--slate);
  background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 8px 14px; border-radius: 100px; display: inline-flex; align-items: center; gap: 7px;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.filter-chip:hover { color: var(--brand); border-color: rgba(63,99,246,0.4); transform: translateY(-2px); }
.filter-chip.is-active {
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent; box-shadow: 0 10px 22px -10px rgba(44,51,214,0.65);
}
.fc-count {
  font-size: 0.68rem; font-weight: 700; opacity: .75; line-height: 1;
  background: rgba(12,26,57,0.08); padding: 2px 7px; border-radius: 100px;
}
.filter-chip.is-active .fc-count { background: rgba(255,255,255,0.25); opacity: .95; }

.machines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.machine-card {
  background: rgba(255,255,255,0.62);
  -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.75); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 44px -24px rgba(33,58,140,0.45);
  transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column;
}
.machine-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -26px rgba(33,58,140,0.55); }
.machine-media {
  position: relative; height: 196px; overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #e9f0ff 100%);
}
.machine-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .5s ease; }
.machine-card:hover .machine-media img { transform: scale(1.05); }
.machine-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.76rem; font-weight: 800; letter-spacing: .2px;
  color: #fff; padding: 6px 12px; border-radius: 100px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 16px -6px rgba(44,51,214,0.6);
}
.machine-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.machine-brand { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .6px; color: var(--brand); font-weight: 700; margin-bottom: 4px; }
.machine-body h3 { font-size: 1.06rem; font-weight: 700; line-height: 1.25; }
.machine-desc { color: var(--slate); font-size: 0.86rem; margin: 10px 0 16px; flex: 1; }
.machine-foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.mf-type, .mf-area { font-size: 0.72rem; font-weight: 600; padding: 5px 10px; border-radius: 100px; white-space: nowrap; }
.mf-type { color: var(--brand); background: rgba(63,99,246,0.09); border: 1px solid rgba(63,99,246,0.18); }
.mf-area { color: var(--slate); background: rgba(12,26,57,0.05); border: 1px solid rgba(12,26,57,0.08); }
.machines-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 28px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 18px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 16px 40px -22px rgba(33,58,140,0.5);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,26,57,0.45));
  opacity: 0; transition: opacity .35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .g-cap {
  position: absolute; left: 16px; bottom: 14px; color: #fff; font-weight: 600; font-size: 0.9rem;
  z-index: 2; opacity: 0; transform: translateY(8px); transition: all .35s ease;
}
.gallery-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Contact ---------- */
.section-contact { padding-bottom: 100px; }
.contact-card {
  border-radius: 30px; padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
.contact-list { list-style: none; margin-top: 28px; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.ci-ico {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.1rem; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 22px -10px rgba(63,99,246,0.6);
}
.ci-text { display: flex; flex-direction: column; }
.ci-text em { font-style: normal; font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.ci-text a, .ci-text span { font-weight: 600; color: var(--ink); }
.ci-text a:hover { color: var(--brand); }

.contact-form { display: grid; gap: 16px; align-content: start; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 0.84rem; font-weight: 600; color: var(--slate); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 0.95rem; color: var(--ink);
  background: rgba(255,255,255,0.7); border: 1px solid rgba(63,99,246,0.18);
  border-radius: 13px; padding: 13px 15px; transition: border .2s ease, box-shadow .2s ease; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(63,99,246,0.12);
}
.form-hint { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* ---------- Service highlights ---------- */
.service-highlights {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px;
}
.service-highlights li { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.hl-check {
  display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; margin-right: 8px;
  font-size: 0.7rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #36d07f, #1fa463);
}

/* ---------- Process ---------- */
.section-process { padding-top: 40px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-card {
  position: relative; background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.75); border-radius: var(--radius); padding: 34px 30px 30px;
  box-shadow: 0 18px 44px -24px rgba(33,58,140,0.45);
  transition: transform .35s ease, box-shadow .35s ease;
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 30px 56px -26px rgba(33,58,140,0.55); }
.process-num {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 24px -10px rgba(63,99,246,0.6);
}
.process-card:nth-child(3) .process-num { background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 12px 24px -10px rgba(255,126,61,0.55); }
.process-card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 4px; }
.process-sub { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--brand); margin-bottom: 12px; }
.process-card p { color: var(--slate); font-size: 0.95rem; }

/* ---------- Maintenance band ---------- */
.section-maintenance { padding-top: 40px; }
.maintenance-card {
  border-radius: 28px; padding: 44px; display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: start;
}
.maintenance-icon {
  width: 84px; height: 84px; border-radius: 22px; display: grid; place-items: center; font-size: 2.4rem;
  background: linear-gradient(135deg, #eaf2ff, #d6e6ff); border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.maintenance-body .section-sub { max-width: none; }
.maintenance-callout {
  margin-top: 20px; padding: 14px 18px; border-radius: 16px; align-items: flex-start;
  font-weight: 600; color: var(--ink); line-height: 1.45;
  background: rgba(255,154,77,0.12); border-color: rgba(255,154,77,0.35);
}
.maintenance-callout .dot.warn { flex: 0 0 9px; width: 9px; height: 9px; margin-top: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,154,77,0.25); }
.maintenance-note { margin-top: 16px; color: var(--slate); font-size: 0.95rem; }

/* ---------- Reviews band ---------- */
.reviews-band { padding: 10px 0 30px; }
.reviews-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(63,99,246,0.08), rgba(255,154,77,0.08));
  border: 1px solid rgba(255,255,255,0.7); border-radius: 26px; padding: 36px 30px;
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px -26px rgba(33,58,140,0.45);
}
.reviews-inner .stars { font-size: 1.6rem; letter-spacing: 4px; color: #ffb43d; margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(255,154,77,0.45); }
.reviews-inner p { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; color: var(--ink); max-width: 640px; margin: 0 auto 22px; }

/* ---------- Brands ---------- */
.brands { margin-top: 54px; text-align: center; }
.brands-title { font-size: 1.05rem; font-weight: 700; color: var(--slate); margin-bottom: 20px; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 920px; margin: 0 auto; }
.brand-chip {
  font-weight: 700; font-size: 0.9rem; color: var(--brand-2); padding: 10px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.65); border: 1px solid rgba(63,99,246,0.18);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px -14px rgba(33,58,140,0.5); transition: transform .25s ease, color .25s ease, border-color .25s ease;
}
.brand-chip:hover { transform: translateY(-3px); color: var(--brand); border-color: var(--brand); }

/* ---------- Pricing ---------- */
.section-pricing { padding-top: 40px; }
.pricing-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 26px; align-items: start; }
.price-headline {
  border-radius: var(--radius); padding: 34px 30px; text-align: center; position: sticky; top: 96px;
}
.price-label { font-size: 0.9rem; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: .5px; }
.price-value { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 10px 0 6px; }
.price-value strong { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; line-height: 1;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-value span { font-size: 1.4rem; font-weight: 700; color: var(--brand-2); }
.price-vat { display: block; font-size: 0.84rem; color: var(--muted); margin-bottom: 22px; }
.price-headline .btn { margin-bottom: 14px; }
.price-fix { font-size: 0.84rem; color: var(--slate); }
.price-details { border-radius: var(--radius); padding: 34px 32px; }
.price-details h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.price-details h4 { font-size: 1.02rem; font-weight: 700; margin: 26px 0 14px; color: var(--ink); }
.price-includes { list-style: none; display: grid; gap: 12px; }
.price-includes li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.94rem; color: var(--ink); line-height: 1.45; }
.inc-check {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px; display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800; color: #fff; background: linear-gradient(135deg, #36d07f, #1fa463);
}
.price-extras { list-style: none; display: grid; gap: 10px; }
.price-extras li {
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  background: rgba(255,154,77,0.1); border: 1px solid rgba(255,154,77,0.25);
  border-radius: 13px; padding: 12px 16px; font-size: 0.92rem;
}
.price-extras .ex-k { color: var(--ink); font-weight: 500; }
.price-extras .ex-v { font-weight: 700; color: var(--accent-2); white-space: nowrap; }

/* ---------- Opening hours (contact) ---------- */
.hours-card { margin-top: 26px; padding: 14px 18px; border-radius: 16px; gap: 14px; align-items: center;
  background: rgba(54,208,127,0.1); border-color: rgba(54,208,127,0.3); }
.ci-ico.small { width: 38px; height: 38px; font-size: 1rem; background: linear-gradient(135deg, #36d07f, #1fa463); box-shadow: 0 10px 22px -10px rgba(31,164,99,0.6); }
.hours-text { display: flex; flex-direction: column; }
.hours-text em { font-style: normal; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.hours-text strong { font-size: 0.98rem; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(135deg, var(--brand-2), #1b2050); color: #fff; padding: 56px 0 28px; margin-top: 20px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 320px; font-size: 0.95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .1s; }
.stagger.in > *:nth-child(3) { transition-delay: .2s; }
.stagger.in > *:nth-child(4) { transition-delay: .3s; }
.stagger.in > *:nth-child(5) { transition-delay: .4s; }
.stagger.in > *:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-card img { height: 360px; }
  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; gap: 36px; padding: 38px; }
  .maintenance-card { grid-template-columns: 1fr; gap: 22px; padding: 34px; }
  .maintenance-icon { width: 68px; height: 68px; font-size: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-headline { position: static; }
}

/* Collapse to the hamburger menu once the horizontal nav gets tight */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 6px; position: absolute; top: 70px; left: 12px; right: 12px;
    background: rgba(255,255,255,0.9); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8); border-radius: 22px; padding: 18px;
    box-shadow: 0 24px 50px -20px rgba(33,58,140,0.5);
  }
  .nav-links.open a { padding: 10px 8px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .hero { padding-top: 130px; }
  .section { padding: 60px 0; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .maintenance-card { padding: 26px 22px; }
  .price-details { padding: 26px 22px; }
  .price-extras li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .contact-card { padding: 28px 22px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hero-cta .btn { width: 100%; }
}
