﻿
:root {
  --primary: #ff6300;
  --primary-dark: #e26f27;
  --secondary: #1e4e79;
  --dark: #1e4e79;
  --dark-2: #4a4a4a;
  --text: #4a4a4a;
  --muted: #5f6870;
  --light: #f0ffff;
  --white: #ffffff;
  --border: #dfe1e2;
  --shadow: 0 20px 50px rgba(30, 78, 121, 0.10);
  --shadow-strong: 0 30px 70px rgba(30, 78, 121, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f0ffff 100%);
}
body.nav-open {
  overflow: hidden;
}
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(10, 24, 43, 0.22), rgba(10, 24, 43, 0.42));
  backdrop-filter: blur(10px);
  z-index: 1890;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.legal-content {
  display: grid;
  gap: 22px;
  padding: 80px 0;
}
.legal-card {
  padding: 28px;
  border: 1px solid rgba(16, 42, 71, 0.1);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.legal-card h2,
.legal-card h3 {
  margin-top: 0;
  color: var(--dark);
}
.legal-card p,
.legal-card li {
  line-height: 1.75;
}
.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}
.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(16, 42, 71, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,249,252,.98));
  box-shadow: 0 24px 70px rgba(16, 42, 71, 0.22);
  color: var(--text);
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-consent.is-closing {
  opacity: 0;
  transform: translateY(12px);
}
.cookie-consent__text {
  display: grid;
  gap: 6px;
}
.cookie-consent__text strong {
  color: var(--dark);
  font-size: 1rem;
}
.cookie-consent__text p {
  margin: 0;
  line-height: 1.55;
}
.cookie-consent__text a {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.cookie-consent__btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255,99,0,.22);
}
.cookie-consent__btn--ghost {
  border: 1px solid rgba(16, 42, 71, 0.12);
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}
@media (max-width: 720px) {
  .legal-content { padding: 54px 0; }
  .legal-card { padding: 22px; border-radius: 18px; }
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }
  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.scroll-progress { position: fixed; inset: 0 auto auto 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); z-index: 3000; }
.header {
  position: sticky; top: 0; z-index: 2000;
  backdrop-filter: blur(16px); background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.5); transition: all .25s ease;
}
.header.scrolled { box-shadow: 0 10px 30px rgba(15,23,42,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 18px; }
.logo { font-weight: 800; font-size: 1.7rem; letter-spacing: -.04em; }
.logo-easy { color: var(--primary); }
.logo-moving { color: var(--secondary); }
.nav-menu { display: flex; gap: 22px; align-items: center; padding: 0; margin: 0; list-style: none; flex-wrap: wrap; }
.nav-link { color: var(--muted); font-weight: 600; position: relative; transition: color .25s ease; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: linear-gradient(90deg, var(--primary), transparent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,248,251,.94));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(16, 42, 71, 0.1);
  backdrop-filter: blur(14px);
}
.lang-label {
  font-size: .82rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.site-lang-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  min-width: 130px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(232, 239, 245, 0.92), rgba(245, 249, 252, 0.88));
  border: 1px solid rgba(16, 42, 71, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.site-lang-btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.site-lang-btn:hover {
  color: var(--dark);
  transform: translateY(-1px);
}
.site-lang-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255,99,0,.12);
}
.site-lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), #2a6296);
  box-shadow: 0 10px 24px rgba(30, 78, 121, 0.24);
}
.header-phone { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); font-weight: 700; transition: transform .25s ease, box-shadow .25s ease; }
.header-phone:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.78);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,250,.94));
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(16, 42, 71, 0.16);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.hamburger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255, 106, 26, 0.14), transparent 38%);
  opacity: .95;
  pointer-events: none;
}
.hamburger:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 46px rgba(16, 42, 71, 0.2);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 4px auto;
  transition: transform .28s ease, opacity .22s ease, background .22s ease;
  position: relative;
  z-index: 1;
}
.hamburger.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(238,244,248,.96));
  box-shadow: 0 26px 52px rgba(16, 42, 71, 0.24);
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.btn-secondary { background: rgba(255,255,255,.75); color: var(--dark); border-color: var(--border); }
.btn-nav { padding-inline: 18px; }
.page-hero { position: relative; overflow: hidden; padding: 84px 0 64px; background: radial-gradient(circle at 20% 20%, rgba(255,99,0,0.16), transparent 35%), radial-gradient(circle at 80% 20%, rgba(30,78,121,0.18), transparent 34%), linear-gradient(180deg, #f0ffff 0%, #ffffff 100%); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.eyebrow { display: inline-flex; margin-bottom: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(255,99,0,.10); color: var(--primary-dark); font-weight: 800; font-size: .85rem; letter-spacing: .03em; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 4.25rem); line-height: 1.02; letter-spacing: -.05em; margin: 0 0 18px; color: var(--dark); max-width: 12ch; }
.hero-copy p { font-size: 1.08rem; color: var(--muted); max-width: 62ch; margin: 0 0 26px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-panel { justify-self: stretch; }
.glass-card {
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.6); backdrop-filter: blur(18px);
  border-radius: 28px; padding: 26px; box-shadow: var(--shadow-strong);
}
.trust-list { display: grid; gap: 14px; margin-bottom: 22px; }
.trust-list div { display: flex; gap: 12px; align-items: center; color: var(--dark); font-weight: 600; }
.trust-list i { color: var(--primary); }
.mini-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.mini-stat { background: linear-gradient(180deg, rgba(240,255,255,.95), rgba(255,255,255,.92)); border: 1px solid var(--border); border-radius: 18px; padding: 18px 14px; }
.mini-stat strong { display: block; font-size: 1.7rem; color: var(--dark); }
.mini-stat span { color: var(--muted); font-size: .95rem; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(20px); opacity: .4; pointer-events: none; }
.hero-orb-one { width: 280px; height: 280px; right: -60px; top: 40px; background: rgba(255,107,53,.28); }
.hero-orb-two { width: 220px; height: 220px; left: -80px; bottom: 0; background: rgba(31,60,136,.18); }
.section { padding: 78px 0; }
.section.alt { background: linear-gradient(180deg, rgba(240,255,255,.92), rgba(255,255,255,.96)); border-block: 1px solid rgba(223,225,226,.8); }
.section-heading { margin-bottom: 30px; }
.section-heading h2, .two-col h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.08; letter-spacing: -.04em; color: var(--dark); }
.section-heading p, .two-col p { color: var(--muted); font-size: 1.02rem; }
.card-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .blog-card, .mini-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover, .blog-card:hover, .mini-card:hover, .visual-card:hover, .pricing-card:hover, .step-card:hover, .contact-card:hover, .contact-form-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: rgba(255,99,0,.22);
}
.service-card i { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, rgba(255,99,0,.12), rgba(30,78,121,.12)); color: var(--primary); font-size: 1.35rem; }
.service-card h3, .blog-card h3, .feature-item h3, .step-card h3, .pricing-card h2 { margin: 18px 0 12px; color: var(--dark); }
.service-card p, .blog-card p, .visual-card p, .step-card p, .feature-item p, .contact-card p { color: var(--muted); }
.service-card span { color: var(--primary); font-weight: 700; display: inline-flex; gap: 8px; margin-top: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.feature-list, .contact-list { display: grid; gap: 16px; }
.feature-item, .contact-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(34,48,74,.08); }
.feature-item i, .contact-row i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(255,99,0,.12), rgba(30,78,121,.12)); color: var(--primary); }
.visual-card, .contact-card, .contact-form-card, .notice-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.partner-logo-card {
  display: grid;
  place-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 42, 71, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(240, 255, 255, .72));
}
.partner-logo-card img {
  display: block;
  width: min(100%, 220px);
  height: auto;
}
.partner-discount {
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(217, 77, 8, .18);
  background: linear-gradient(180deg, rgba(255, 106, 26, .12), rgba(255, 255, 255, .92));
}
.partner-discount strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 1.05rem;
}
.partner-discount p {
  margin: 0;
}
.service-photo-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 42, 71, .1);
  background: #fff;
  box-shadow: 0 22px 50px rgba(16, 42, 71, .14);
}
.service-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.service-photo-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: .93rem;
}
.quote-box a { color: var(--primary); font-weight: 700; }
.check-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.check-list i { color: var(--primary); margin-top: 3px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.step-card span { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(135deg, rgba(255,99,0,.12), rgba(30,78,121,.12)); color: var(--primary); font-weight: 800; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 20px 22px; background: transparent; border: 0; color: var(--dark); font-weight: 700; text-align: left; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.pricing-card.featured { background: linear-gradient(180deg, rgba(255,107,53,.06), #fff); }
.price-tag { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 10px 0 20px; }
.price-tag span { font-size: 1rem; color: var(--muted); font-weight: 600; }

.pricing-explainer-section {
  padding-top: 34px;
}

.pricing-explainer {
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(26px, 4vw, 46px);
  border-radius: 28px;
  border: 1px solid rgba(16, 42, 71, .1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,249,252,.94)),
    #fff;
  box-shadow: 0 22px 60px rgba(16, 42, 71, .1);
}

.pricing-explainer-head h2 {
  margin: 8px 0 12px;
  color: var(--dark);
}

.pricing-explainer-head p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

.pricing-explainer-body {
  display: grid;
  gap: 16px;
}

.pricing-explainer-body p {
  margin: 0;
  color: #41566b;
  line-height: 1.72;
}

.pricing-explainer-group {
  display: grid;
  gap: 9px;
}

.pricing-explainer-group h3 {
  margin: 0;
  color: var(--dark);
  font-size: 1.04rem;
}

.pricing-explainer-group ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #41566b;
  line-height: 1.7;
}

.pricing-explainer-group li + li {
  margin-top: 4px;
}

.pricing-explainer-body strong {
  color: var(--dark);
}

.pricing-explainer-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 99, 0, .08);
  border: 1px solid rgba(255, 99, 0, .16);
}

.pricing-explainer-note h3,
.pricing-explainer-note strong {
  color: var(--dark);
}

