/* ── DESIGN TOKENS ── */
:root {
  --c-bg:       #F8FAFC;
  --c-white:    #ffffff;
  --c-navy:     #0d2d42;
  --c-navy2:    #1a4a64;
  --c-blue:     #1a7fc1;
  --c-blue-l:   #3b9fd6;
  --c-blue-xl:  #7dc5e8;
  --c-sky:      #e8f5fc;
  --c-sky2:     #d0ecf8;
  --c-muted:    #6b8fa8;
  --c-text:     #1a3344;
  --c-border:   rgba(26,127,193,.14);
  --c-border2:  rgba(26,127,193,.08);
  --sh-s:       0 2px 16px rgba(26,127,193,.08);
  --sh-m:       0 8px 40px rgba(26,127,193,.12);
  --sh-l:       0 20px 60px rgba(26,127,193,.18);
  --sh-accent:  0 8px 28px rgba(26,127,193,.32);
  --r:          20px;
  --r-sm:       12px;
  --font-h:     'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-b:     'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
/* Subtle bg texture */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(59,159,214,.10), transparent),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(26,127,193,.08), transparent),
    var(--c-bg);
}
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.uk-navbar-container {
  background: rgba(255,255,255,.88) !important;
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(26,127,193,.10);
  box-shadow: 0 1px 24px rgba(26,127,193,.07);
}
.uk-navbar-nav > li > a {
  font-family: var(--font-b); font-size: 14px; font-weight: 500;
  color: var(--c-muted) !important; border-radius: 999px !important;
  min-height: unset; padding: 8px 14px !important; transition: .2s;
}
.uk-navbar-nav > li > a:hover { color: var(--c-blue) !important; background: rgba(26,127,193,.08) !important; }
.uk-offcanvas-bar { background: #fff !important; }
.uk-accordion > li { margin: 0; }
.uk-accordion > li + li { margin-top: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px; border-radius: 999px; border: none;
  font-family: var(--font-h); font-size: 15px; font-weight: 700; cursor: pointer;
  transition: transform .2s, box-shadow .2s; white-space: nowrap; letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: hsl(38,92%,50%); color: #fff;
  box-shadow: 0 8px 28px rgba(234,140,0,.35);
}
.btn-accent:hover { box-shadow: 0 14px 40px rgba(234,140,0,.48); color: #fff; }
.btn-blue {
  background: linear-gradient(135deg, var(--c-blue-l), var(--c-blue));
  color: #fff; box-shadow: var(--sh-accent);
}
.btn-blue:hover { box-shadow: 0 14px 40px rgba(26,127,193,.50); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.80); border: 2px solid rgba(26,127,193,.30);
  color: var(--c-navy); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.95); border-color: var(--c-blue); color: var(--c-blue); }
.btn-ghost-w {
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.45); color: #fff;
}
.btn-ghost-w:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn-sm { height: 42px; font-size: 14px; padding: 0 20px; }
.btn-full { width: 100%; border-radius: var(--r-sm); }

/* ── LOGO ── */
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-weight: 800; font-size: 16px; color: var(--c-navy); white-space: nowrap; letter-spacing: -.02em; }
.logo-icon { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-blue-l), var(--c-blue)); box-shadow: 0 4px 14px rgba(26,127,193,.35); flex-shrink: 0; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}

/* The photo — bright, airy, lightly faded so text is legible */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: right;
}
/* Light frosted overlay — like the reference with gradient from top */
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(248,250,252,.82) 0%,
      rgba(248,250,252,.62) 38%,
      rgba(248,250,252,.88) 100%),
    linear-gradient(to right,
      rgba(248,250,252,.60) 0%,
      rgba(248,250,252,.0) 60%);
}


.hero-inner { position: relative; z-index: 2; width: 100%; padding: 30px 0 80px; }

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

/* Live badge */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.80); border: 1px solid rgba(26,127,193,.14);
  backdrop-filter: blur(12px);
  font-size: 13px; font-weight: 500; color: var(--c-text);
  margin-bottom: 24px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.20); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