.pricing-explainer-note li {
  font-weight: 800;
}
.strip { padding-top: 0; }
.strip-inner { background: linear-gradient(135deg, var(--secondary), #2d4d97); color: #fff; border-radius: 32px; padding: 34px 36px; box-shadow: 0 28px 70px rgba(30, 78, 121, 0.26); display: flex; align-items: center; justify-content: space-between; gap: 22px; border: 1px solid rgba(223,225,226,.22); position: relative; overflow: hidden; }
.strip-inner::before { content: ''; position: absolute; inset: auto -40px -70px auto; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%); pointer-events: none; }
.strip-inner h2 { margin: 0 0 10px; }
.strip-inner p { margin: 0; color: rgba(255,255,255,.82); }
.strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.strip .btn-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list span, .blog-tag { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: rgba(30,78,121,.08); color: var(--secondary); font-weight: 700; font-size: .9rem; }
.related-grid { grid-template-columns: repeat(4, 1fr); }
.mini-card { text-align: center; font-weight: 700; color: var(--dark); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid label { display: grid; gap: 8px; color: var(--dark); font-weight: 600; }
.form-grid label:last-child { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--border); background: #fff; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
input:focus, textarea:focus, select:focus { outline: 0; border-color: rgba(255,99,0,.45); box-shadow: 0 0 0 4px rgba(255,99,0,.12); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-row strong { display: block; }
.contact-row span { color: var(--muted); }
.map-wrap { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-note, .calc-breakdown { color: var(--muted); }
.calc-result { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; color: var(--primary); margin: 8px 0; letter-spacing: -.04em; }
.blog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 20px; }
.blog-toolbar input { max-width: 480px; }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card a { color: var(--primary); font-weight: 700; }
.blog-count { color: var(--muted); font-weight: 700; }
.notice-box { margin-top: 20px; }
.notice-box strong { display: block; margin-bottom: 8px; color: var(--dark); }
.contact-form .btn { margin-top: 8px; }
.quote-wizard {
  display: grid;
  gap: 18px;
}
.quote-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 4px 0 2px;
}
.quote-progress-step {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(16, 42, 71, 0.1);
  background: #f4f7fb;
  color: var(--muted);
  font-weight: 900;
}
.quote-progress-step.is-active,
.quote-progress-step.is-complete {
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.16), rgba(33, 84, 139, 0.12));
  color: var(--secondary);
  border-color: rgba(255, 106, 26, 0.22);
}
.quote-step {
  display: grid;
  gap: 16px;
}
.quote-step h3 {
  margin: 0;
  color: var(--secondary);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}
.quote-step[hidden] {
  display: none;
}
.quote-wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2px;
}
.quote-wizard-actions .btn {
  margin-top: 0;
}
.quote-wizard-actions .btn-primary {
  margin-left: auto;
}
.quote-step label:focus-within span {
  color: var(--primary);
}
.center-card { text-align: center; }
.footer { padding: 72px 0 24px; background: linear-gradient(180deg, #153b63 0%, #1e4e79 50%, #4a4a4a 100%); color: rgba(255,255,255,.84); border-top: 1px solid rgba(223,225,226,.22); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 28px; }
.footer h3, .footer h4 { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 24px; padding-top: 20px; text-align: center; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-legal-links a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a, .back-to-top, .floating-main {
  width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.08); color: #fff; transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.social-links a:hover, .back-to-top:hover { transform: translateY(-3px); background: rgba(255,255,255,.16); }
.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 2500; display: flex; flex-direction: column; align-items: end; gap: 12px; }
.floating-main { background: linear-gradient(135deg, #25D366, #1fa855); border: 0; box-shadow: 0 20px 45px rgba(37,211,102,.35); position: relative; }
.floating-main::after { content: ''; position: absolute; inset: -8px; border-radius: inherit; border: 2px solid rgba(37,211,102,.28); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{transform:scale(.96);opacity:1} 100%{transform:scale(1.14);opacity:0} }
.floating-menu { display: grid; gap: 10px; transform: translateY(10px); opacity: 0; pointer-events: none; transition: .25s ease; }
.floating-actions.open .floating-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.floating-item { display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 999px; color: #fff; box-shadow: var(--shadow-strong); font-weight: 700; }
.floating-item.whatsapp { background: #25D366; }
.floating-item.telegram { background: linear-gradient(135deg, #27a7e7, #1b8bc9); }
.floating-item.messenger { background: linear-gradient(135deg, #0084ff, #7b61ff); }
.floating-item.call { background: var(--dark); }
.back-to-top { position: fixed; right: 18px; bottom: 164px; z-index: 2400; opacity: 0; pointer-events: none; background: var(--dark); border: 0; box-shadow: var(--shadow-strong); }
.back-to-top.show { opacity: 1; pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
@media (max-width: 1100px) {
  .nav-menu {
    position: fixed;
    left: .46rem;
    right: .46rem;
    top: 90px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-height: calc(100vh - 106px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(.98);
    transition: opacity .26s ease, transform .28s cubic-bezier(.22, .8, .2, 1), visibility .26s ease;
    z-index: 2105;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .hamburger { display: block; }
  .nav-actions { display: none; }
  .page-hero-grid, .two-col, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .steps-grid, .blog-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .page-hero { padding-top: 56px; }
  .mini-stats { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .steps-grid, .blog-grid, .related-grid, .form-grid { grid-template-columns: 1fr; }
  .strip-inner, .hero-cta-row, .blog-toolbar { flex-direction: column; align-items: stretch; }
  .container { width: min(100% - 1rem, 1180px); }
  .section { padding: 56px 0; }
  .hero-copy h1 { max-width: none; }
  .floating-item span { display: none; }
}


/* ===== NAV & LOGO UPGRADE ===== */
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  min-width: 225px;
}
.brand-logo-img {
  width: auto;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
}
.nav {
  min-height: 92px;
  gap: 20px;
}
.nav-menu {
  gap: 8px;
  flex-wrap: nowrap;
}
.nav-item {
  position: relative;
}
.nav-mobile-only {
  display: none;
}
.lang-switcher-mobile {
  width: 100%;
  justify-content: space-between;
  margin-top: 6px;
}
.lang-switcher-mobile .site-lang-toggle {
  min-width: 138px;
}
.nav-link,
.submenu-toggle,
.submenu-link {
  font-weight: 700;
}
.nav-link,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.nav-link::after,
.submenu-toggle::after {
  display: none;
}
.nav-link:hover,
.nav-link.active,
.submenu-toggle:hover,
.has-submenu.active-parent > .submenu-toggle,
.has-submenu.open > .submenu-toggle {
  color: var(--dark);
  background: linear-gradient(180deg, rgba(255,99,0,.10), rgba(30,78,121,.08));
  box-shadow: inset 0 0 0 1px rgba(255,107,53,.08);
}
.submenu-toggle i {
  font-size: .8rem;
  transition: transform .22s ease;
}
.has-submenu:hover > .submenu-toggle i,
.has-submenu:focus-within > .submenu-toggle i,
.has-submenu.open > .submenu-toggle i {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 290px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.submenu-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.submenu-link:hover,
.submenu-link.active {
  background: linear-gradient(180deg, rgba(255,99,0,.10), rgba(30,78,121,.08));
  color: var(--dark);
  transform: translateX(2px);
}
.header-phone {
  padding: 12px 18px;
}
.footer-grid {
  grid-template-columns: 1.15fr .85fr .95fr 1fr;
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(2, 6, 23, .24);
  margin-bottom: 18px;
}
.footer-brand-mark img {
  height: 56px;
  width: auto;
}
.footer-brand-col p {
  max-width: 34ch;
}
.footer h4 {
  margin-bottom: 14px;
}
.footer-links li {
  line-height: 1.5;
}
.footer-links a {
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
  transform: translateX(2px);
}

@media (max-width: 1180px) {
  .brand-logo-img {
    height: 50px;
  }
  .nav {
    min-height: 86px;
  }
  .header-phone {
    display: none;
  }
}

@media (max-width: 1100px) {
  .header.nav-active {
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 42px rgba(16, 42, 71, 0.12);
  }
  .nav {
    min-height: 82px;
  }
  .brand-logo {
    min-width: 0;
  }
  .brand-logo-img {
    height: 44px;
  }
  .nav-menu {
    gap: 12px;
    flex-wrap: nowrap;
  }
  .nav-item,
  .nav-mobile-only {
    width: 100%;
  }
  .nav-mobile-only {
    display: block;
  }
  .lang-switcher-mobile {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid rgba(34,48,74,.08);
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  }
  .nav-link,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 15px 18px;
    border: 1px solid rgba(34,48,74,.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    color: var(--secondary);
    font-size: 1.04rem;
  }
  .nav-link:hover,
  .nav-link.active,
  .submenu-toggle:hover,
  .has-submenu.active-parent > .submenu-toggle,
  .has-submenu.open > .submenu-toggle {
    background: linear-gradient(180deg, rgba(255,99,0,.10), rgba(30,78,121,.08));
    border-color: rgba(34,48,74,.08);
    color: var(--dark);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  }
  .submenu-toggle i {
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 0;
    background: transparent;
    color: #6c8195;
    font-size: .9rem;
  }
  .submenu {
    position: static;
    min-width: 0;
    padding: 0;
    margin-top: 0;
    border-radius: 18px;
    background: rgba(240,255,255,.96);
    box-shadow: none;
    border: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, margin-top .25s ease, padding .25s ease, border .25s ease;
  }
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    max-height: 0;
    margin-top: 0;
    border: 0;
  }
  .has-submenu.open .submenu {
    max-height: 360px;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid var(--border);
  }
  .submenu-link {
    background: transparent;
    border-radius: 14px;
    padding: 12px 14px;
    color: #5e7387;
  }
  .submenu-link:hover,
  .submenu-link.active {
    transform: translateX(2px);
    background: linear-gradient(180deg, rgba(255,99,0,.10), rgba(30,78,121,.08));
    color: var(--dark);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-menu {
    left: .14rem;
    right: .14rem;
    top: 82px;
    padding: 15px 12px 12px;
    border-radius: 0 0 24px 24px;
    border-top: 0;
    max-height: calc(100vh - 92px);
    box-shadow: 0 26px 60px rgba(30, 78, 121, .16);
  }
  .nav-link,
  .submenu-toggle {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .lang-switcher-mobile {
    padding: 12px 14px;
    border-radius: 18px;
  }
  body.nav-open .floating-actions,
  body.nav-open .back-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px) scale(.96) !important;
  }
  body.nav-open .floating-actions.contact-dock {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(.94) !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-mark img {
    height: 48px;
  }
}

/* ===== SEO breadcrumbs ===== */
.breadcrumbs-wrap {
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(240,255,255,.92), rgba(255,255,255,.96));
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}
.breadcrumbs a {
  color: var(--secondary);
  transition: color .2s ease, transform .2s ease;
}
.breadcrumbs a:hover {
  color: var(--primary);
  transform: translateX(1px);
}
.breadcrumbs i {
  font-size: .72rem;
  opacity: .7;
}
.breadcrumbs span:last-child {
  color: var(--dark);
}

/* ===== Footer logo better display ===== */
.footer-brand-mark {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 22px;
}
.footer-brand-mark img {
  height: 72px;
  width: auto;
  max-width: min(100%, 320px);
  filter: drop-shadow(0 16px 30px rgba(2, 6, 23, .18));
}
.footer-brand-col p {
  max-width: 38ch;
}

/* ===== Better nav grouping ===== */
.nav-menu {
  gap: 10px;
}
.has-submenu.active-parent > .submenu-toggle {
  color: var(--dark);
  background: linear-gradient(180deg, rgba(255,99,0,.10), rgba(30,78,121,.08));
  box-shadow: inset 0 0 0 1px rgba(255,107,53,.08);
}

/* ===== Separate floating buttons ===== */
.floating-actions {
  right: 20px;
  bottom: 22px;
}
.back-to-top {
  left: 20px;
  right: auto;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(180deg, #00154d, #07226d);
}
.back-to-top.show {
  transform: translateY(0);
}
@media (max-width: 720px) {
  .floating-actions {
    right: 14px;
    bottom: 16px;
  }
  .back-to-top {
    left: 14px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ===== Modern calculator ===== */
.calculator-section {
  position: relative;
}
.modern-calc {
  display: grid;
  gap: 24px;
}
.modern-calc-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.modern-calc-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--dark);
}
.modern-calc-head p {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
}
.modern-calc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.modern-calc-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30,78,121,.08);
  color: var(--secondary);
  font-weight: 700;
}
.modern-calc-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.98));
  border: 1px solid rgba(34,48,74,.08);
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.modern-calc-ui {
  padding: 28px;
}
.modern-calc .modern-calc-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.modern-calc .modern-calc-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,99,0,.10), rgba(30,78,121,.12));
  color: var(--dark);
  font-weight: 800;
}
.modern-calc #lang-select-container {
  text-align: right;
}
.modern-calc #lang-select {
  padding: 11px 14px;
  border: 1px solid rgba(34,48,74,.14);
  border-radius: 14px;
  font-size: .95rem;
  cursor: pointer;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.modern-calc h3 {
  font-size: 1.45rem;
  margin: 0 0 .35rem;
  color: var(--dark);
}
.modern-calc .muted {
  color: #6c757d;
}
.modern-calc .row {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.modern-calc .col {
  flex: 1 1 220px;
  padding: 8px;
}
.modern-calc label {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4rem;
  color: var(--dark);
}
.modern-calc input[type=time],
.modern-calc input[type=number],
.modern-calc input[type=date],
.modern-calc select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(34,48,74,.14);
  border-radius: 16px;
  font-size: 1rem;
  box-sizing: border-box;
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(15,23,42,.04);
}
.modern-calc .note {
  font-size: .87rem;
  color: #6c757d;
  margin-top: 8px;
  line-height: 1.45;
}
.modern-calc .divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(34,48,74,.06), rgba(34,48,74,.12), rgba(34,48,74,.06));
  margin: 1.35rem 0;
}
.modern-calc .input-group {
  display: flex;
  align-items: stretch;
}
.modern-calc .input-group span {
  background: linear-gradient(180deg, #f4f7fb, #eef3fb);
  border: 1px solid rgba(34,48,74,.14);
  border-left: none;
  border-radius: 0 16px 16px 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--secondary);
}
.modern-calc .input-group input {
  border-radius: 16px 0 0 16px;
  border-right: none;
}
.modern-calc .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin-top: 14px;
}
.modern-calc button,
.modern-calc a.btn {
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: .96rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .18s;
}
.modern-calc button.primary {
  background: linear-gradient(135deg, var(--primary), #ff8e57);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255,99,0,.22);
}
.modern-calc button.secondary,
.modern-calc a.btn.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(34,48,74,.14);
}
.modern-calc a.btn[aria-disabled="true"] {
  opacity: .55;
  pointer-events: none;
}
.modern-calc .spacer {
  margin-left: auto;
  font-size: .88rem;
  color: #6c757d;
}
.modern-calc #result {
  margin-top: 1.2rem;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10,27,90,.04), rgba(255,255,255,.96));
  border: 1px solid rgba(34,48,74,.08);
}
.modern-calc #result h2 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}
.modern-calc #result p {
  margin: .2rem 0 .8rem;
}
.modern-calc #result .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem .85rem;
}
@media(min-width:640px) {
  .modern-calc #result .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.modern-calc .legal {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(34,48,74,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff, #f6faff);
  font-size: .9rem;
  line-height: 1.55;
  color: #37576d;
}
.modern-calc .legal ul {
  margin: .45rem 0 0 1.15rem;
}
.modern-calc .legal li {
  margin: .25rem 0;
}
.modern-calc .modebar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  margin-top: 10px;
}
.modern-calc .modepill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(34,48,74,.12);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  font-size: .92rem;
  color: var(--secondary);
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.modern-calc .modepill strong {
  font-weight: 800;
  color: var(--dark);
}
.modern-calc .badge {
  font-size: .78rem;
  border: 1px solid rgba(34,48,74,.12);
  border-radius: 999px;
  padding: 3px 8px;
  color: #37576d;
  background: #fff;
}
.modern-calc .checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(34,48,74,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.modern-calc .checkline input {
  width: auto;
}
.modern-calc .checkline .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modern-calc .checkline .text strong {
  font-size: .96rem;
}
.modern-calc .checkline .text span {
  font-size: .85rem;
  color: #6c757d;
  line-height: 1.35;
}
.modern-calc .minirow {
  display: flex;
  flex-wrap: wrap;
  margin: -6px;
  margin-top: 8px;
}
.modern-calc .minicol {
  padding: 6px;
  flex: 1 1 120px;
}
.modern-calc .minilabel {
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: .3rem;
}
.modern-calc .strike-red {
  color: #d0021b;
  text-decoration: line-through;
  text-decoration-color: #d0021b;
  text-decoration-thickness: 2px;
}
.modern-calc .temp-removed {
  color: #d0021b;
  font-weight: 800;
  margin-left: 6px;
}
@media (max-width: 900px) {
  .modern-calc-head {
    align-items: stretch;
  }
}
@media (max-width: 720px) {
  .modern-calc-ui {
    padding: 20px;
  }
  .modern-calc .spacer {
    margin-left: 0;
    width: 100%;
  }
  .modern-calc .modern-calc-topbar {
    align-items: stretch;
  }
}


/* ===== Palette + spacing refinement ===== */
.header {
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(223,225,226,.9);
}
.header.scrolled { box-shadow: 0 12px 30px rgba(30, 78, 121, .10); }
.header-phone,
.service-card, .blog-card, .mini-card, .visual-card, .pricing-card, .step-card, .contact-card, .contact-form-card, .notice-box, .faq-item {
  border-color: rgba(223,225,226,.95);
}
.nav-link:hover,
.nav-link.active,
.submenu-toggle:hover,
.has-submenu.active-parent > .submenu-toggle,
.has-submenu.open > .submenu-toggle,
.submenu-link:hover,
.submenu-link.active {
  background: linear-gradient(180deg, rgba(255,99,0,.10), rgba(30,78,121,.08));
}
.eyebrow {
  background: rgba(255,99,0,.10);
  color: var(--primary-dark);
}
.hero-orb-one { background: rgba(255,99,0,.24); }
.hero-orb-two { background: rgba(30,78,121,.16); }
.quick-contact.strip {
  padding-top: 10px;
  padding-bottom: 76px;
}
.quick-contact.strip .container {
  position: relative;
  z-index: 2;
}
.strip-inner h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  letter-spacing: -.04em;
}
.strip-inner p {
  font-size: 1.06rem;
  color: rgba(255,255,255,.88);
  max-width: 58ch;
}
.strip-actions .btn {
  min-width: 164px;
}
.strip-actions .btn-primary {
  box-shadow: 0 16px 30px rgba(255,99,0,.25);
}
.strip-actions .btn-secondary:hover {
  background: rgba(255,255,255,.2);
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(223,225,226,.95);
  border-radius: 26px;
  box-shadow: 0 22px 44px rgba(0,0,0,.14);
}
.footer-brand-mark img {
  height: 82px;
  max-width: min(100%, 340px);
  filter: none;
}
.footer h3, .footer h4 {
  color: #fff;
}
.footer-links a:hover {
  color: #f0ffff;
}
.back-to-top {
  background: linear-gradient(180deg, #1e4e79, #153b63);
  box-shadow: 0 20px 45px rgba(30,78,121,.28);
}
.floating-actions {
  right: 22px;
  bottom: 24px;
}
.back-to-top {
  left: 22px;
  bottom: 24px;
}
@media (max-width: 720px) {
  .quick-contact.strip { padding-bottom: 64px; }
  .strip-inner { padding: 28px 24px; }
  .footer { padding-top: 58px; }
  .footer-brand-mark img { height: 68px; }
}


/* ===== Footer logo hotfix: proper transparent logo on light card ===== */
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,255,255,.96));
  border: 1px solid rgba(223,225,226,.92);
  border-radius: 26px;
  box-shadow: 0 24px 46px rgba(0,0,0,.16);
  margin-bottom: 20px;
}
.footer-brand-mark img {
  height: 84px;
  width: auto;
  max-width: min(100%, 340px);
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(30,78,121,.10));
}
@media (max-width: 720px) {
  .footer-brand-mark {
    padding: 14px 16px;
  }
  .footer-brand-mark img {
    height: 70px;
    max-width: 100%;
  }
}


/* ===== Footer logo display fix v2 ===== */
.footer-brand-mark{padding:0 !important;background:transparent !important;border:0 !important;box-shadow:none !important;border-radius:0 !important;margin-bottom:18px !important;}
.footer-brand-mark img{display:block;height:96px !important;width:auto;max-width:min(100%,360px);object-fit:contain;background:transparent !important;border-radius:20px;box-shadow:0 14px 32px rgba(0,0,0,.14);}
@media (max-width: 720px){.footer-brand-mark img{height:78px !important;max-width:100%;}}

/* ===== Footer logo final fix v3 ===== */
.footer-brand-mark,
.footer-brand-mark:hover {
  display:inline-flex !important;
  align-items:center;
  justify-content:flex-start;
  padding:0 !important;
  margin:0 0 18px 0 !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}
.footer-brand-mark img {
  display:block !important;
  width:min(100%, 280px) !important;
  max-width:280px !important;
  height:auto !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 !important;
}
@media (max-width: 720px) {
  .footer-brand-mark img {
    width:min(100%, 240px) !important;
    max-width:240px !important;
  }
}