.hero-h {
  font-family: var(--font-h);
  font-size: 55px;
  font-weight: 800; line-height: 1.06; letter-spacing: -1px;
  color: var(--c-navy); margin: 0 0 18px;
}
.hero-h .accent { color: var(--c-blue); }

.hero-sub {
  font-size: 17px; line-height: 1.65; color: rgba(26,51,68,.60);
  max-width: 520px; margin: 0 0 28px;
}

.hero-price-row { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-price { font-family: var(--font-h); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.05em; color: var(--c-navy); }
.hero-price-note { font-size: 13px; color: var(--c-muted); padding-bottom: 4px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero mini-stats bar */
.hero-stats {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(26,127,193,.12);
}
.hstat { display: flex; align-items: center; gap: 6px; }
.hstat-val { font-family: var(--font-h); font-weight: 800; font-size: 18px; color: var(--c-navy); letter-spacing: -.03em; }
.hstat-lbl { font-size: 13px; color: var(--c-muted); }
.hstat-sep { width: 1px; height: 24px; background: rgba(26,127,193,.15); }

/* ── SECTION LAYOUT ── */
.section { padding: 32px 0; }
.shell {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 36px; border-radius: var(--r);
  background: rgba(255,255,255,.80);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-m);
}
.shell::before {
  content: ""; position: absolute; top: -80px; right: -80px; z-index: -1;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,159,214,.10), transparent 70%);
}
.sh { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.sh h2 { font-family: var(--font-h); margin: 10px 0 0; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.06; letter-spacing: -.04em; color: var(--c-navy); font-weight: 800; }
.sh p  { margin: 10px 0 0; color: var(--c-muted); max-width: 560px; line-height: 1.7; font-size: 15px; }

/* kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(26,127,193,.09); border: 1px solid rgba(26,127,193,.18);
  color: var(--c-blue); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

/* ── FEAT CARDS (4 USPs) ── */
.feat-card {
  padding: 24px 20px; background: #fff;
  border: 1px solid var(--c-border); border-radius: var(--r);
  box-shadow: var(--sh-s); transition: transform .2s, box-shadow .2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.feat-card h3 { font-family: var(--font-h); margin: 14px 0 6px; font-size: 16px; font-weight: 700; color: var(--c-navy); letter-spacing: -.01em; }
.feat-card p  { margin: 0; color: var(--c-muted); font-size: 14px; line-height: 1.6; }

/* ── WORKS GALLERY ── */
.wgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.wgrid .wide { grid-column: span 2; }
.wphoto { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--c-sky2); }
.wide .wphoto { aspect-ratio: 16/9; }
.wphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.wphoto:hover img { transform: scale(1.05); }
.wlabel {
  position: absolute; bottom: 12px; left: 12px;
  color: #fff; font-size: 12px; font-weight: 600;
  background: rgba(13,45,66,.65); padding: 5px 12px;
  border-radius: 999px; backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .3s;
}
.wphoto:hover .wlabel { opacity: 1; }

/* ── SERVICES (cards like the reference) ── */
.svc-card {
  position: relative; height: 100%;
  padding: 28px; border-radius: var(--r);
  border: 1px solid var(--c-border); background: rgba(255,255,255,.80);
  backdrop-filter: blur(12px); transition: all .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); border-color: rgba(26,127,193,.25); }