/* ===== 2026 site refresh ===== */
:root {
  --primary: #ff6a1a;
  --primary-dark: #d94d08;
  --secondary: #102a47;
  --secondary-soft: #21548b;
  --text: #264157;
  --muted: #5d7387;
  --light: #f2f7fb;
  --white: #ffffff;
  --border: rgba(16, 42, 71, 0.12);
  --border-strong: rgba(16, 42, 71, 0.2);
  --shadow: 0 24px 60px rgba(16, 42, 71, 0.11);
  --shadow-strong: 0 36px 90px rgba(16, 42, 71, 0.16);
  --radius: 28px;
  --radius-sm: 18px;
  --page-glow: radial-gradient(circle at 10% 10%, rgba(255, 106, 26, 0.14), transparent 28%), radial-gradient(circle at 90% 4%, rgba(33, 84, 139, 0.18), transparent 30%), linear-gradient(180deg, #f5f9fc 0%, #ffffff 24%, #eef5fb 100%);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--page-glow);
}

h1,
h2,
h3,
h4,
.logo,
.hero-copy h1,
.section-heading h2,
.two-col h2,
.strip-inner h2,
.modern-calc-head h2 {
  font-family: 'Sora', sans-serif;
}

.container {
  width: min(1220px, calc(100% - 2rem));
}

.header {
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(16, 42, 71, 0.04);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(16, 42, 71, 0.08);
}

.nav {
  min-height: 96px;
}

.brand-logo-img {
  height: 60px;
}

.nav-link,
.submenu-toggle {
  color: var(--muted);
}

.nav-link:hover,
.nav-link.active,
.submenu-toggle:hover,
.has-submenu.active-parent > .submenu-toggle,
.has-submenu.open > .submenu-toggle,
.submenu-link:hover,
.submenu-link.active {
  color: var(--secondary);
  background: linear-gradient(180deg, rgba(255, 106, 26, 0.11), rgba(33, 84, 139, 0.09));
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.12);
}

.submenu {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.93);
}

.header-phone {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 42, 71, 0.1);
  color: var(--secondary);
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8d3a);
  box-shadow: 0 20px 44px rgba(255, 106, 26, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 42, 71, 0.14);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: #fff;
}

.page-hero {
  padding: 96px 0 74px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 106, 26, 0.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(33, 84, 139, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(242, 247, 251, 0.95) 0%, rgba(255, 255, 255, 0.96) 52%, rgba(236, 245, 251, 0.98) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 24px 0 auto;
  height: 220px;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.4) 25%, transparent 50%, rgba(255, 255, 255, 0.25) 75%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

.page-hero-grid {
  gap: 42px;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  padding: 9px 16px;
  background: rgba(255, 106, 26, 0.12);
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.14);
}

.hero-copy h1 {
  max-width: 11.5ch;
  margin-bottom: 20px;
  color: var(--secondary);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}

.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 60ch;
}

.hero-panel {
  position: relative;
}

.glass-card,
.visual-card,
.contact-card,
.contact-form-card,
.notice-box,
.pricing-card,
.step-card,
.service-card,
.blog-card,
.mini-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 253, 0.98));
  box-shadow: var(--shadow);
}

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 32px;
  backdrop-filter: blur(22px);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 58%, rgba(33, 84, 139, 0.08));
  pointer-events: none;
}

.trust-list {
  gap: 12px;
}

.trust-list div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 42, 71, 0.08);
}

.trust-list i,
.check-list i,
.service-card span,
.blog-card a,
.quote-box a {
  color: var(--primary);
}

.mini-stats {
  gap: 12px;
}

.mini-stat {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(16, 42, 71, 0.08);
}

.mini-stat::after {
  content: '';
  position: absolute;
  inset: auto -30px -34px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.16), transparent 65%);
}

.mini-stat strong {
  position: relative;
  z-index: 1;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
}

.hero-orb {
  filter: blur(16px);
}

.hero-orb-one {
  width: 340px;
  height: 340px;
  right: -70px;
  top: 22px;
  background: rgba(255, 106, 26, 0.18);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 12px;
  background: rgba(33, 84, 139, 0.16);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(245, 249, 252, 0.92), rgba(255, 255, 255, 0.94));
  border-block: 1px solid rgba(16, 42, 71, 0.06);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.two-col h2 {
  margin-bottom: 16px;
  color: var(--secondary);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.section-heading p,
.two-col p,
.visual-card p,
.step-card p,
.service-card p,
.blog-card p,
.feature-item p,
.contact-card p,
.notice-box p {
  line-height: 1.72;
  color: var(--muted);
}

.service-card,
.blog-card,
.mini-card,
.pricing-card,
.step-card,
.visual-card,
.contact-card,
.contact-form-card,
.notice-box {
  border-radius: 28px;
}

.service-card,
.blog-card,
.mini-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.blog-card::before,
.mini-card::before,
.pricing-card::before,
.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 58%);
  pointer-events: none;
}

.service-card i {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.14), rgba(33, 84, 139, 0.14));
}

.service-card h3,
.blog-card h3,
.feature-item h3,
.step-card h3,
.pricing-card h2,
.visual-card h3,
.contact-card h2,
.contact-form-card h2 {
  color: var(--secondary);
}

.services-grid,
.pricing-grid {
  gap: 24px;
}

.feature-item,
.contact-row {
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 42, 71, 0.08);
}

.feature-item i,
.contact-row i,
.step-card span {
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.13), rgba(33, 84, 139, 0.14));
  color: var(--primary);
}

.steps-grid {
  gap: 24px;
}

.step-card {
  padding: 30px 28px;
}

.step-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-family: 'Sora', sans-serif;
}

.faq-item {
  border-radius: 24px;
}

.faq-question {
  padding: 22px 24px;
  color: var(--secondary);
}

.faq-answer p {
  padding: 0 24px 24px;
}

.pill-list {
  gap: 12px;
}

.pill-list span,
.blog-tag {
  background: linear-gradient(180deg, rgba(16, 42, 71, 0.07), rgba(33, 84, 139, 0.08));
  color: var(--secondary-soft);
  border: 1px solid rgba(16, 42, 71, 0.08);
}

.breadcrumbs-wrap {
  padding-top: 18px;
  background: transparent;
}

.breadcrumbs {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 42, 71, 0.08);
  box-shadow: 0 14px 34px rgba(16, 42, 71, 0.06);
}

.breadcrumbs span:last-child,
.breadcrumbs a {
  color: var(--secondary);
}

.strip-inner {
  padding: 38px 40px;
  background: linear-gradient(135deg, #102a47 0%, #143b63 42%, #21548b 100%);
  border-radius: 34px;
  box-shadow: 0 30px 72px rgba(16, 42, 71, 0.26);
}

.strip-inner::before {
  width: 260px;
  height: 260px;
}

.footer {
  background: linear-gradient(180deg, #0d2340 0%, #123357 48%, #0d1f34 100%);
}

.footer-grid {
  gap: 34px;
}

.footer-brand-mark,
.footer-brand-mark:hover {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
  margin: 0 0 20px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-brand-mark img {
  width: min(100%, 280px) !important;
  max-width: 280px !important;
  height: auto !important;
}

.floating-main {
  width: 60px;
  height: 60px;
  border-radius: 22px;
}

.back-to-top {
  width: 60px;
  height: 60px;
  border-radius: 22px;
}

.contact-form .btn {
  margin-top: 14px;
}

.contact-form-card form {
  position: relative;
  z-index: 1;
}

.modern-calc-card,
.modern-calc .legal,
.modern-calc #result,
.modern-calc .modepill,
.modern-calc .checkline {
  border-color: rgba(16, 42, 71, 0.1);
}

.modern-calc button.primary {
  background: linear-gradient(135deg, var(--primary), #ff8d3a);
}

.page-anchor-list,
.zone-list,
.highlight-list,
.article-links,
.faq-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-anchor-list a,
.zone-list span,
.highlight-list span,
.article-links a,
.faq-list-inline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 42, 71, 0.1);
  color: var(--secondary);
  font-weight: 700;
}

.page-anchor-list a:hover,
.article-links a:hover,
.faq-list-inline a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 42, 71, 0.08);
}

.smart-route-strip {
  position: relative;
  padding: 30px 0 12px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 255, 255, 0.68) 100%);
}

.smart-route-head {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 18px;
}

.smart-route-head h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.14;
}

.smart-route-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.smart-route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.smart-route-card {
  min-height: 148px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 9px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 42, 71, 0.08);
  box-shadow: 0 16px 38px rgba(16, 42, 71, 0.07);
  color: var(--text);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.smart-route-card:hover,
.smart-route-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 99, 0, 0.28);
  box-shadow: 0 22px 48px rgba(16, 42, 71, 0.12);
}

.smart-route-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 99, 0, 0.12), rgba(30, 78, 121, 0.1));
}

.smart-route-card strong {
  color: var(--dark);
  line-height: 1.2;
}

.smart-route-card span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.district-search {
  max-width: 760px;
  margin: 0 auto 24px;
  display: grid;
  gap: 10px;
}

.district-quick-panel {
  display: grid;
  gap: 16px;
  margin: 0 auto 24px;
  max-width: 1120px;
}

.district-map-panel {
  max-width: 1280px;
  margin: 0 auto 28px;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(16, 42, 71, 0.1);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 99, 0, .08), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(17, 104, 255, .08), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(246,250,253,.94)),
    #fff;
  box-shadow: 0 28px 78px rgba(16, 42, 71, 0.13);
  position: relative;
  overflow: hidden;
}

.district-map-panel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), transparent 20%, transparent 80%, rgba(255,255,255,.72)),
    linear-gradient(180deg, rgba(255,255,255,.52), transparent 28%);
  opacity: .68;
}

.district-map-panel > * {
  position: relative;
  z-index: 1;
}

.district-map-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
}

.district-map-head strong {
  color: var(--dark);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
}

.district-map-head span {
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}

.district-map {
  position: relative;
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 42%, rgba(33,84,139,.16) 42%, rgba(33,84,139,.16) 47%, transparent 47%),
    radial-gradient(circle at 28% 42%, rgba(33,84,139,.12), transparent 32%),
    radial-gradient(circle at 66% 46%, rgba(255,106,26,.12), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(235,244,249,.95));
  border: 1px solid rgba(16, 42, 71, 0.08);
}

.district-map::before {
  content: 'Duna';
  position: absolute;
  left: 43%;
  top: 46%;
  transform: rotate(90deg);
  color: rgba(30, 78, 121, 0.55);
  font-weight: 900;
  letter-spacing: .08em;
}

.district-map::after {
  content: 'Buda   |   Pest';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  color: rgba(16, 42, 71, 0.42);
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
}

.district-map-pin {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  transform: translate(-50%, -50%);
  z-index: 1;
  min-width: 46px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--secondary);
  background: #fff;
  border: 1px solid rgba(16, 42, 71, 0.1);
  box-shadow: 0 12px 24px rgba(16, 42, 71, 0.12);
  font-weight: 950;
  font-size: .86rem;
}