.svc-card.featured {
  background: linear-gradient(150deg, var(--c-blue) 0%, #0a4a78 100%) !important;
  border-color: transparent !important; color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(26,127,193,.38) !important;
}
.svc-card.featured:hover { transform: translateY(-8px); }
.svc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; border-radius: 999px;
  background: hsl(38,92%,50%); color: #fff;
  font-size: 11px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(234,140,0,.38); letter-spacing: .04em;
}
.svc-icon { width: 52px; height: 52px; border-radius: 18px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.svc-icon-default { background: rgba(26,127,193,.09); }
.svc-icon-featured { background: rgba(255,255,255,.18); }
.svc-card h3 { font-family: var(--font-h); margin: 0 0 4px; font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.svc-card .svc-sub { font-size: 13px; opacity: .55; margin-bottom: 12px; }
.svc-card .svc-desc { font-size: 14px; line-height: 1.65; margin-bottom: 16px; opacity: .65; }
.svc-feats { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 8px; }
.svc-feats li { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.svc-feats li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-blue-l); flex-shrink: 0; }
.svc-card.featured .svc-feats li::before { background: rgba(255,255,255,.7); }
.svc-card.featured .svc-feats li { color: rgba(255,255,255,.85); }
.svc-price-block { padding-top: 16px; border-top: 1px solid rgba(26,127,193,.10); }
.svc-card.featured .svc-price-block { border-top-color: rgba(255,255,255,.15); }
.svc-price { font-family: var(--font-h); font-size: 26px; font-weight: 800; letter-spacing: -.04em; color: var(--c-navy); }
.svc-card.featured .svc-price { color: #fff; }

/* ── BENEFITS (reference style) ── */
.ben-item { display: flex; gap: 16px; align-items: flex-start; }
.ben-icon { width: 48px; height: 48px; border-radius: 16px; background: rgba(26,127,193,.07); border: 1px solid rgba(26,127,193,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: .2s; }
.ben-item:hover .ben-icon { background: rgba(26,127,193,.12); }
.ben-item h3 { font-family: var(--font-h); margin: 0 0 4px; font-size: 15px; font-weight: 700; color: var(--c-navy); }
.ben-item p  { margin: 0; font-size: 13px; color: var(--c-muted); line-height: 1.6; }

/* ── STATS ── */
.stat-card { padding: 24px; text-align: center; transition: transform .2s; }
.stat-card:hover { transform: translateY(-3px); }
.stat-iw { width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 12px; background: rgba(26,127,193,.07); display: flex; align-items: center; justify-content: center; }
.stat-val { font-family: var(--font-h); font-size: clamp(1.7rem,3.5vw,2.2rem); font-weight: 800; letter-spacing: -.05em; color: var(--c-navy); }
.stat-lbl { margin-top: 4px; color: var(--c-muted); font-size: 13px; }

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  box-shadow: var(--sh-s);
  transition: transform .2s, box-shadow .2s;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
}

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-blue-l), var(--c-blue));
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(26,127,193,.28);
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
}

.step-card p {
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── REVIEWS (like reference) ── */
.rev-card { padding: 24px; transition: transform .2s, box-shadow .2s; }
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--sh-m); }
.rev-stars { color: hsl(38,92%,50%); font-size: 14px; letter-spacing: .08em; margin-bottom: 12px; }
.rev-text { font-size: 14px; color: rgba(26,51,68,.70); line-height: 1.7; margin: 0 0 16px; }
.rev-author { display: flex; align-items: center; justify-content: space-between; }
.rev-name { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--c-navy); }
.rev-loc { font-size: 12px; color: var(--c-muted); display: flex; align-items: center; gap: 4px; }

/* ── INCLUDED ── */
.inc-item {
  padding: 14px 14px 14px 46px; position: relative;
  background: #fff; border: 1px solid var(--c-border); border-radius: 14px;
  font-size: 14px; color: var(--c-text); transition: transform .2s;
}
.inc-item:hover { transform: translateY(-2px); box-shadow: var(--sh-s); }
.inc-item::before {
  content: ""; position: absolute; left: 13px; top: 13px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue-l), var(--c-blue));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/cover;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/cover;
}

/* ── SERVICE MAINTENANCE ── */
.maint-card { padding: 28px; transition: transform .2s, box-shadow .2s; }
.maint-card:hover { transform: translateY(-3px); box-shadow: var(--sh-m); }
.maint-card h3 { font-family: var(--font-h); margin: 0 0 8px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--c-navy); }
.maint-card p  { margin: 0; color: var(--c-muted); font-size: 14px; line-height: 1.7; }
.maint-price { margin-top: 14px; font-family: var(--font-h); font-size: 28px; font-weight: 800; letter-spacing: -.05em; color: var(--c-blue); }

/* ── DISCOUNT ── */
.disc {
  padding: 40px; text-align: center;
  background: linear-gradient(135deg, var(--c-blue), #0a4a78);
  border-radius: var(--r); box-shadow: 0 20px 60px rgba(26,127,193,.28); color: #fff;
}
.disc .kicker { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.92); }
.disc h3 { font-family: var(--font-h); margin: 14px 0 8px; font-size: clamp(1.4rem,2.8vw,1.9rem); font-weight: 800; letter-spacing: -.04em; color: #fff; }
.disc p  { margin: 0; color: rgba(255,255,255,.72); }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--c-border); background: #fff; border-radius: 18px; overflow: hidden; transition: box-shadow .2s; }
.faq-item.uk-open { box-shadow: var(--sh-s); }
.uk-accordion-title {
  color: var(--c-navy) !important; font-family: var(--font-b); font-weight: 600;
  display: flex !important; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; font-size: 15px; text-align: left; transition: color .2s;
}
.uk-accordion-title::before { display: none !important; }
.uk-accordion-title:hover { color: var(--c-blue) !important; }
.faq-ic { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; background: rgba(26,127,193,.08); border: 1px solid rgba(26,127,193,.16); color: var(--c-blue); font-size: 20px; transition: .25s; }
.uk-open .faq-ic { transform: rotate(45deg); background: linear-gradient(135deg, var(--c-blue-l), var(--c-blue)); color: #fff; border-color: transparent; }
.uk-accordion-content { padding: 0 22px 18px !important; margin: 0 !important; color: var(--c-muted); line-height: 1.7; font-size: 14px; }

/* ── LEAD FORM ── */
.lead-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 22px; align-items: stretch; }
.lead-card { padding: 30px; }
.lead-card h2 { font-family: var(--font-h); margin: 14px 0 0; font-size: clamp(1.6rem,3.5vw,2.4rem); line-height: 1.06; letter-spacing: -.05em; color: var(--c-navy); font-weight: 800; }
.lead-card p { color: var(--c-muted); line-height: 1.7; font-size: 15px; margin-top: 10px; }
.flabel { display: block; margin: 16px 0 9px; font-size: 13px; color: var(--c-navy); font-weight: 600; letter-spacing: .01em; }
.choices { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.choice {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 10px; text-align: center; border-radius: 12px;
  border: 1.5px solid rgba(26,127,193,.18); background: rgba(255,255,255,.90);
  color: var(--c-navy); cursor: pointer; transition: .2s; font-size: 14px; font-weight: 500;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:has(input:checked) { border-color: var(--c-blue); background: rgba(26,127,193,.09); color: var(--c-blue); box-shadow: 0 0 0 3px rgba(26,127,193,.10); }
.field {
  width: 100%; height: 52px; padding: 0 16px; border-radius: 12px; outline: none;
  border: 1.5px solid rgba(26,127,193,.20); background: rgba(255,255,255,.95); color: var(--c-text);
  font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field::placeholder { color: #aac0d0; }
.field:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(26,127,193,.10); }

/* ── CONTACTS ── */
.ct-card { padding: 24px; transition: transform .2s, box-shadow .2s; }
.ct-card:hover { transform: translateY(-3px); box-shadow: var(--sh-m); }
.ct-icon { width: 48px; height: 48px; border-radius: 16px; background: rgba(26,127,193,.08); border: 1px solid rgba(26,127,193,.14); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ct-card h3 { font-family: var(--font-h); margin: 0 0 6px; font-size: 16px; font-weight: 700; color: var(--c-navy); }
.ct-card p  { margin: 0; color: var(--c-muted); font-size: 14px; }
.ct-card strong { display: block; margin-top: 3px; font-size: 15px; color: var(--c-blue); font-weight: 700; }

/* ── OC ── */
.oc-links { display: grid; gap: 6px; }
.oc-links a { padding: 13px 16px; border-radius: 12px; background: var(--c-sky); color: var(--c-muted) !important; font-size: 15px; font-weight: 500; transition: .2s; }
.oc-links a:hover { background: var(--c-sky2); color: var(--c-blue) !important; }
.oc-act { display: grid; gap: 10px; margin-top: 20px; }

/* ── FOOTER ── */
footer { padding: 20px 0 44px; }
.foot {
  padding: 20px 26px; border-radius: 18px;
  border: 1px solid var(--c-border); background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px); color: var(--c-muted);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 14px;
}
.foot strong { color: var(--c-navy); font-weight: 700; font-family: var(--font-h); }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .hero-inner { padding: 30px 0 64px; }
  .lead-grid { grid-template-columns: 1fr; }
  .svc-card.featured { transform: none; }
}
@media (max-width: 900px) {
  .wgrid { grid-template-columns: repeat(2,1fr); }
  .wgrid .wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .shell { padding: 20px; }
  .hero-h { font-size: clamp(2.2rem,8vw,3rem); }
  .hero-actions .btn { width: 100%; }
  .hero-price-row { flex-direction: column; gap: 4px; }
  .hero-stats { gap: 12px; }
  .choices { grid-template-columns: 1fr; }
  .sh h2 { font-size: clamp(1.5rem,6vw,1.9rem); }
  .uk-accordion-title { padding: 14px 18px; }
  .uk-accordion-content { padding: 0 18px 16px !important; }
  .foot { flex-direction: column; text-align: center; }
  .wgrid { grid-template-columns: 1fr; }
  .wgrid .wide { grid-column: span 1; }
  .svc-card.featured { transform: none; }
  .lead-card { padding: 20px; }
}

/* HEADER LAYOUT */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  flex-wrap: nowrap;
}

.site-header__logo {
  flex: 0 0 auto;
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.site-header__nav .uk-navbar-nav {
  flex-wrap: nowrap;
}

.site-header__nav .uk-navbar-nav > li {
  flex: 0 0 auto;
}

.site-header__phone {
  flex: 0 0 auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-link--mobile {
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .site-header {
    min-height: 68px;
    gap: 14px;
  }
}

@media (max-width: 639px) {
  .site-header {
    min-height: 64px;
    gap: 10px;
  }

  .phone-link--mobile {
    font-size: 22px;
    letter-spacing: -1px;
  }
}

/* ── HERO BENEFITS ── */
.hero-benefits-grid {
  margin-top: 8px;
}

.hero-benefit-card {
  height: 100%;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(77,77,77,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}

.hero-benefit-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border-color: rgba(255,255,255,0.6);
}

.hero-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
}

.hero-benefit-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--c-navy);
}

.hero-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
}

@media (max-width: 959px) {
  .hero-benefits-grid {
    margin-top: 24px;
  }
}

@media (max-width: 639px) {
  .hero-benefit-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .hero-benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .hero-benefit-card h3 {
    font-size: 16px;
  }

  .hero-benefit-card p {
    font-size: 13px;
  }
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(26,127,193,.10);
  box-shadow: 0 -4px 24px rgba(26,127,193,.10);

  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 640px) {

  /* Почему выбирают нас */
  .ben-item {
    align-items: flex-start;
    gap: 14px;
  }

  .ben-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 42px;
  }

  /* Как проходит работа */
  .step-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .step-num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-bottom: 0;
    flex: 0 0 42px;
    border-radius: 12px;
    font-size: 14px;
  }

  .step-card h3 {
    margin: 0 0 4px;
  }

  .step-card p {
    margin: 0;
  }

  /* Контакты */
  .ct-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .ct-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-bottom: 0;
    border-radius: 14px;
    flex: 0 0 42px;
  }

  .ct-card h3 {
    margin: 0 0 4px;
  }

  .ct-card strong,
  .ct-card p {
    margin-top: 0;
  }
}