.district-map-pin span {
  line-height: 1;
}

.district-map-pin.buda {
  background: linear-gradient(180deg, #fff, rgba(33,84,139,.09));
}

.district-map-pin.inner {
  background: linear-gradient(180deg, #fff, rgba(255,106,26,.13));
  color: #b84b09;
}

.district-map-pin.pest {
  background: linear-gradient(180deg, #fff, rgba(44,160,120,.1));
}

.district-map-pin:hover,
.district-map-pin:focus-visible {
  z-index: 2;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #e26f27);
  transform: translate(-50%, -50%) scale(1.08);
  outline: 0;
}

.district-map-panel--outline {
  padding: clamp(18px, 3vw, 34px);
}

.district-reference-map {
  position: relative;
  width: min(100%, 1060px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 34px;
  background: #f5f9fc;
  border: 1px solid rgba(16, 42, 71, 0.1);
  box-shadow:
    0 26px 72px rgba(16, 42, 71, 0.16),
    inset 0 0 0 1px rgba(255,255,255,.86);
  overflow: hidden;
  aspect-ratio: 562 / 537;
}

.district-reference-map--inline {
  height: auto;
  aspect-ratio: auto;
  padding: clamp(18px, 3vw, 38px);
  overflow: visible;
  background:
    radial-gradient(circle at 46% 42%, rgba(255,255,255,.98), rgba(249,252,254,.94) 42%, rgba(232,241,247,.82) 100%),
    linear-gradient(145deg, #fbfdff, #e9f1f7);
}

.district-reference-map--inline .district-area {
  cursor: pointer;
  outline: none;
  isolation: isolate;
}

.district-reference-map--inline .district-area > path,
.district-reference-map--inline .district-area > polygon,
.district-reference-map--inline .district-area > polyline {
  fill: rgba(255, 253, 248, .98) !important;
  paint-order: fill stroke markers;
  stroke: rgba(34, 53, 72, .46);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  outline: none;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 2px 3px rgba(16, 42, 71, .045));
  transition: fill .22s ease, fill-opacity .22s ease, stroke .22s ease, stroke-width .22s ease, filter .22s ease, transform .22s ease;
}

.district-reference-map--inline .district-area:hover > path,
.district-reference-map--inline .district-area:hover > polygon,
.district-reference-map--inline .district-area:hover > polyline,
.district-reference-map--inline .district-area:focus-visible > path,
.district-reference-map--inline .district-area:focus-visible > polygon,
.district-reference-map--inline .district-area:focus-visible > polyline,
.district-reference-map--inline .district-area.is-active > path,
.district-reference-map--inline .district-area.is-active > polygon,
.district-reference-map--inline .district-area.is-active > polyline {
  fill: #dff3f5 !important;
  fill-opacity: .98;
  stroke: #12466f;
  stroke-width: 4.8;
  paint-order: stroke fill markers;
  transform: translateY(-2.2px) scale(1.034);
  animation: districtPulse 1.9s ease-in-out infinite;
  filter:
    drop-shadow(0 0 0 #0b2f4f)
    drop-shadow(0 0 4px rgba(255, 255, 255, .95))
    drop-shadow(0 0 12px rgba(68, 154, 184, .46))
    drop-shadow(0 0 0 rgba(255,255,255,1))
    drop-shadow(0 14px 20px rgba(16, 42, 71, .24));
}

.district-reference-map--inline .district-area:hover + text,
.district-reference-map--inline .district-area:focus-visible + text {
  fill: var(--dark);
}

.district-reference-map--inline .district-area:active > path,
.district-reference-map--inline .district-area:active > polygon,
.district-reference-map--inline .district-area:active > polyline {
  transform: translateY(-1px) scale(1.018);
}

.district-reference-map--inline text {
  paint-order: stroke fill;
  fill: #0f2b46 !important;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 3.6px;
  stroke-linejoin: round;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 950;
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(16, 42, 71, .14));
}

.district-reference-map--inline rect {
  display: none;
}

.district-reference-map--inline > path[stroke="#5EBBE9"] {
  stroke: #8fbfcd;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.8;
  opacity: .46;
  pointer-events: none;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, .86))
    drop-shadow(0 3px 7px rgba(87, 132, 154, .1));
}

.district-reference-map--inline > path[stroke="#5EBBE9"] + path[stroke="#5EBBE9"] {
  opacity: .36;
}

.district-reference-map--inline > rect,
.district-reference-map--inline > text {
  pointer-events: none;
}

@keyframes districtPulse {
  0% {
    transform: translateY(-1.3px) scale(1.02);
    fill-opacity: .92;
    filter:
      drop-shadow(0 0 0 rgba(255,255,255,1))
      drop-shadow(0 0 0 #0b2f4f)
      drop-shadow(0 0 7px rgba(68, 154, 184, .26))
      drop-shadow(0 8px 13px rgba(16, 42, 71, .16));
  }
  55% {
    transform: translateY(-2.4px) scale(1.038);
    fill-opacity: .98;
    filter:
      drop-shadow(0 0 0 rgba(255,255,255,1))
      drop-shadow(0 0 0 #0b2f4f)
      drop-shadow(0 0 15px rgba(68, 154, 184, .48))
      drop-shadow(0 13px 19px rgba(16, 42, 71, .22));
  }
  100% {
    transform: translateY(-1.3px) scale(1.02);
    fill-opacity: .92;
    filter:
      drop-shadow(0 0 0 rgba(255,255,255,1))
      drop-shadow(0 0 0 #0b2f4f)
      drop-shadow(0 0 7px rgba(68, 154, 184, .26))
      drop-shadow(0 8px 13px rgba(16, 42, 71, .16));
  }
}

.district-reference-map--inline .district-area:hover ~ text,
.district-reference-map--inline .district-area:focus-visible ~ text,
.district-reference-map--inline .district-area.is-active ~ text {
  fill: #243447;
}

.district-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.district-hotspot {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  outline: none;
  border-radius: 999px;
  text-decoration: none;
}

.district-hotspot span {
  opacity: 0;
  transform: scale(.84);
  color: #fff;
  background: rgba(255, 106, 26, .94);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(16, 42, 71, 0.18);
  font-size: clamp(.62rem, 1.6vw, .84rem);
  font-weight: 950;
  line-height: 1;
  padding: .42em .56em;
  transition: opacity .18s ease, transform .18s ease;
}

.district-hotspot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 106, 26, 0);
  outline: 0 solid rgba(255, 106, 26, 0);
  transition: background .18s ease, outline .18s ease;
}

.district-hotspot:hover::after,
.district-hotspot:focus-visible::after {
  background: rgba(255, 106, 26, 0.13);
  outline: 2px solid rgba(255, 106, 26, 0.72);
}

.district-hotspot:hover span,
.district-hotspot:focus-visible span {
  opacity: 1;
  transform: scale(1);
}

.district-map-note {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}

.district-outline-map {
  width: 100%;
  height: auto;
  display: block;
  max-height: 620px;
  border-radius: 24px;
  background: #d8dde2;
  border: 1px solid rgba(16, 42, 71, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.52);
}

.district-map-bg {
  fill: #f8fbfd;
  stroke: #ef725c;
  stroke-width: 4;
}

.district-danube {
  fill: none;
  stroke: #8fbfcd;
  stroke-width: 4.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .46;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, .86))
    drop-shadow(0 3px 7px rgba(87, 132, 154, .1));
}

.district-shape {
  cursor: pointer;
  outline: none;
}

.district-shape path {
  fill: rgba(255,255,255,.94);
  stroke: #172636;
  stroke-width: 3;
  transition: fill .18s ease, stroke .18s ease, stroke-width .18s ease;
}

.district-shape text {
  fill: #102a47;
  font-weight: 950;
  font-size: 21px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.district-shape.buda path {
  fill: #f3f8fc;
}

.district-shape.inner path {
  fill: #fff6ef;
}

.district-shape.pest path {
  fill: #f9fcfa;
}

.district-shape:hover path,
.district-shape:focus-visible path {
  fill: #ffefe5;
  stroke: var(--primary);
  stroke-width: 5;
}

.district-shape:hover text,
.district-shape:focus-visible text {
  fill: #b84b09;
}

.district-zone-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.district-filter {
  min-height: 42px;
  border: 1px solid rgba(16, 42, 71, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 42, 71, 0.055);
}

.district-filter.is-active,
.district-filter:hover {
  color: #fff;
  border-color: rgba(255, 99, 0, 0.32);
  background: linear-gradient(135deg, var(--primary), #e26f27);
  box-shadow: 0 16px 34px rgba(255, 99, 0, 0.2);
}

.district-zone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.district-zone-cards article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 42, 71, 0.09);
  box-shadow: 0 12px 28px rgba(16, 42, 71, 0.055);
}

.district-zone-cards strong {
  color: var(--dark);
}

.district-zone-cards span {
  color: var(--muted);
  line-height: 1.55;
  font-size: .92rem;
}

.district-search label {
  color: var(--dark);
  font-weight: 800;
}

.district-search-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(16, 42, 71, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(16, 42, 71, 0.07);
}

.district-search-box i {
  color: var(--primary);
}

.district-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dark);
  font: inherit;
  font-weight: 700;
}

.district-search-box input::placeholder {
  color: #7a8fa3;
  font-weight: 600;
}

.district-search p,
.district-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.district-card[hidden] {
  display: none !important;
}

.reviews-band {
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  columns: 3 280px;
  column-gap: 20px;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(16, 42, 71, 0.08);
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 42, 71, 0.07);
  position: relative;
  break-inside: avoid;
  margin: 0 0 20px;
}

.review-card::before {
  content: "5★";
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(229, 88, 42, 0.1);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.review-source-label {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(16, 42, 71, 0.07);
  color: var(--secondary);
  font-size: .74rem;
  font-weight: 900;
}

.review-stars {
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 900;
}

.review-card blockquote {
  margin: 0;
  color: var(--dark);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.55;
}

.review-card p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

.review-text {
  display: grid;
  gap: 12px;
}

.review-card--collapsible .review-text,
.google-review-card--collapsible .review-text {
  max-height: 168px;
  overflow: hidden;
  position: relative;
}

.review-card--collapsible .review-text::after,
.google-review-card--collapsible .review-text::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.review-card--open .review-text {
  max-height: none;
}

.review-card--open .review-text::after {
  display: none;
}

.review-toggle {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(229, 88, 42, 0.1);
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.review-toggle:hover {
  background: rgba(229, 88, 42, 0.16);
}

.review-author {
  padding-top: 4px;
  border-top: 1px solid rgba(16, 42, 71, 0.08);
  color: var(--dark);
  font-weight: 850;
}

.reviews-source {
  margin-top: 18px;
  color: var(--muted);
  font-size: .94rem;
}

.reviews-source a {
  color: var(--primary-dark);
  font-weight: 800;
}

.smart-route-cta {
  background: linear-gradient(135deg, var(--secondary), #2f6fa9);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.smart-route-cta i {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.smart-route-cta strong,
.smart-route-cta span {
  color: #fff;
}

.seo-answer-band {
  padding-top: 58px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 800;
}

.text-link:hover {
  color: var(--secondary);
}

.highlight-band,
.price-example-grid,
.story-grid,
.article-summary-grid,
.service-columns {
  display: grid;
  gap: 24px;
}

.highlight-band {
  grid-template-columns: repeat(3, 1fr);
}

.price-example-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid,
.article-summary-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-card,
.story-card,
.price-example-card,
.article-summary,
.service-column {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-column:hover,
.story-card:hover,
.article-summary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 106, 26, 0.22);
}

.service-column:focus-visible,
.story-card:focus-visible,
.article-summary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.14), var(--shadow-strong);
  border-color: rgba(255, 106, 26, 0.28);
}

.highlight-card h3,
.story-card h3,
.price-example-card h3,
.article-summary h3,
.service-column h3 {
  margin: 0 0 12px;
  color: var(--secondary);
}

.highlight-card p,
.story-card p,
.price-example-card p,
.article-summary p,
.service-column p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-column,
.story-card,
.article-summary,
.blog-card {
  min-width: 0;
}

.instagram-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin-top: 18px;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.instagram-slider::-webkit-scrollbar {
  height: 8px;
}

.instagram-slider::-webkit-scrollbar-thumb {
  background: rgba(16, 42, 71, 0.18);
  border-radius: 999px;
}

.instagram-slide {
  min-width: 100%;
  scroll-snap-align: start;
}

.instagram-image-slide {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(16, 42, 71, 0.08);
  box-shadow: 0 18px 40px rgba(16, 42, 71, 0.08);
}

.instagram-image-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.instagram-image-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 42, 71, 0.8);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.instagram-slide-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.instagram-slide-card > :first-child {
  margin-top: 0;
}

.instagram-handle {
  margin: 14px 0 14px;
  color: var(--secondary);
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
}

.instagram-slider-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 42, 71, 0.09);
  box-shadow: 0 18px 40px rgba(16, 42, 71, 0.06);
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 42, 71, 0.09);
  color: var(--secondary);
  font-weight: 600;
}

.hero-home .page-hero-grid,
.hero-centered .page-hero-grid,
.hero-stack .page-hero-grid,
.hero-business .page-hero-grid,
.hero-prices .page-hero-grid {
  grid-template-columns: 1fr;
}

.hero-home .hero-copy,
.hero-centered .hero-copy,
.hero-stack .hero-copy,
.hero-business .hero-copy,
.hero-prices .hero-copy {
  max-width: 920px;
}

.hero-home .hero-copy h1,
.hero-centered .hero-copy h1,
.hero-stack .hero-copy h1,
.hero-business .hero-copy h1,
.hero-prices .hero-copy h1,
.hero-split-soft .hero-copy h1 {
  max-width: none;
}

.hero-centered .hero-copy,
.hero-prices .hero-copy {
  margin: 0 auto;
  text-align: center;
}

.hero-centered .page-anchor-list,
.hero-centered .hero-cta-row,
.hero-prices .page-anchor-list,
.hero-prices .hero-cta-row {
  justify-content: center;
}

.hero-home-panel,
.hero-band-grid,
.hero-summary-strip,
.hero-contact-band,
.hero-service-links,
.hero-side-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.hero-band-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-summary-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-contact-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-service-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-band-card,
.hero-aside-card,
.hero-service-link {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.hero-band-card::before,
.hero-aside-card::before,
.hero-service-link::before {
  content: '';
  position: absolute;
  inset: auto -34px -42px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.16), transparent 68%);
}

.hero-band-card:hover,
.hero-aside-card:hover,
.hero-service-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 106, 26, 0.22);
}

.hero-service-link {
  text-decoration: none;
}

.hero-band-card h3,
.hero-aside-card h3,
.hero-service-link strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 10px;
  color: var(--secondary);
  font-family: 'Sora', sans-serif;
}

.hero-service-link strong {
  font-size: 1.12rem;
}

.hero-band-card p,
.hero-aside-card p,
.hero-service-link span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-service-link i {
  margin-right: 8px;
  color: var(--primary);
}

.hero-side-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-side-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 42, 71, 0.08);
}

.hero-side-list i {
  margin-top: 3px;
  color: var(--primary);
}

.hero-home-panel .metric-row {
  margin-top: 0;
}

.hero-home-panel .metric-card,
.hero-summary-strip .metric-card {
  background: rgba(255, 255, 255, 0.8);
}

.hero-business .hero-copy p,
.hero-stack .hero-copy p,
.hero-home .hero-copy p,
.hero-split-soft .hero-copy p {
  max-width: 62ch;
}

.hero-copy .highlight-list {
  margin-top: 22px;
}

.hero-price-preview {
  margin-top: 28px;
}

.hero-board .service-columns,
.hero-price-preview .service-columns {
  margin-top: 0;
}

.hero-board .service-column,
.hero-price-preview .pricing-card {
  min-height: 100%;
}

.hero-centered .inline-note,
.hero-story .inline-note,
.hero-contact-hero .inline-note,
.hero-home .inline-note,
.hero-prices .inline-note {
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .highlight-band,
  .price-example-grid,
  .hero-band-grid,
  .hero-summary-strip,
  .hero-contact-band,
  .hero-service-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .smart-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .district-zone-cards {
    grid-template-columns: 1fr;
  }

  .district-map {
    min-height: 380px;
  }

  .reviews-grid {
    columns: 1;
  }
}

@media (max-width: 1100px) {
  .page-hero {
    padding-top: 78px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1rem, 1220px);
  }

  .nav {
    min-height: 84px;
  }

  .brand-logo-img {
    height: 46px;
  }

  .page-hero {
    padding: 70px 0 56px;
  }

  .section {
    padding: 64px 0;
  }

  .glass-card,
  .visual-card,
  .contact-card,
  .contact-form-card,
  .notice-box,
  .pricing-card,
  .step-card,
  .service-card,
  .blog-card,
  .mini-card {
    padding: 24px;
    border-radius: 24px;
  }

  .breadcrumbs {
    border-radius: 22px;
  }

  .highlight-band,
  .price-example-grid,
  .pricing-explainer,
  .story-grid,
  .article-summary-grid,
  .service-columns,
  .metric-row,
  .hero-band-grid,
  .hero-summary-strip,
  .hero-contact-band,
  .hero-service-links {
    grid-template-columns: 1fr;
  }

  .page-anchor-list,
  .zone-list,
  .highlight-list,
  .article-links,
  .faq-list-inline {
    gap: 10px;
  }

  .page-anchor-list a,
  .zone-list span,
  .highlight-list span,
  .article-links a,
  .faq-list-inline a {
    width: 100%;
    justify-content: center;
  }

  .smart-route-strip {
    padding: 24px 0 8px;
  }

  .smart-route-grid {
    grid-template-columns: 1fr;
  }

  .district-quick-panel {
    gap: 14px;
  }

  .district-zone-filters {
    justify-content: flex-start;
  }

  .district-filter {
    flex: 1 1 auto;
  }

  .district-map-panel {
    padding: 14px;
    border-radius: 24px;
  }

  .district-outline-map {
    max-height: none;
    border-radius: 20px;
  }

  .district-reference-map {
    width: 100%;
    border-radius: 16px;
  }

  .district-shape text {
    font-size: 24px;
  }

  .district-map {
    min-height: 520px;
  }

  .district-map::before,
  .district-map::after {
    display: none;
  }

  .district-map-pin {
    min-width: 40px;
    min-height: 38px;
    border-radius: 14px;
    font-size: .78rem;
  }

  .reviews-grid {
    columns: 1;
  }

  .smart-route-card {
    min-height: auto;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .smart-route-card span {
    grid-column: 2;
  }

  .hero-band-card,
  .hero-aside-card,
  .hero-service-link {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-centered .hero-copy,
  .hero-prices .hero-copy {
    text-align: left;
  }

  .hero-centered .page-anchor-list,
  .hero-centered .hero-cta-row,
  .hero-prices .page-anchor-list,
  .hero-prices .hero-cta-row {
    justify-content: flex-start;
  }

}

/* ===== Blog openable articles ===== */
.blog-grid {
  align-items: stretch;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-card > * {
  position: relative;
  z-index: 1;
}

.blog-card p {
  flex: 1 1 auto;
}

.blog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.blog-card-actions .btn {
  padding: 12px 18px;
}

.blog-card-actions .btn.btn-primary {
  color: #fff;
}

.blog-card-actions .btn.btn-secondary {
  color: var(--dark);
}

.blog-card-actions > a:not(.btn) {
  color: var(--primary);
  font-weight: 700;
}

.blog-open {
  min-width: 154px;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.blog-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 38, 0.58);
  backdrop-filter: blur(8px);
}

.blog-modal-dialog {
  position: relative;
  width: min(860px, calc(100% - 1.25rem));
  max-height: calc(100vh - 1.5rem);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 253, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 36px 90px rgba(7, 22, 38, 0.28);
  transform: translateY(26px) scale(.97);
  transition: transform .3s ease;
  overflow: hidden;
}

.blog-modal.open .blog-modal-dialog {
  transform: translateY(0) scale(1);
}

.blog-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(16, 42, 71, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  box-shadow: 0 18px 36px rgba(16, 42, 71, 0.08);
  cursor: pointer;
  z-index: 2;
}

.blog-modal-scroll {
  max-height: calc(100vh - 1.5rem);
  overflow: auto;
  padding: 30px;
}

.blog-modal-content {
  padding-right: 56px;
}

.blog-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 42, 71, 0.08);
}

.blog-article {
  display: grid;
  gap: 18px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.blog-article h2 {
  margin: 0;
  color: var(--secondary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.blog-article p {
  margin: 0;
  line-height: 1.82;
  color: var(--muted);
  font-size: 1.04rem;
}

.blog-article-section {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 42, 71, 0.08);
  box-shadow: 0 18px 40px rgba(16, 42, 71, 0.06);
}

.blog-article-section h3 {
  margin: 0 0 14px;
  color: var(--secondary);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .blog-card-actions {
    align-items: stretch;
  }

  .blog-card-actions .btn,
  .blog-card-actions a {
    width: 100%;
    justify-content: center;
  }

  .blog-modal-scroll {
    padding: 22px;
  }

  .blog-modal-content {
    padding-right: 0;
    padding-top: 32px;
  }

  .blog-modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .blog-modal-footer .btn {
    width: 100%;
  }
}

/* ===== Floating WhatsApp animation upgrade ===== */
.floating-main {
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.floating-main i {
  transition: transform .25s ease, opacity .25s ease;
}

.floating-main::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(255,255,255,.26), transparent 68%);
  opacity: 0;
  transform: scale(.5);
}

.floating-actions.open .floating-main {
  transform: translateY(-2px) scale(.97);
  filter: saturate(1.08);
}

.floating-actions.is-animating .floating-main i {
  animation: whatsappWiggle .55s ease;
}

.floating-actions.is-animating .floating-main::before {
  animation: whatsappFlash .55s ease;
}

.floating-menu .floating-item {
  transform: translateY(10px) scale(.96);
  opacity: 0;
}

.floating-actions.open .floating-item {
  animation: floatingItemPop .32s ease forwards;
}

.floating-actions.open .floating-item:nth-child(2) {
  animation-delay: .05s;
}

.floating-actions.open .floating-item:nth-child(3) {
  animation-delay: .1s;
}

.floating-actions.open .floating-item:nth-child(4) {
  animation-delay: .15s;
}

@keyframes whatsappWiggle {
  0% { transform: rotate(0) scale(1); }
  18% { transform: rotate(-14deg) scale(1.08); }
  36% { transform: rotate(12deg) scale(1.08); }
  54% { transform: rotate(-8deg) scale(1.04); }
  72% { transform: rotate(6deg) scale(1.02); }
  100% { transform: rotate(0) scale(1); }
}

@keyframes whatsappFlash {
  0% { opacity: 0; transform: scale(.55); }
  45% { opacity: 1; transform: scale(1.16); }
  100% { opacity: 0; transform: scale(1.45); }
}

@keyframes floatingItemPop {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Floating contact dock redesign ===== */
.floating-actions.contact-dock {
  right: 20px;
  bottom: 18px;
  gap: 14px;
  align-items: flex-end;
  position: fixed;
  transform-origin: 100% 100%;
  transition: transform .38s cubic-bezier(.22, .8, .2, 1), opacity .24s ease;
}

.floating-actions.contact-dock::before {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 92px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82));
  opacity: 0;
  filter: blur(14px);
  transform: translateX(18px) scaleX(.72);
  pointer-events: none;
  transition: opacity .32s ease, transform .38s cubic-bezier(.22, .8, .2, 1);
}

.floating-actions.contact-dock .floating-main {
  width: min(292px, calc(100vw - 1rem));
  min-height: 82px;
  height: auto;
  padding: 12px 14px 12px 12px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.97));
  color: var(--secondary);
  box-shadow: 0 28px 58px rgba(16, 42, 71, 0.18);
  overflow: hidden;
  transform-origin: 100% 50%;
  transition: transform .34s cubic-bezier(.22, .8, .2, 1), box-shadow .24s ease;
}

.floating-actions.contact-dock .floating-main::after {
  display: none;
}

.floating-actions.contact-dock .floating-main::before {
  inset: auto -24px -32px auto;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.18), transparent 70%);
  opacity: 1;
  transform: none;
}

.floating-main-stack {
  position: relative;
  width: 96px;
  height: 56px;
  flex-shrink: 0;
  transition: transform .34s cubic-bezier(.22, .8, .2, 1), opacity .26s ease;
}

.floating-mini {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(16, 42, 71, 0.18);
}

.floating-mini.whatsapp {
  left: 0;
  top: 9px;
  z-index: 4;
  background: linear-gradient(135deg, #25d366, #1fa855);
}

.floating-mini.messenger {
  left: 18px;
  top: 0;
  z-index: 3;
  background: linear-gradient(135deg, #0084ff, #7b61ff);
}

.floating-mini.telegram {
  left: 37px;
  top: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #27a7e7, #1b8bc9);
}

.floating-mini.call {
  left: 56px;
  top: 4px;
  z-index: 1;
  background: linear-gradient(135deg, #102a47, #21548b);
}

.floating-main-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
  transition: transform .34s cubic-bezier(.22, .8, .2, 1), opacity .26s ease;
}

.floating-main-title {
  color: var(--secondary);
  font-family: 'Sora', sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.floating-main-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.floating-main-chevron {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(16, 42, 71, 0.06);
  color: var(--secondary);
  transition: transform .34s cubic-bezier(.22, .8, .2, 1), background .24s ease, color .24s ease, opacity .26s ease;
}

.floating-actions.contact-dock.open .floating-main {
  transform: perspective(1200px) translate3d(2px, 0, 0) rotateY(-7deg) scale(.99);
}

.floating-actions.contact-dock.open .floating-main-chevron {
  transform: rotate(135deg);
  background: rgba(255, 106, 26, 0.12);
  color: var(--primary-dark);
}

.floating-actions.contact-dock.is-animating .floating-mini.whatsapp {
  animation: dockBadgePulse .5s ease;
}

.floating-actions.contact-dock.is-animating .floating-mini.messenger {
  animation: dockBadgePulse .5s ease .04s;
}

.floating-actions.contact-dock.is-animating .floating-mini.telegram {
  animation: dockBadgePulse .5s ease .08s;
}

.floating-actions.contact-dock.is-animating .floating-mini.call {
  animation: dockBadgePulse .5s ease .12s;
}

.floating-actions.contact-dock .floating-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(336px, calc(100vw - 1rem));
  display: grid;
  gap: 10px;
  transform: translate3d(0, 10px, 0) scale(.985);
  transform-origin: 50% 100%;
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .2s ease;
}

.floating-actions.contact-dock.open .floating-menu {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.floating-actions.contact-dock .floating-item {
  --dock-accent: #102a47;
  --dock-accent-2: #21548b;
  --dock-accent-soft: rgba(16, 42, 71, 0.14);
  --dock-accent-shadow: rgba(16, 42, 71, 0.22);
  --dock-offset: 0px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 252, 0.98));
  color: var(--secondary);
  box-shadow: 0 22px 48px rgba(16, 42, 71, 0.14);
  overflow: hidden;
  transform: translate3d(var(--dock-offset), 12px, 0) scale(.985);
  transform-origin: 50% 100%;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .34s cubic-bezier(.22, .7, .2, 1), opacity .22s ease, box-shadow .22s ease;
}

.floating-actions.contact-dock .floating-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dock-accent-soft), transparent 72%);
  pointer-events: none;
}

.floating-actions.contact-dock .floating-item::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 10px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(16, 42, 71, 0.12));
  opacity: .5;
  pointer-events: none;
}

.floating-actions.contact-dock .floating-item.whatsapp { --dock-accent: #25d366; --dock-accent-2: #1fa855; --dock-accent-soft: rgba(37, 211, 102, 0.14); --dock-accent-shadow: rgba(37, 211, 102, 0.22); --dock-offset: -2px; }
.floating-actions.contact-dock .floating-item.messenger { --dock-accent: #0084ff; --dock-accent-2: #7b61ff; --dock-accent-soft: rgba(0, 132, 255, 0.14); --dock-accent-shadow: rgba(0, 132, 255, 0.22); --dock-offset: -8px; }
.floating-actions.contact-dock .floating-item.telegram { --dock-accent: #27a7e7; --dock-accent-2: #1b8bc9; --dock-accent-soft: rgba(39, 167, 231, 0.14); --dock-accent-shadow: rgba(39, 167, 231, 0.22); --dock-offset: -4px; }
.floating-actions.contact-dock .floating-item.call { --dock-accent: #102a47; --dock-accent-2: #21548b; --dock-accent-soft: rgba(16, 42, 71, 0.14); --dock-accent-shadow: rgba(16, 42, 71, 0.22); --dock-offset: -10px; }

.floating-actions.contact-dock .floating-item-icon,
.floating-actions.contact-dock .floating-item-arrow,
.floating-actions.contact-dock .floating-item-copy {
  position: relative;
  z-index: 1;
}

.floating-actions.contact-dock .floating-item-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--dock-accent), var(--dock-accent-2));
  box-shadow: 0 16px 28px var(--dock-accent-shadow);
}

.floating-actions.contact-dock .floating-item-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.floating-actions.contact-dock .floating-item-title {
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.98rem;
}

.floating-actions.contact-dock .floating-item-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.floating-actions.contact-dock .floating-item-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(16, 42, 71, 0.06);
  color: var(--secondary);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.floating-actions.contact-dock.open .floating-item {
  opacity: 1;
  transform: translate3d(var(--dock-offset), 0, 0) scale(1);
}

.floating-actions.contact-dock.open .floating-item:nth-child(1) {
  transition-delay: .01s;
}

.floating-actions.contact-dock.open .floating-item:nth-child(2) {
  transition-delay: .04s;
}

.floating-actions.contact-dock.open .floating-item:nth-child(3) {
  transition-delay: .07s;
}

.floating-actions.contact-dock.open .floating-item:nth-child(4) {
  transition-delay: .1s;
}

.floating-actions.contact-dock:not(.open) .floating-item {
  transition-delay: 0s;
}

.floating-actions.contact-dock .floating-item:hover {
  transform: translate3d(var(--dock-offset), -2px, 0) scale(1.003);
  box-shadow: 0 22px 42px rgba(16, 42, 71, 0.15);
}

.floating-actions.contact-dock .floating-item:hover .floating-item-arrow {
  transform: translateX(1px);
  background: rgba(255, 106, 26, 0.12);
  color: var(--primary-dark);
}

@keyframes dockBadgePulse {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-3px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
  .footer-bottom {
    padding-bottom: 18px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .footer-legal-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-legal-links a {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
  }

  .floating-actions.contact-dock {
    right: 12px;
    bottom: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 10px;
  }

  .floating-actions.contact-dock.footer-clear {
    transform: translate3d(calc(100% - 74px), -6px, 0) rotate(-7deg) scale(.96);
  }

  .floating-actions.contact-dock.footer-clear::before {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }

  .floating-actions.contact-dock.footer-clear .floating-main {
    transform: perspective(1200px) translate3d(8px, 0, 0) rotateY(-28deg) scale(.95);
    box-shadow: 0 18px 34px rgba(16, 42, 71, 0.12);
    border-color: rgba(255, 255, 255, 0.58);
  }

  .floating-actions.contact-dock.footer-clear .floating-main::before {
    opacity: .62;
    transform: scale(.84);
  }

  .floating-actions.contact-dock.footer-clear .floating-main-stack {
    transform: translateX(10px) rotate(-4deg) scale(.96);
  }

  .floating-actions.contact-dock.footer-clear .floating-main-copy {
    opacity: .18;
    transform: translateX(18px);
  }

  .floating-actions.contact-dock.footer-clear .floating-main-chevron {
    opacity: .58;
    transform: rotate(98deg) scale(.92);
  }

  .floating-actions.contact-dock .floating-main {
    width: min(calc(100vw - 5.6rem), 288px);
    min-height: 76px;
    padding: 10px 12px;
    border-radius: 28px;
    z-index: 2;
  }

  .floating-actions.contact-dock .back-to-top {
    order: -1;
    flex: 0 0 70px;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 70px;
    height: 78px;
    margin: 0;
    border-radius: 30px 22px 30px 24px;
    border: 1px solid rgba(103, 157, 221, 0.4);
    background:
      radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.24), transparent 34%),
      linear-gradient(160deg, #17406a 0%, #1f5a91 44%, #2f73b1 100%);
    color: #fff;
    box-shadow:
      0 20px 34px rgba(19, 65, 111, 0.28),
      0 12px 22px rgba(11, 28, 49, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 10px, 0) scale(.94);
    transition: transform .28s cubic-bezier(.22, .7, .2, 1), opacity .2s ease, box-shadow .24s ease, background .24s ease;
    z-index: 1;
  }

  .floating-actions.contact-dock .back-to-top::before {
    content: '';
    position: absolute;
    inset: auto -16px -22px auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 108, 177, 0.24), transparent 72%);
    opacity: .96;
    pointer-events: none;
  }

  .floating-actions.contact-dock .back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .floating-actions.contact-dock.open .back-to-top {
    opacity: .72;
    transform: translate3d(0, 0, 0) scale(.98);
  }

  .floating-actions.contact-dock .back-to-top i {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 17px;
    background: rgba(10, 34, 59, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 8px 18px rgba(143, 67, 8, 0.18);
    color: #fff;
    font-size: 1.2rem;
  }

  .floating-main-stack {
    width: 90px;
    height: 52px;
  }

  .floating-mini {
    width: 39px;
    height: 39px;
    border-radius: 14px;
  }

  .floating-mini.telegram {
    left: 34px;
  }

  .floating-mini.call {
    left: 50px;
  }

  .floating-actions.contact-dock .floating-menu {
    width: min(100vw - 1rem, 318px);
    gap: 12px;
  }

  .floating-actions.contact-dock .floating-item {
    padding: 13px 15px;
    border-radius: 22px;
    transform: translate3d(var(--dock-offset), 10px, 0) scale(.988);
  }

  .floating-actions.contact-dock .floating-item.whatsapp {
    --dock-offset: -2px;
  }

  .floating-actions.contact-dock .floating-item.messenger {
    --dock-offset: -8px;
  }

  .floating-actions.contact-dock .floating-item.telegram {
    --dock-offset: -4px;
  }

  .floating-actions.contact-dock .floating-item.call {
    --dock-offset: -10px;
  }

.back-to-top {
    bottom: auto;
  }
}

@supports (content-visibility: auto) {
  .section,
  .quick-contact.strip,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 620px;
  }

  .section[id],
  .quick-contact.strip[id] {
    scroll-margin-top: 92px;
  }
}

.trustindex-cert-fallback {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(280px, calc(100vw - 32px));
  padding: 9px 12px 9px 10px;
  color: #10253f;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(220, 230, 238, .95);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 37, 63, .18);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.trustindex-cert-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: #147a50;
  border-radius: 999px;
  font-weight: 900;
}

.trustindex-cert-copy {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.trustindex-cert-copy strong {
  font-size: .9rem;
  font-weight: 900;
}

.trustindex-cert-copy small {
  color: #64748b;
  font-size: .74rem;
  font-weight: 800;
}

.price-chatbot {
  position: fixed;
  left: 18px;
  bottom: 100px;
  z-index: 2550;
  display: grid;
  justify-items: start;
  font-family: var(--body-font);
}

.price-chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 7px 18px 7px 9px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.26), transparent 32%),
    linear-gradient(135deg, #102a47 0%, #1e4e79 58%, #2e7995 100%);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  box-shadow: 0 20px 46px rgba(16, 42, 71, .26), inset 0 1px 0 rgba(255,255,255,.22);
  cursor: pointer;
  font-weight: 900;
}

.price-chatbot-toggle-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #102a47;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(16,42,71,.18);
}

.price-chatbot-toggle > span:last-child {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.price-chatbot-toggle strong {
  font-family: var(--heading-font);
  font-size: 1rem;
}

.price-chatbot-toggle small {
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 850;
}

.price-chatbot-panel {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: min(420px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 190px));
  display: grid;
  grid-template-rows: auto auto minmax(150px, 1fr) auto auto;
  overflow: hidden;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(16,42,71,.12);
  border-radius: 28px;
  box-shadow: 0 34px 96px rgba(16,42,71,.28);
  backdrop-filter: blur(16px);
}

.price-chatbot-panel[hidden] {
  display: none;
}

.price-chatbot-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.22), transparent 32%),
    linear-gradient(135deg, #102a47 0%, #1e4e79 64%, #2e7995 100%);
}

.price-chatbot-head div {
  display: grid;
  gap: 3px;
}

.price-chatbot-head strong {
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.price-chatbot-head span {
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 750;
}

.price-chatbot-close {
  margin-left: auto;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  cursor: pointer;
}

.price-chatbot-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #102a47;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(16,42,71,.18);
}

.price-chatbot-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #496277;
  background: linear-gradient(180deg, #f8fbfd, #fff);
  border-bottom: 1px solid rgba(16,42,71,.07);
  font-size: .78rem;
  font-weight: 850;
}

.price-chatbot-status span {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(37,211,102,.12);
}

.price-chatbot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: auto;
  background:
    radial-gradient(circle at 18% 0%, rgba(143,191,205,.18), transparent 28%),
    linear-gradient(180deg, #f8fbfd, #fff);
}

.price-chatbot-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  color: #203a55;
  background: #fff;
  border: 1px solid rgba(16,42,71,.08);
  box-shadow: 0 8px 20px rgba(16,42,71,.055);
  font-size: .92rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
  word-break: normal;
}

.price-chatbot-message p,
.price-chatbot-message ul,
.price-chatbot-message ol {
  margin: .42rem 0 0;
}

.price-chatbot-message p:first-child,
.price-chatbot-message ul:first-child,
.price-chatbot-message ol:first-child {
  margin-top: 0;
}

.price-chatbot-message ul,
.price-chatbot-message ol {
  padding-left: 1.05rem;
}

.price-chatbot-message li {
  margin: .22rem 0;
  padding-left: .05rem;
}

.price-chatbot-message br + br {
  display: block;
  content: "";
  margin-top: .35rem;
}

.price-chatbot-name {
  display: block;
  margin-bottom: 3px;
  color: #1e4e79;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.price-chatbot-message.bot {
  border-top-left-radius: 7px;
}

.price-chatbot-message.user {
  justify-self: end;
  color: #fff;
  background: #1e4e79;
  border-color: rgba(30,78,121,.35);
  border-top-right-radius: 7px;
}

.price-chatbot-message.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.price-chatbot-message.typing .price-chatbot-name {
  margin-right: 3px;
}

.price-chatbot-message.typing > span:not(.price-chatbot-name) {
  width: 7px;
  height: 7px;
  background: #8fbfcd;
  border-radius: 999px;
  animation: priceChatTyping 1s ease-in-out infinite;
}

.price-chatbot-message.typing > span:nth-child(3) {
  animation-delay: .12s;
}

.price-chatbot-message.typing > span:nth-child(4) {
  animation-delay: .24s;
}

@keyframes priceChatTyping {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(-3px); opacity: 1; }
}

.price-chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.price-chatbot-actions a,
.price-chatbot-actions button,
.price-chatbot-quick button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  color: #102a47;
  background: #fff;
  border: 1px solid rgba(16,42,71,.11);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16,42,71,.045);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 850;
  text-decoration: none;
}

.price-chatbot-actions a.primary,
.price-chatbot-actions button.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff6a1a, #e5530d);
  border-color: rgba(255,106,26,.28);
}

.price-chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
  background: #fff;
}

.price-chatbot-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid rgba(16,42,71,.08);
}

.price-chatbot-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16,42,71,.14);
  border-radius: 15px;
  color: #102a47;
  font-weight: 750;
}

.price-chatbot-form button {
  display: grid;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #1e4e79;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
}

body.nav-open .price-chatbot {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .ti-widget,
  .ti-widget *,
  .ti-sticky-button,
  .trustindex-cert-fallback {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .price-chatbot {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(76px + env(safe-area-inset-bottom));
    justify-items: stretch;
  }

  .price-chatbot-toggle {
    justify-self: start;
    min-height: 52px;
    padding: 6px 14px 6px 8px;
    max-width: calc(100vw - 20px);
  }

  .price-chatbot-toggle-icon {
    width: 38px;
    height: 38px;
  }

  .price-chatbot-toggle strong {
    font-size: .94rem;
  }

  .price-chatbot-toggle small {
    font-size: .68rem;
  }

  .price-chatbot-panel {
    position: fixed;
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    top: calc(86px + env(safe-area-inset-top));
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 96px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    grid-template-rows: auto auto minmax(120px, 1fr) auto auto;
    border-radius: 22px 22px 18px 18px;
  }

  .price-chatbot-head {
    padding: 12px;
  }

  .price-chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }

  .price-chatbot-status {
    padding: 8px 12px;
    font-size: .72rem;
  }

  .price-chatbot-messages {
    gap: 8px;
    padding: 12px;
  }

  .price-chatbot-message {
    max-width: 94%;
    padding: 10px 12px;
    font-size: .88rem;
    line-height: 1.38;
  }

  .price-chatbot-message ul,
  .price-chatbot-message ol {
    padding-left: .95rem;
  }

  .price-chatbot-message li {
    margin: .18rem 0;
  }

  .price-chatbot-actions,
  .price-chatbot-quick {
    gap: 6px;
  }

  .price-chatbot-actions a,
  .price-chatbot-actions button,
  .price-chatbot-quick button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: .78rem;
  }

  .price-chatbot-quick {
    max-height: 86px;
    overflow: auto;
    padding: 0 12px 10px;
  }

  .price-chatbot-form {
    grid-template-columns: 1fr 42px;
    padding: 10px 12px 12px;
  }

  .price-chatbot-form input,
  .price-chatbot-form button {
    height: 42px;
  }

  .trustindex-cert-fallback {
    left: 10px;
    bottom: 10px;
    padding: 8px 10px 8px 8px;
  }
}
