:root {
  --bg: #161616;
  --bg-soft: #1d1d1d;
  --surface: rgba(28, 28, 28, 0.88);
  --surface-strong: rgba(35, 35, 35, 0.96);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #d0d0d0;
  --muted-strong: #a8a8a8;
  --accent: #f05a28;
  --accent-soft: rgba(240, 90, 40, 0.18);
  --success: #68c27a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-xs: 12px;
  --container: 1240px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(240, 90, 40, 0.11), transparent 30%),
    linear-gradient(160deg, #121212 0%, #181818 42%, #111111 100%);
  line-height: 1.55;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.55), transparent 85%);
  opacity: 0.35;
  z-index: 0;
}

body.menu-open,
body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 92px 0;
  position: relative;
  z-index: 1;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.surface {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(14px);
}

.interactive-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 90, 40, 0.32), transparent 32%);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: scale(1.04);
  z-index: -1;
  pointer-events: none;
}

.interactive-glow:hover::before,
.interactive-glow:focus-visible::before {
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f3b39f;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.hero-copy h1,
.hero-panel h2,
.thanks-shell h1,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading h2,
.section-copy h2,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-text,
.section-copy p,
.hero-text,
.hero-panel p,
.form-card p,
.lead-modal-dialog p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-accent {
  background: linear-gradient(135deg, #ff6c3a, var(--accent));
  color: #fff;
}

.button-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(12, 12, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-accent {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 600;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(104, 194, 122, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(104, 194, 122, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(104, 194, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(104, 194, 122, 0); }
}

.header-phone-wrap {
  display: grid;
  gap: 4px;
  text-align: right;
  font-size: 14px;
}

.desktop-phone {
  font-weight: 700;
  white-space: nowrap;
}

.mobile-phone {
  display: none;
  font-weight: 700;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-panel,
.menu-overlay {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.72) 42%, rgba(8,8,8,0.18) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero-home {
  padding: 94px 0 40px;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-layout,
.hero-inner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: end;
}

.hero-copy {
  padding: 32px 0 24px;
  max-width: 760px;
}

.hero-copy-wide {
  max-width: 840px;
}

.hero-copy h1,
.thanks-shell h1 {
  font-size: clamp(44px, 8vw, 84px);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lead {
  margin: 20px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  color: #f3f3f3;
  max-width: 680px;
}

.hero-text {
  margin-top: 20px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel,
.hero-tags,
.thanks-shell {
  padding: 28px;
  align-self: stretch;
}

.hero-panel h2 {
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 16px;
}

.hero-facts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  padding-bottom: 34px;
}

.fact-card {
  padding: 22px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
}

.fact-card strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.fact-card span {
  color: var(--muted);
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.services-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 40, 0.28);
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(0,0,0,0.75) 100%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-body {
  display: grid;
  gap: 18px;
  padding: 22px;
  flex: 1;
}

.service-card h3,
.trust-card h3,
.detail-card h3,
.detail-feature h3,
.contact-info-card strong,
.footer-copy h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.service-card p,
.trust-card p,
.detail-card p,
.detail-feature p,
.contact-info-card a,
.policy-layout p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-badges,
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-badges span,
.tag-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #fff;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
}

.service-link::after {
  content: '→';
  color: var(--accent);
  transition: transform var(--transition);
}

.service-card:hover .service-link::after {
  transform: translateX(4px);
}

.about-layout,
.service-details-layout,
.contact-grid-page,
.footer-top {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.about-visual {
  padding: 16px;
}

.about-visual img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  filter: saturate(0.95) contrast(1.06);
}

.about-visual-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px 18px 6px;
  color: #fff;
}

.about-visual-note span {
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
  text-align: right;
}

.highlight-list,
.advantage-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.highlight-list li,
.advantage-list li {
  position: relative;
  padding-left: 26px;
  color: #f3f3f3;
}

.highlight-list li::before,
.advantage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a4e, var(--accent));
  box-shadow: 0 0 18px rgba(240, 90, 40, 0.44);
}

.advantage-list strong,
.advantage-list span {
  display: block;
}

.advantage-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card,
.detail-card,
.detail-feature,
.contact-info-card,
.gallery-video {
  padding: 28px;
  min-height: 100%;
}

.trust-card-index {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(240, 90, 40, 0.14);
  border: 1px solid rgba(240, 90, 40, 0.3);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.gallery-card {
  position: relative;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  min-height: 100%;
}

.review-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card span,
.gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.66);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  color: #fff;
}

.form-card {
  padding: 34px;
  display: grid;
  gap: 26px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field-wide,
.field-message {
  grid-column: 1 / -1;
}

.field span {
  font-size: 13px;
  color: #f3c4b4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  color: #111;
  padding: 16px 18px;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(240, 90, 40, 0.7);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

.field-honeypot {
  position: absolute;
  left: -100vw;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-line a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(240, 90, 40, 0.55);
}

.lead-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-meta,
.form-status {
  font-size: 14px;
}

.form-meta {
  color: var(--muted);
  margin: 0;
  max-width: 460px;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
}

.form-status.is-success {
  color: #8adb9a;
}

.form-status.is-error {
  color: #ffb2a0;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-size: 14px;
}

.breadcrumbs a {
  color: #fff;
}

.hero-inner {
  padding: 104px 0 72px;
  min-height: 540px;
  display: flex;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-tags {
  padding: 24px;
  align-self: end;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.details-grid-single {
  grid-template-columns: 1fr;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  aspect-ratio: 4 / 3;
}

.gallery-video {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.gallery-video video {
  width: 100%;
  border-radius: calc(var(--radius) - 12px);
  background: #000;
}

.contact-grid-page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-info-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
}

.contact-info-card span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f3c4b4;
  font-size: 12px;
}

.contact-info-card a,
.footer-mobile-link {
  margin-top: auto;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(240, 90, 40, 0.55);
}

.site-footer {
  padding: 0 0 24px;
  position: relative;
  z-index: 1;
}

.footer-top {
  padding: 24px;
  display: grid;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-copy {
  display: grid;
  gap: 18px;
}

.footer-copy h2 {
  font-size: clamp(30px, 5vw, 52px);
}

.footer-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.footer-contact-list div {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 8px;
}

.footer-contact-list span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f3c4b4;
}

.footer-contact-list strong {
  font-size: 18px;
  line-height: 1.25;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.map-shell {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-strong);
  font-size: 14px;
  padding-bottom: 28px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(240, 90, 40, 0.55);
}

.cookie-banner,
.promo-toast,
.max-widget {
  position: fixed;
  z-index: 35;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.cookie-banner {
  right: 24px;
  bottom: 24px;
  width: min(430px, calc(100% - 32px));
  padding: 18px;
  display: none;
  gap: 16px;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-toast {
  right: 24px;
  bottom: 168px;
  width: min(360px, calc(100% - 32px));
  padding: 18px;
  display: none;
  gap: 10px;
}

.promo-toast.is-visible {
  display: grid;
}

.promo-toast-label {
  color: #f3c4b4;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-toast-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.promo-toast p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.promo-toast-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.max-widget {
  left: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 32px));
  padding: 14px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 12px;
}

.max-widget-video {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.max-widget-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.max-widget-copy span {
  display: block;
  color: #f3c4b4;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.max-widget a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6c3a, var(--accent));
  color: #fff;
  font-weight: 700;
}

.mobile-actions-bar {
  display: none;
}

.mobile-actions-bar > a:first-child:nth-last-child(3) {
  order: 2;
  background: linear-gradient(135deg, #67da8e 0%, #2bb85d 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mobile-actions-bar > a:first-child:nth-last-child(3) + a {
  order: 1;
  background: linear-gradient(45deg, #3593fc 0%, #275af2 25%, #4f34e2 50%, #7933dd 75%, #9c44dc 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mobile-actions-bar > a:first-child:nth-last-child(3) + a + a {
  display: none;
}

.lead-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lead-modal.is-open,
.lightbox.is-open {
  display: flex;
}

.lead-modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.lead-modal-dialog,
.lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.lead-modal-dialog {
  padding: 28px;
}

.lead-modal-close,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.lightbox-inner {
  max-width: 1120px;
}

.lightbox-figure {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(14,14,14,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.lightbox-figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: calc(var(--radius) - 14px);
  background: #000;
}

.lightbox-figure figcaption {
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(14,14,14,0.86);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 2;
}

.lightbox-arrow-prev { left: -12px; }
.lightbox-arrow-next { right: -12px; }

.thanks-shell {
  width: min(920px, 100%);
  margin: 120px auto;
  padding: 42px;
}

.hero-thanks {
  min-height: 80vh;
  display: grid;
  align-items: center;
  padding: 48px 0;
}

.policy-layout {
  padding: 32px;
  display: grid;
  gap: 24px;
}

.policy-layout h2 {
  font-size: 26px;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel,
  .menu-overlay { display: block; }
  .mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    padding: 104px 24px 24px;
    background: rgba(13, 13, 13, 0.96);
    border-left: 1px solid rgba(255,255,255,0.08);
    transform: translateX(102%);
    transition: transform var(--transition);
    z-index: 42;
  }
  .menu-open .mobile-panel { transform: translateX(0); }
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 41;
  }
  .menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav,
  .mobile-panel-actions {
    display: grid;
    gap: 14px;
  }
  .mobile-nav {
    margin-bottom: 24px;
  }
  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 18px;
  }
  .services-grid,
  .services-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-layout,
  .hero-inner-layout,
  .service-details-layout,
  .about-layout,
  .footer-top { grid-template-columns: 1fr; }
  .hero-tags { align-self: start; }
  .contact-grid-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .details-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid,
  .reviews-grid,
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 84px;
  }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .header-shell { min-height: 76px; }
  .header-cta,
  .online-pill,
  .desktop-phone { display: none; }
  .mobile-phone { display: inline-flex; }
  .hero-home { min-height: auto; padding-top: 76px; }
  .hero-copy h1,
  .thanks-shell h1 { font-size: clamp(38px, 12vw, 62px); }
  .hero-facts-row,
  .services-grid,
  .services-grid-compact,
  .gallery-grid,
  .reviews-grid,
  .trust-grid,
  .contact-grid-page,
  .details-grid,
  .details-grid-two,
  .footer-contact-list { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading,
  .lead-actions,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lead-grid,
  .lead-grid-compact { grid-template-columns: 1fr; }
  .form-card,
  .hero-panel,
  .hero-tags,
  .thanks-shell,
  .lead-modal-dialog,
  .policy-layout { padding: 22px; }
  .about-visual img { min-height: auto; max-height: 560px; }
  .max-widget {
    left: 12px;
    right: 12px;
    bottom: 98px;
    width: auto;
  }
  .promo-toast {
    right: 12px;
    left: 12px;
    bottom: 204px;
    width: auto;
  }
  .cookie-banner {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 98px;
  }
  .mobile-actions-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 39;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
  }
  .mobile-actions-bar a {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(12,12,12,0.94);
    color: #fff;
    font-weight: 700;
  }
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .lightbox-arrow-prev { left: 10px; }
  .lightbox-arrow-next { right: 10px; }
  .lightbox-figure { padding: 14px; }
}

@media (max-width: 640px) {
  .hero-actions,
  .cookie-actions,
  .promo-toast-actions,
  .social-row { width: 100%; }
  .hero-actions .button,
  .cookie-actions .button,
  .promo-toast-actions .button,
  .mobile-panel-actions .button { width: 100%; }
  .max-widget {
    grid-template-columns: 72px 1fr;
  }
  .max-widget a {
    grid-column: 1 / -1;
  }
  .thanks-shell { margin: 86px auto; }
}

/* 2026 premium redesign override */
:root {
  --bg: #1f1f1f;
  --bg-soft: #262626;
  --surface: rgba(229, 229, 229, 0.06);
  --surface-strong: rgba(229, 229, 229, 0.1);
  --line: rgba(229, 229, 229, 0.18);
  --line-strong: rgba(229, 229, 229, 0.28);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --muted-strong: rgba(255, 255, 255, 0.58);
  --accent: #f05a28;
  --accent-soft: rgba(240, 90, 40, 0.12);
  --success: #54c578;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  --radius: 2px;
  --radius-sm: 2px;
  --radius-xs: 2px;
  --container: 1280px;
  --transition: 0.32s ease;
}

html {
  background: var(--bg);
}

body {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #1f1f1f 0%, #222222 100%);
  color: var(--text);
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 82%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 16%, rgba(240, 90, 40, 0.08), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(229, 229, 229, 0.04), transparent 26%);
  z-index: 0;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(240, 90, 40, 0.48);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
}

.section {
  padding: clamp(72px, 7vw, 118px) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(229, 229, 229, 0.04), rgba(229, 229, 229, 0.015));
}

.surface,
.service-card,
.review-card,
.gallery-card,
.contact-info-card,
.detail-card,
.detail-feature,
.fact-card,
.trust-card,
.hero-panel,
.hero-tags,
.thanks-shell,
.policy-layout,
.form-card,
.gallery-video,
.service-inline-lead,
.cookie-banner,
.promo-toast,
.lead-modal-dialog,
.max-widget {
  border-radius: var(--radius);
}

.surface {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(31, 31, 31, 0.98), rgba(31, 31, 31, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.interactive-glow::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(240, 90, 40, 0.22), transparent 36%);
}

.eyebrow {
  gap: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(240, 90, 40, 0.86);
}

.eyebrow::before {
  width: 36px;
  background: currentColor;
}

.section-heading {
  align-items: start;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.hero-copy h1,
.hero-panel h2,
.thanks-shell h1,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2,
.gallery-video-copy h3,
.service-inline-copy h3,
.footer-copy h2,
.service-card h3,
.trust-card h3,
.detail-card h3,
.detail-feature h3 {
  font-family: 'Russo One', 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading h2,
.section-copy h2,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2 {
  font-size: clamp(28px, 3.4vw, 48px);
}

.section-text,
.section-copy p,
.hero-text,
.hero-panel p,
.form-card p,
.lead-modal-dialog p,
.contact-info-card a,
.policy-layout p,
.gallery-video-copy p,
.service-inline-copy p {
  color: var(--muted);
  font-size: 16px;
}

.button,
.mobile-actions-bar a,
.max-widget-cta,
.service-inline-max,
.service-inline-submit,
.cookie-button {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.button:hover,
.button:focus-visible,
.mobile-actions-bar a:hover,
.mobile-actions-bar a:focus-visible,
.max-widget-cta:hover,
.service-inline-max:hover,
.service-inline-submit:hover {
  transform: translateY(-2px);
}

.has-shine::after {
  content: '';
  position: absolute;
  top: -140%;
  left: -50%;
  width: 38%;
  height: 360%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.72) 52%, transparent 100%);
  transform: rotate(24deg);
  animation: buttonShine 5.4s linear infinite;
  animation-delay: var(--shine-delay, 0s);
  pointer-events: none;
}

@keyframes buttonShine {
  0%, 14% {
    left: -55%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  28% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

.button-accent,
.cookie-button-accept {
  background: linear-gradient(135deg, #f6a37f 0%, #f05a28 56%, #ca4318 100%);
  color: #fff;
}

.button-dark,
.cookie-button-essential {
  background: linear-gradient(180deg, rgba(229, 229, 229, 0.14), rgba(229, 229, 229, 0.08));
  border-color: rgba(229, 229, 229, 0.2);
  color: #fff;
}

.button-ghost {
  background: transparent;
  border-color: rgba(229, 229, 229, 0.22);
  color: #fff;
  box-shadow: none;
}

.button-max,
.mobile-action-max {
  background: linear-gradient(45deg, #3593fc 0%, #275af2 25%, #4f34e2 50%, #7933dd 75%, #9c44dc 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-call,
.mobile-action-call {
  background: linear-gradient(135deg, #67da8e 0%, #2bb85d 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(229, 229, 229, 0.08);
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(20px);
}

.header-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Russo One', 'Montserrat', sans-serif;
  font-size: 24px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-accent {
  color: var(--accent);
}

.main-nav {
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a::after {
  bottom: -12px;
  height: 2px;
  background: var(--accent);
}

.header-actions {
  gap: 12px;
}

.online-pill {
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  border-color: rgba(229, 229, 229, 0.12);
  background: rgba(229, 229, 229, 0.05);
  font-size: 13px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
}

.header-phone-wrap {
  gap: 2px;
  text-align: right;
}

.desktop-phone {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.mobile-phone {
  display: none;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 0;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay,
.mobile-panel {
  display: none;
}

.hero {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.68) 44%, rgba(10, 10, 10, 0.18) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero-home {
  padding: clamp(88px, 10vw, 140px) 0 34px;
  min-height: calc(100svh - 92px);
}

.hero-layout,
.hero-inner-layout {
  gap: 24px;
}

.hero-copy {
  padding: 18px 0 8px;
}

.hero-copy h1,
.thanks-shell h1 {
  font-size: clamp(42px, 7.4vw, 88px);
  line-height: 1;
}

.hero-lead {
  margin-top: 16px;
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 500;
}

.hero-text {
  margin-top: 16px;
  max-width: 700px;
}

.hero-actions {
  gap: 12px;
  margin-top: 26px;
}

.hero-panel,
.hero-tags,
.thanks-shell {
  padding: 24px;
  border: 1px solid rgba(229, 229, 229, 0.14);
}

.hero-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 42px);
}

.hero-facts-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fact-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(229, 229, 229, 0.12);
}

.fact-card strong {
  font-family: 'Russo One', 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fact-card span {
  color: var(--muted);
}

.services-grid,
.services-grid-compact {
  gap: 14px;
}

.service-card {
  border: 1px solid rgba(229, 229, 229, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #1f1f1f;
}

.service-card:hover {
  border-color: rgba(240, 90, 40, 0.34);
}

.service-card-media {
  aspect-ratio: 1 / 1;
}

.service-card-media::after {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.88) 100%);
}

.service-card-body {
  gap: 16px;
  padding: 20px;
}

.service-card h3,
.trust-card h3,
.detail-card h3,
.detail-feature h3,
.contact-info-card strong,
.footer-copy h2 {
  font-size: clamp(20px, 2vw, 28px);
}

.service-card p,
.trust-card p,
.detail-card p,
.detail-feature p,
.policy-layout p {
  font-size: 15px;
  color: var(--muted);
}

.service-badges span,
.tag-grid span {
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(229, 229, 229, 0.08);
  border: 1px solid rgba(229, 229, 229, 0.12);
  color: #ffffff;
}

.service-link {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.service-link::after {
  color: var(--accent);
}

.about-layout,
.service-details-layout,
.contact-grid-page,
.footer-top {
  gap: 20px;
}

.about-visual {
  padding: 12px;
}

.about-visual img {
  min-height: 560px;
  border-radius: var(--radius);
}

.about-visual-note {
  margin-top: 14px;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(229, 229, 229, 0.12);
}

.highlight-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 18px;
  color: #ffffff;
}

.highlight-list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  padding: 22px;
  border: 1px solid rgba(229, 229, 229, 0.12);
}

.trust-card-index {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-family: 'Russo One', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background: rgba(240, 90, 40, 0.14);
  color: var(--accent);
}

.reviews-grid,
.gallery-grid {
  gap: 12px;
}

.review-card,
.gallery-card {
  border: 1px solid rgba(229, 229, 229, 0.12);
  background: #151515;
}

.review-card span,
.gallery-card span {
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.82));
  color: #ffffff;
}

.contact-info-card {
  padding: 22px;
  border: 1px solid rgba(229, 229, 229, 0.12);
}

.contact-info-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(240, 90, 40, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-info-card a {
  display: inline-flex;
  margin-top: 12px;
}

.policy-layout {
  padding: 28px;
}

.policy-layout h2 {
  margin-top: 0;
}

.policy-layout h2:not(:first-child) {
  margin-top: 26px;
}

.footer-top {
  padding: 24px;
}

.footer-copy p {
  max-width: 620px;
  color: var(--muted);
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.footer-contact-list span {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 90, 40, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-mobile-link {
  display: none;
}

.social-row {
  gap: 10px;
  margin-top: 22px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(229, 229, 229, 0.14);
  background: rgba(229, 229, 229, 0.06);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.footer-map,
.map-shell {
  min-height: 480px;
}

.map-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 229, 229, 0.12);
  background: rgba(229, 229, 229, 0.05);
}

.map-shell > *,
.map-shell [style] {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
}

.footer-bottom {
  padding: 18px 0 12px;
  border-top: 1px solid rgba(229, 229, 229, 0.08);
  color: var(--muted-strong);
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  margin-bottom: 14px;
}

.field {
  gap: 8px;
}

.field span {
  color: rgba(240, 90, 40, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  border: 1px solid rgba(229, 229, 229, 0.16);
  border-radius: var(--radius);
  background: rgba(229, 229, 229, 0.06);
  color: #ffffff;
  padding: 16px 18px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field textarea {
  min-height: 130px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(240, 90, 40, 0.42);
  background: rgba(229, 229, 229, 0.08);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.checkbox-line input {
  margin-top: 4px;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-meta {
  color: var(--muted-strong);
  font-size: 13px;
}

.form-status {
  margin-top: 6px;
  min-height: 24px;
  font-size: 13px;
  color: var(--muted);
}

.form-status.is-success {
  color: #9ce3ae;
}

.form-status.is-error {
  color: #ffb3a0;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(6px);
}

.lead-modal-dialog {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 30px 24px 24px;
  z-index: 1;
  border: 1px solid rgba(229, 229, 229, 0.16);
}

.lead-modal-dialog .eyebrow,
.lead-modal-dialog h2,
.lead-modal-dialog p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lead-modal-dialog h2 {
  margin-bottom: 12px;
}

.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(229, 229, 229, 0.16);
  border-radius: var(--radius);
  background: rgba(229, 229, 229, 0.08);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.lead-form-modal {
  margin-top: 18px;
}

.lead-form-modal .lead-grid {
  grid-template-columns: 1fr;
}

.lead-form-modal .field-message {
  grid-column: 1 / -1;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(420px, calc(100vw - 32px));
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(229, 229, 229, 0.16);
  background: rgba(31, 31, 31, 0.96);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 24px;
  line-height: 1;
}

.promo-toast {
  position: fixed;
  right: 20px;
  bottom: 138px;
  z-index: 88;
  width: min(380px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(229, 229, 229, 0.16);
  background: rgba(31, 31, 31, 0.98);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.promo-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.promo-toast-label {
  color: rgba(240, 90, 40, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-toast-title {
  margin-top: 10px;
  font-family: 'Russo One', 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.promo-toast p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.promo-toast-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.promo-toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 24px;
}

.mobile-actions-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 24px));
  height: min(90vh, 840px);
  margin: 5vh auto;
  display: grid;
  place-items: center;
}

.lightbox-figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 229, 229, 0.16);
  background: rgba(31, 31, 31, 0.94);
}

.lightbox-figure img {
  width: 100%;
  height: calc(100% - 44px);
  object-fit: contain;
}

.lightbox-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  border-radius: var(--radius);
  background: rgba(31, 31, 31, 0.94);
  border: 1px solid rgba(229, 229, 229, 0.14);
  color: #ffffff;
}

.max-widget {
  position: fixed;
  left: 16px;
  bottom: 24px;
  z-index: 87;
  width: 118px;
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(229, 229, 229, 0.16);
  background: rgba(31, 31, 31, 0.94);
  overflow: hidden;
  transition: width var(--transition), opacity var(--transition), transform var(--transition);
}

.max-widget.is-ready {
  opacity: 1;
}

.max-widget.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.max-widget.is-expanded {
  width: 220px;
}

.max-widget-video {
  position: relative;
}

.max-widget video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0f0f0f;
}

.max-widget-copy {
  display: none;
}

.max-widget-cta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 42px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.max-widget.is-expanded .max-widget-cta {
  opacity: 1;
  pointer-events: auto;
}

.max-widget-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.gallery-video {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(229, 229, 229, 0.12);
}

.gallery-video-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-video-media video {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  background: #0f0f0f;
}

.gallery-video-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 36px);
}

.page-service .service-details-layout {
  grid-template-columns: 1fr;
}

.page-service .section-copy {
  max-width: 980px;
}

.page-service .details-grid,
.page-service .details-grid.details-grid-two,
.page-service .details-grid.details-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.page-service .detail-card,
.page-service .detail-feature {
  position: relative;
  min-height: 230px;
  padding: 28px 28px 28px min(43%, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(229, 229, 229, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.page-service .detail-card::before,
.page-service .detail-feature::before {
  content: '';
  position: absolute;
  inset: 0 56% 0 0;
  background: var(--detail-image) center / cover no-repeat;
  z-index: -2;
}

.page-service .detail-card::after,
.page-service .detail-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.04) 0%, rgba(12, 12, 12, 0.7) 44%, rgba(12, 12, 12, 0.94) 100%);
  z-index: -1;
}

.page-service .detail-feature .advantage-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.page-service .detail-feature .advantage-list li {
  display: grid;
  gap: 4px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(229, 229, 229, 0.08);
}

.page-service .detail-feature .advantage-list strong {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-service .service-inline-lead {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  border: 1px solid rgba(229, 229, 229, 0.12);
}

.service-inline-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.service-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.field-inline input {
  min-height: 58px;
}

.service-inline-note {
  color: var(--muted-strong);
  font-size: 12px;
}

.page-service #contact-form {
  display: none;
}

body.menu-open .promo-toast,
body.menu-open .cookie-banner,
body.menu-open .mobile-actions-bar,
body.menu-open .max-widget,
body.modal-open .promo-toast,
body.modal-open .cookie-banner,
body.modal-open .mobile-actions-bar,
body.modal-open .max-widget,
body.lightbox-open .promo-toast,
body.lightbox-open .cookie-banner,
body.lightbox-open .mobile-actions-bar,
body.lightbox-open .max-widget {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  a[href^="tel:"]:not(.footer-mobile-link):not(.mobile-menu-phone):not(.button-call):not(.mobile-action-call) {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .online-pill {
    display: none;
  }

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

@media (max-width: 991px) {
  .section {
    padding: 72px 0;
  }

  .header-shell {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
  }

  .brand {
    font-size: 19px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .header-phone-wrap {
    text-align: center;
  }

  .desktop-phone {
    font-size: 12px;
  }

  .menu-toggle,
  .menu-overlay,
  .mobile-panel {
    display: flex;
  }

  .menu-overlay {
    position: fixed;
    inset: 70px 0 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 16px calc(110px + env(safe-area-inset-bottom));
    flex-direction: column;
    gap: 18px;
    background: rgba(20, 20, 20, 0.98);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    overflow-y: auto;
    border-top: 1px solid rgba(229, 229, 229, 0.08);
  }

  body.menu-open .mobile-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.1);
    font-family: 'Russo One', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .mobile-panel-contact {
    display: grid;
    gap: 10px;
  }

  .mobile-panel-card {
    padding: 14px;
    border: 1px solid rgba(229, 229, 229, 0.12);
    background: rgba(229, 229, 229, 0.05);
    border-radius: var(--radius);
  }

  .mobile-panel-label {
    margin-bottom: 8px;
    color: rgba(240, 90, 40, 0.86);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-menu-phone,
  .mobile-panel-card a,
  .mobile-panel-card span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-panel-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
  }

  .mobile-panel-actions .button {
    width: 100%;
  }

  .hero-home {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-layout,
  .hero-inner-layout,
  .about-layout,
  .contact-grid-page,
  .footer-top,
  .page-service .service-inline-lead,
  .gallery-video {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-tags {
    order: 2;
  }

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

  .about-visual img {
    min-height: 360px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-map,
  .map-shell {
    min-height: 320px;
  }

  .gallery-video-media {
    justify-content: center;
  }

  .page-service .detail-card,
  .page-service .detail-feature {
    min-height: 0;
    padding: 188px 18px 18px;
  }

  .page-service .detail-card::before,
  .page-service .detail-feature::before {
    inset: 0 0 auto 0;
    height: 170px;
  }

  .page-service .detail-card::after,
  .page-service .detail-feature::after {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.08) 0%, rgba(12, 12, 12, 0.55) 44%, rgba(12, 12, 12, 0.94) 100%);
  }

  .promo-toast {
    right: 16px;
    left: 16px;
    bottom: 198px;
    width: auto;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: calc(90px + env(safe-area-inset-bottom));
    width: auto;
  }

  .mobile-actions-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 86;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-actions-bar a {
    min-height: 58px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .max-widget {
    left: 12px;
    bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(34px, 9vw, 54px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-actions,
  .cookie-actions,
  .promo-toast-actions,
  .social-row {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button,
  .cookie-actions .button,
  .promo-toast-actions .button,
  .cookie-button {
    width: 100%;
  }

  .hero-facts-row,
  .services-grid,
  .services-grid-compact,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
  }

  .footer-mobile-link {
    display: inline-flex;
    margin-top: 10px;
  }

  .gallery-video {
    padding: 18px;
  }

  .gallery-video-media video {
    width: min(100%, 280px);
  }

  .map-shell {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 22px 16px 18px;
  }

  .lightbox-inner {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
  }

  .lightbox-figure {
    padding: 34px 10px 18px;
  }
}

@media (max-width: 540px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .brand {
    font-size: 17px;
    gap: 6px;
  }

  .desktop-phone {
    font-size: 11px;
  }

  .cookie-banner {
    padding: 14px 14px 12px;
  }

  .cookie-banner p {
    font-size: 12px;
  }

  .promo-toast {
    bottom: 188px;
    padding: 16px;
  }

  .mobile-actions-bar a {
    min-height: 54px;
    font-size: 13px;
  }

  .max-widget {
    width: 104px;
  }

  .max-widget.is-expanded {
    width: 180px;
  }
}

/* 2026 v5 premium pass */
:root {
  --bg: #1f1f1f;
  --bg-soft: #2a2a2a;
  --surface: rgba(42, 42, 42, 0.92);
  --surface-strong: rgba(56, 56, 56, 0.98);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #d9d9d9;
  --muted-strong: rgba(217, 217, 217, 0.76);
  --accent: #f05a28;
  --accent-soft: rgba(240, 90, 40, 0.14);
  --radius: 8px;
  --radius-sm: 8px;
  --radius-xs: 8px;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

html,
body {
  background: var(--bg);
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.04), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(240, 90, 40, 0.07), transparent 22%),
    linear-gradient(180deg, #1b1b1b 0%, #1f1f1f 38%, #232323 100%);
}

body::before {
  opacity: 0.12;
  background-size: 96px 96px;
}

body,
h1,
h2,
h3,
p,
a,
span,
strong,
li,
figcaption,
button {
  overflow-wrap: anywhere;
  word-break: normal;
}

.section-heading h2,
.section-copy h2,
.hero-copy h1,
.hero-panel h2,
.thanks-shell h1,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2,
.gallery-video-copy h3,
.service-inline-copy h3,
.footer-copy h2,
.service-card h3,
.trust-card h3,
.detail-card h3,
.detail-feature h3,
.page-content h2,
.page-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.section-text,
.section-copy p,
.hero-text,
.hero-panel p,
.form-card p,
.lead-modal-dialog p,
.contact-info-card a,
.policy-layout p,
.gallery-video-copy p,
.service-inline-copy p,
.page-content p,
.page-content li {
  color: var(--muted);
}

.button,
.mobile-actions-bar a,
.max-widget-cta,
.service-inline-max,
.service-inline-submit,
.cookie-button,
.social-row a,
.online-pill,
.review-card span,
.gallery-card span,
.service-badges span,
.tag-grid span {
  border-radius: var(--radius);
}

.button,
.mobile-actions-bar a,
.max-widget-cta,
.service-inline-max,
.service-inline-submit,
.cookie-button {
  min-height: 58px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.button-accent,
.cookie-button-accept {
  background: linear-gradient(135deg, #f7b18f 0%, #f05a28 52%, #cc481e 100%);
  box-shadow: 0 12px 26px rgba(240, 90, 40, 0.22);
}

.button-dark,
.cookie-button-essential,
.button-secondary-tone {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.14);
}

.button-max,
.mobile-action-max,
.max-widget-cta,
.service-inline-max {
  background: linear-gradient(45deg, #3593fc 0%, #275af2 24%, #4f34e2 52%, #7933dd 78%, #9c44dc 100%);
  box-shadow: 0 12px 28px rgba(74, 62, 228, 0.28);
}

.button-call,
.mobile-action-call {
  background: linear-gradient(135deg, #6bdd8d 0%, #2fb967 100%);
  box-shadow: 0 12px 24px rgba(47, 185, 103, 0.22);
}

.has-shine::after {
  width: 34%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 40%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.18) 60%, transparent 100%);
}

.surface,
.service-card,
.review-card,
.gallery-card,
.contact-info-card,
.detail-card,
.detail-feature,
.fact-card,
.trust-card,
.hero-panel,
.hero-tags,
.thanks-shell,
.policy-layout,
.form-card,
.gallery-video,
.service-inline-lead,
.cookie-banner,
.promo-toast,
.lead-modal-dialog,
.max-widget,
.page-content-shell {
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(32, 32, 32, 0.98), rgba(32, 32, 32, 0.96));
  box-shadow: var(--shadow);
}

.site-header {
  background: rgba(19, 19, 19, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  min-height: 88px;
  gap: 18px;
}

.brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.main-nav {
  gap: clamp(16px, 1.8vw, 28px);
  font-size: 14px;
}

.main-nav a {
  opacity: 0.92;
}

.header-actions {
  gap: 10px;
}

.online-pill {
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.header-phone-wrap {
  padding: 8px 0;
}

.desktop-phone {
  font-size: 15px;
}

.hero {
  background:
    linear-gradient(92deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.76) 36%, rgba(10, 10, 10, 0.36) 74%, rgba(10, 10, 10, 0.18) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero-home {
  min-height: calc(100svh - 88px);
  padding: clamp(84px, 10vw, 138px) 0 28px;
}

.hero-copy {
  max-width: 740px;
}

.hero-copy h1,
.thanks-shell h1 {
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  margin-top: 14px;
  max-width: 640px;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.38;
}

.hero-text,
.hero-panel p {
  max-width: 680px;
}

.hero-panel,
.hero-tags {
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  backdrop-filter: blur(10px);
}

.hero-facts-row {
  gap: 14px;
}

.fact-card,
.trust-card,
.contact-info-card,
.footer-contact-list div {
  position: relative;
  padding-top: 22px;
}

.ui-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  border: 1px solid rgba(240, 90, 40, 0.26);
  background: rgba(240, 90, 40, 0.08);
  border-radius: 8px;
  flex: 0 0 auto;
}

.ui-icon svg {
  width: 22px;
  height: 22px;
}

.fact-card strong {
  font-size: clamp(20px, 2vw, 24px);
}

.service-card {
  min-height: 100%;
}

.service-card-media {
  aspect-ratio: 1.08 / 1;
}

.service-card-body {
  gap: 14px;
}

.service-card p,
.trust-card p,
.detail-card p,
.detail-feature p,
.policy-layout p,
.contact-info-card a,
.footer-copy p,
.footer-contact-list strong,
.about-visual-note span {
  line-height: 1.62;
}

.about-visual {
  padding: 12px;
}

.about-visual img {
  min-height: 560px;
  object-position: center;
  border-radius: 8px;
}

.about-visual-note {
  gap: 12px;
}

.highlight-list li,
.advantage-list li {
  padding-left: 22px;
}

.highlight-list li::before,
.advantage-list li::before {
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7b18f, #f05a28);
}

.trust-grid,
.services-grid,
.services-grid-compact,
.reviews-grid,
.gallery-grid {
  gap: 16px;
}

.contact-info-card {
  gap: 10px;
}

.contact-info-card a,
.social-row a,
.footer-bottom a,
.footer-mobile-link {
  text-decoration: none;
}

.contact-info-card a::before,
.footer-bottom a::before,
.footer-mobile-link::before {
  content: '↗';
  margin-right: 8px;
  color: var(--accent);
}

.footer-contact-list {
  gap: 14px;
}

.footer-contact-list div {
  gap: 6px;
}

.footer-contact-list .ui-icon {
  margin-bottom: 8px;
  width: 40px;
  height: 40px;
}

.social-row a {
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
}

.social-row a .ui-icon {
  width: 32px;
  height: 32px;
  margin: 0;
}

.map-shell {
  min-height: 480px;
}

.cookie-banner {
  gap: 10px;
}

.cookie-banner p {
  font-size: 12px;
  line-height: 1.45;
}

.cookie-actions {
  gap: 8px;
}

.cookie-actions .button {
  flex: 1 1 0;
  min-height: 48px;
}

.promo-toast {
  gap: 10px;
}

.max-widget {
  left: 14px;
  bottom: 22px;
  width: 122px;
  border-radius: 8px;
}

.max-widget.is-expanded {
  width: 222px;
}

.max-widget video {
  aspect-ratio: 9 / 16;
}

.max-widget-cta {
  min-height: 44px;
  font-size: 14px;
}

.max-widget-close {
  border-radius: 6px;
}

.gallery-video {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 24px;
}

.gallery-video-copy h3,
.service-inline-copy h3 {
  margin: 0 0 12px;
}

.page-service .detail-card,
.page-service .detail-feature {
  min-height: 250px;
  padding: 30px 30px 30px min(44%, 370px);
}

.page-service .detail-card .ui-icon,
.page-service .detail-feature .ui-icon {
  position: relative;
  z-index: 1;
}

.page-service .detail-card h3,
.page-service .detail-feature h3,
.page-service .detail-card p,
.page-service .detail-feature p {
  position: relative;
  z-index: 1;
}

.page-service .service-inline-lead {
  gap: 20px;
  align-items: center;
}

.page-content-shell {
  padding: clamp(24px, 3vw, 42px);
}

.page-content {
  max-width: 920px;
}

.page-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.page-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.page-content p,
.page-content ul,
.page-content ol,
.page-content blockquote {
  margin: 0 0 16px;
}

.page-content ul,
.page-content ol {
  padding-left: 20px;
}

.page-content blockquote {
  padding: 18px 20px;
  border-left: 3px solid rgba(240, 90, 40, 0.56);
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 992px) {
  .contact-info-card a[href^='tel:'],
  .footer-contact-list a[href^='tel:']:not(.footer-mobile-link) {
    pointer-events: none;
    cursor: default;
    color: inherit;
  }
}

@media (max-width: 1180px) {
  .online-pill {
    display: none;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  body {
    padding-bottom: 88px;
  }

  .header-shell {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .brand {
    font-size: 18px;
  }

  .desktop-phone {
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-panel {
    top: 72px;
    padding: 18px 14px calc(122px + env(safe-area-inset-bottom));
    gap: 14px;
    background: rgba(23, 23, 23, 0.99);
  }

  .menu-overlay {
    inset: 72px 0 0;
  }

  .mobile-nav {
    gap: 0;
  }

  .mobile-nav a {
    padding: 16px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .mobile-panel-contact {
    gap: 8px;
  }

  .mobile-panel-card {
    padding: 14px;
    border-radius: 8px;
  }

  .mobile-panel-card a,
  .mobile-panel-card span,
  .mobile-menu-phone {
    font-size: 15px;
    line-height: 1.45;
  }

  .mobile-panel-actions {
    gap: 8px;
    margin-top: 4px;
  }

  .mobile-panel-actions .button {
    min-height: 54px;
  }

  .hero-home {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(34px, 9vw, 54px);
  }

  .hero-lead {
    font-size: 19px;
  }

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

  .gallery-video,
  .page-service .service-inline-lead,
  .hero-layout,
  .hero-inner-layout,
  .about-layout,
  .contact-grid-page,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .page-service .detail-card,
  .page-service .detail-feature {
    min-height: 0;
    padding: 194px 18px 18px;
  }

  .page-service .detail-card::before,
  .page-service .detail-feature::before {
    inset: 0 0 auto 0;
    height: 176px;
  }

  .page-service .detail-card::after,
  .page-service .detail-feature::after {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.1) 0%, rgba(12, 12, 12, 0.58) 42%, rgba(12, 12, 12, 0.95) 100%);
  }

  .promo-toast {
    right: 12px;
    left: 12px;
    bottom: 178px;
    width: auto;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: auto;
  }

  .max-widget {
    left: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .mobile-actions-bar {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 86;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    background: transparent;
    backdrop-filter: none;
  }

  .mobile-actions-bar a {
    min-height: 56px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-copy,
  .hero-copy-wide,
  .hero-text,
  .hero-lead,
  .section-text,
  .section-copy p,
  .gallery-video-copy p,
  .service-inline-copy p {
    max-width: 100%;
  }

  .hero-actions,
  .cookie-actions,
  .promo-toast-actions,
  .social-row,
  .lead-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cookie-actions .button,
  .promo-toast-actions .button,
  .mobile-panel-actions .button,
  .lead-actions .button,
  .lead-actions p {
    width: 100%;
  }

  .hero-facts-row,
  .services-grid,
  .services-grid-compact,
  .reviews-grid,
  .gallery-grid,
  .trust-grid,
  .contact-grid-page,
  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .about-visual img {
    min-height: 340px;
  }

  .gallery-video {
    padding: 18px;
  }

  .gallery-video-media video {
    width: min(100%, 290px);
  }

  .map-shell {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 24px 14px 16px;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 14px 14px;
  }
}

@media (max-width: 540px) {
  .brand {
    font-size: 16px;
  }

  .desktop-phone {
    max-width: 132px;
    text-align: right;
    line-height: 1.2;
  }

  .menu-toggle {
    width: 28px;
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(30px, 9.6vw, 42px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .fact-card,
  .trust-card,
  .contact-info-card,
  .detail-card,
  .detail-feature,
  .hero-panel,
  .hero-tags,
  .form-card,
  .policy-layout,
  .page-content-shell,
  .gallery-video,
  .service-inline-lead {
    padding: 18px;
  }

  .max-widget {
    width: 108px;
  }

  .max-widget.is-expanded {
    width: 186px;
  }

  .max-widget-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 40px;
    font-size: 13px;
  }

  .cookie-banner p,
  .promo-toast p,
  .mobile-actions-bar a {
    font-size: 12px;
  }
}

/* 2026 v6 elegance pass */
:root {
  --bg: #1F1F1F;
  --bg-soft: #2A2A2A;
  --accent: #F05A28;
  --text: #FFFFFF;
  --muted: #D9D9D9;
  --muted-strong: rgba(217, 217, 217, 0.72);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --surface: rgba(42, 42, 42, 0.94);
  --surface-strong: rgba(50, 50, 50, 0.98);
  --radius: 8px;
  --radius-sm: 8px;
  --radius-xs: 8px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.035), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(240, 90, 40, 0.06), transparent 22%),
    linear-gradient(180deg, #1b1b1b 0%, #1f1f1f 40%, #242424 100%);
}

.section-heading h2,
.section-copy h2,
.hero-copy h1,
.hero-panel h2,
.thanks-shell h1,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2,
.gallery-video-copy h3,
.service-inline-copy h3,
.footer-copy h2,
.service-card h3,
.trust-card h3,
.detail-card h3,
.detail-feature h3,
.about-company-panel h3,
.page-content h2,
.page-content h3,
.contact-info-card strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-home {
  display: block;
  min-height: calc(100svh - 88px);
  padding: clamp(58px, 8vw, 96px) 0 30px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.74) 34%, rgba(11, 11, 11, 0.34) 72%, rgba(11, 11, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.06)),
    var(--hero-image) center / cover no-repeat;
}

.hero-layout-single {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.hero-copy {
  max-width: 760px;
  padding: 8px 0 0;
}

.hero-copy h1,
.thanks-shell h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 600;
  max-width: 760px;
}

.hero-lead {
  margin-top: 14px;
  font-size: clamp(16px, 1.75vw, 22px);
  line-height: 1.45;
  max-width: 520px;
}

.hero-text {
  margin-top: 18px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  gap: 10px;
}

.hero-actions .button {
  min-height: 54px;
  padding: 0 22px;
}

.hero-facts-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fact-card,
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.fact-card {
  min-height: 156px;
  padding: 22px 18px;
}

.fact-card .ui-icon,
.trust-card .ui-icon {
  margin: 0 0 14px;
}

.fact-card strong {
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.2;
}

.fact-card span,
.trust-card p {
  max-width: 100%;
}

.about-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.about-side {
  display: grid;
  gap: 18px;
}

.about-company-panel {
  padding: 24px;
}

.about-company-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.08;
}

.about-company-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-company-panel .highlight-list {
  margin-top: 20px;
}

.about-visual {
  padding: 10px;
}

.about-visual img {
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.main-nav {
  font-size: 14px;
}

.online-pill,
.header-cta {
  min-height: 48px;
}

.max-widget {
  left: 14px;
  bottom: 38px;
  width: 108px;
}

.max-widget.is-expanded {
  width: 188px;
}

.max-widget video {
  aspect-ratio: 9 / 16;
}

.ui-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.footer-top {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 18px;
  align-items: stretch;
}

.footer-copy {
  align-content: start;
}

.footer-contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-info-card,
.footer-contact-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    'icon label'
    'icon value'
    'icon action';
  align-items: start;
  gap: 4px 14px;
  min-height: 0;
  padding: 18px;
}

.contact-info-card .ui-icon,
.footer-contact-list div .ui-icon {
  grid-area: icon;
  margin: 2px 0 0;
  width: 40px;
  height: 40px;
  align-self: start;
}

.contact-info-card > span,
.footer-contact-list div > span {
  grid-area: label;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.contact-info-card > strong,
.footer-contact-list div > strong {
  grid-area: value;
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
}

.contact-info-card > a,
.footer-contact-list div > a {
  grid-area: action;
  margin-top: 2px;
}

.social-row {
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  min-height: 46px;
  padding: 0 14px;
  gap: 10px;
  justify-content: flex-start;
}

.social-row a .ui-icon {
  width: 28px;
  height: 28px;
  margin: 0;
  border: 0;
  background: transparent;
}

.social-row a .ui-icon svg {
  width: 20px;
  height: 20px;
}

.footer-map {
  display: flex;
}

.map-shell {
  flex: 1 1 auto;
  min-height: 100%;
  height: auto;
  overflow: hidden;
}

.map-shell > *,
.map-shell [style] {
  height: 100% !important;
}

@media (max-width: 1180px) {
  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(32px, 4.6vw, 54px);
  }

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

@media (max-width: 991px) {
  .hero-home {
    padding-top: 74px;
  }

  .about-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(30px, 7.8vw, 46px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .max-widget {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 767px) {
  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-facts-row,
  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .footer-contact-list div {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 4px 12px;
  }

  .social-row {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }

  .social-row a {
    width: auto;
    flex: 1 1 calc(50% - 10px);
  }

  .map-shell {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .hero-text,
  .about-company-panel p,
  .section-copy p,
  .contact-info-card > strong,
  .footer-contact-list div > strong {
    font-size: 15px;
  }

  .fact-card {
    min-height: 140px;
  }

  .social-row a {
    flex: 1 1 100%;
  }
}

/* 2026 v7 premium refinement */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.028), transparent 24%),
    radial-gradient(circle at 100% 14%, rgba(240, 90, 40, 0.055), transparent 22%),
    linear-gradient(180deg, #191919 0%, #1f1f1f 46%, #242424 100%);
}

body::before {
  background-size: 96px 96px;
  opacity: 0.16;
}

.section {
  padding: clamp(78px, 8vw, 100px) 0;
}

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

.section-heading h2,
.section-copy h2,
.hero-copy h1,
.hero-panel h2,
.thanks-shell h1,
.policy-layout h2,
.form-card h2,
.lead-modal-dialog h2,
.gallery-video-copy h3,
.service-inline-copy h3,
.footer-copy h2,
.service-card h3,
.trust-card h3,
.detail-card h3,
.detail-feature h3,
.about-company-panel h3,
.page-content h2,
.page-content h3,
.contact-info-card strong {
  font-weight: 600;
  letter-spacing: -0.03em;
}

.button,
.mobile-actions-bar a,
.max-widget-cta,
.service-inline-max,
.service-inline-submit,
.cookie-button,
.social-row a,
.online-pill,
.header-cta,
.menu-toggle,
.mobile-panel-card,
.contact-info-card,
.footer-contact-list div,
.max-widget,
.lead-modal-dialog,
.cookie-banner,
.promo-toast {
  border-radius: 8px;
}

.button,
.mobile-actions-bar a,
.max-widget-cta,
.service-inline-max,
.service-inline-submit,
.cookie-button {
  min-height: 54px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
}

.site-header {
  background: rgba(17, 17, 17, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-shell {
  min-height: 80px;
  gap: 16px;
}

.brand {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.main-nav {
  gap: clamp(14px, 1.65vw, 24px);
  font-size: 13px;
}

.main-nav a {
  font-weight: 600;
  opacity: 0.84;
}

.header-actions {
  gap: 8px;
}

.online-pill {
  min-height: 42px;
  padding: 0 13px;
  font-size: 12px;
}

.desktop-phone {
  font-size: 14px;
  font-weight: 600;
}

.hero-home {
  min-height: calc(100svh - 80px);
  padding: clamp(70px, 8.5vw, 112px) 0 24px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.78) 32%, rgba(11, 11, 11, 0.42) 70%, rgba(11, 11, 11, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.12)),
    var(--hero-image) center / cover no-repeat;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1,
.thanks-shell h1 {
  max-width: 680px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.01;
}

.hero-lead {
  margin-top: 12px;
  max-width: 520px;
  font-size: clamp(17px, 1.9vw, 24px);
  line-height: 1.46;
}

.hero-text {
  margin-top: 16px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  margin-top: 24px;
  gap: 10px;
}

.hero-facts-row {
  margin-top: 22px;
  gap: 12px;
}

.fact-card {
  min-height: 148px;
  padding: 20px 16px;
}

.fact-card strong {
  font-size: clamp(18px, 1.55vw, 22px);
}

.fact-card span,
.trust-card p {
  font-size: 15px;
  line-height: 1.55;
}

.about-layout {
  gap: 24px;
}

.about-company-panel {
  padding: 28px;
}

.about-company-panel h3 {
  font-size: clamp(24px, 2.5vw, 38px);
}

.about-company-panel p {
  font-size: 16px;
  line-height: 1.75;
}

.about-visual img {
  min-height: 460px;
}

.contact-info-card,
.footer-contact-list div {
  align-items: center;
  gap: 3px 14px;
}

.contact-info-card .ui-icon,
.footer-contact-list div .ui-icon {
  align-self: center;
  margin: 0;
}

.contact-info-card > span,
.footer-contact-list div > span {
  align-self: end;
}

.contact-info-card > strong,
.footer-contact-list div > strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-card > a,
.footer-contact-list div > a,
.social-row a {
  overflow-wrap: anywhere;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.social-row a {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
}

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

.max-widget {
  left: 18px;
  bottom: 34px;
  width: 106px;
}

.max-widget.is-expanded {
  width: 190px;
}

.max-widget-cta {
  min-height: 40px;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(36px, 4.8vw, 58px);
  }
}

@media (max-width: 991px) {
  .header-shell {
    min-height: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .mobile-panel {
    top: 72px;
    right: 0;
    left: 0;
    width: auto;
    max-width: none;
    padding: 16px 14px calc(124px + env(safe-area-inset-bottom));
    background: rgba(22, 22, 22, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
  }

  body.menu-open .mobile-panel {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-panel-card a,
  .mobile-panel-card span,
  .mobile-menu-phone {
    font-size: 14px;
  }

  .hero-home {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(32px, 7.6vw, 46px);
  }

  .hero-lead {
    font-size: 18px;
  }

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

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }

  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .hero-text,
  .about-company-panel p,
  .section-copy p {
    font-size: 15px;
  }

  .contact-info-card,
  .footer-contact-list div {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
  }

  .contact-info-card .ui-icon,
  .footer-contact-list div .ui-icon {
    align-self: start;
    margin-top: 2px;
  }

  .map-shell {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-actions,
  .social-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .max-widget {
    width: 92px;
  }

  .max-widget.is-expanded {
    width: 168px;
  }
}

/* 2026 v8 about + hero alignment */
.hero-home {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.9) 0%, rgba(9, 9, 9, 0.78) 30%, rgba(9, 9, 9, 0.5) 62%, rgba(9, 9, 9, 0.3) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

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

.hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.12)),
    var(--hero-image) center center / cover no-repeat;
}

.hero-copy {
  padding-top: 10px;
}

.hero-copy h1,
.thanks-shell h1 {
  max-width: 720px;
  font-size: clamp(40px, 5.3vw, 72px);
}

.hero-lead {
  max-width: 560px;
}

#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0%, transparent 38%);
  pointer-events: none;
  opacity: 0.7;
}

#about .container {
  position: relative;
  z-index: 1;
}

.about-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.about-copy {
  padding-top: 18px;
  max-width: 700px;
}

.about-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 4.9vw, 66px);
  line-height: 0.98;
  text-wrap: balance;
}

.about-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.72;
}

.about-copy .highlight-list {
  margin-top: 30px;
  max-width: 520px;
}

.about-copy .highlight-list li,
.about-company-panel .highlight-list li {
  font-size: 15px;
  line-height: 1.7;
  padding-left: 24px;
}

.about-side {
  gap: 16px;
}

.about-company-panel {
  padding: 34px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(46, 46, 46, 0.96), rgba(38, 38, 38, 0.98));
}

.about-company-panel .eyebrow {
  margin-bottom: 16px;
}

.about-company-panel h3 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1.02;
}

.about-company-panel p {
  max-width: 740px;
  font-size: 16px;
  line-height: 1.72;
}

.about-company-panel .highlight-list {
  margin-top: 26px;
}

.about-visual-photo {
  padding: 0;
  min-height: 620px;
}

.about-visual-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.about-visual-note {
  display: none;
}

@media (max-width: 1180px) {
  .about-copy h2 {
    font-size: clamp(38px, 4.6vw, 58px);
  }

  .about-company-panel h3 {
    font-size: clamp(30px, 3.2vw, 48px);
  }
}

@media (max-width: 991px) {
  .hero-copy h1,
  .thanks-shell h1 {
    font-size: clamp(34px, 7.8vw, 50px);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-copy {
    padding-top: 0;
    max-width: none;
  }

  .about-copy h2,
  .about-company-panel h3 {
    max-width: none;
  }

  .about-visual-photo,
  .about-visual-photo img {
    min-height: 480px;
  }
}

@media (max-width: 767px) {
  .hero-home::before {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.78) 0%, rgba(9, 9, 9, 0.52) 42%, rgba(9, 9, 9, 0.46) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.24));
  }

  .about-copy h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .about-company-panel {
    padding: 24px 20px;
  }

  .about-company-panel h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .about-visual-photo,
  .about-visual-photo img {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

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

  .mobile-actions-bar a,
  .max-widget,
  .max-widget.is-expanded,
  .lead-modal-dialog,
  .lightbox-inner,
  .lightbox-figure,
  .cookie-banner,
  .promo-toast,
  .mobile-panel {
    max-width: 100vw;
  }

  .mobile-actions-bar a,
  .mobile-panel-actions .button,
  .mobile-nav a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.kr-footer-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.kr-footer-contact-list > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 4px 12px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.kr-footer-contact-list > div .ui-icon,
.kr-social-row a .ui-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(240, 90, 40, 0.1);
  color: #f05a28;
}

.kr-footer-contact-list > div .ui-icon svg,
.kr-social-row a .ui-icon svg {
  width: 20px;
  height: 20px;
}

.kr-footer-contact-list > div > span:not(.ui-icon) {
  align-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.kr-footer-contact-list > div > strong,
.kr-footer-contact-list > div > strong > a {
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

.kr-footer-contact-phone > strong,
.kr-footer-contact-inn > strong {
  white-space: nowrap;
}

.kr-footer-contact-email > strong,
.kr-footer-contact-email > strong > a,
.kr-footer-contact-address > strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.kr-social-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.kr-social-row a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  text-align: left;
}

.kr-social-row a span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .kr-footer-contact-list,
  .kr-social-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .kr-footer-contact-list > div {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px 14px;
  }

  .kr-footer-contact-list > div .ui-icon,
  .kr-social-row a .ui-icon {
    width: 38px;
    height: 38px;
  }

  .kr-footer-contact-list > div > strong,
  .kr-footer-contact-list > div > strong > a {
    font-size: 17px;
    white-space: normal;
  }

  .kr-footer-contact-phone > strong,
  .kr-footer-contact-inn > strong {
    white-space: nowrap;
    font-size: 16px;
  }

  .kr-social-row a {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 54px;
  }
}

/* Final MAX widget override */
html body .max-widget {
  left: 16px;
  bottom: 20px;
  width: 104px;
  max-width: calc(100vw - 24px);
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(229, 229, 229, 0.14);
  background: rgba(19, 19, 19, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

html body .max-widget.is-expanded {
  width: min(212px, calc(100vw - 24px));
}

html body .max-widget-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0f0f0f;
}

html body .max-widget video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

html body .max-widget-copy {
  display: none;
}

html body .max-widget-cta {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

html body .max-widget.is-expanded .max-widget-cta {
  opacity: 1;
  pointer-events: auto;
}

html body .max-widget-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

@media (max-width: 767px) {
  html body .max-widget {
    left: 12px;
    bottom: 14px;
    width: 94px;
    border-radius: 16px;
  }

  html body .max-widget.is-expanded {
    width: min(178px, calc(100vw - 24px));
  }

  html body .max-widget-cta {
    min-height: 34px;
    font-size: 11px;
  }
}

/* Stoy100let-style video widget */
.video-widget[hidden] {
  display: none !important;
}

html body .video-widget {
  position: fixed;
  left: 16px;
  bottom: 20px;
  z-index: 110;
  opacity: 1;
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

html body .video-widget.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

html body .video-widget-shell {
  position: relative;
  width: 128px;
  height: 176px;
  border-radius: 24px;
  background: rgba(22, 29, 24, 0.92);
  padding: 8px;
  box-shadow: 0 22px 50px rgba(12, 22, 14, 0.3);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

html body .video-widget[data-state="expanded"] .video-widget-shell {
  width: 220px;
  height: 360px;
}

html body .video-widget:hover .video-widget-shell {
  transform: translateY(-4px);
}

html body .video-widget-close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
}

html body .video-widget-toggle {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

html body .video-widget-toggle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html body .video-widget-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 31, 24, 0.7);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

html body .video-widget[data-state="expanded"] .video-widget-label {
  bottom: 62px;
}

html body .video-widget-cta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 40px;
  padding: 0 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

html body .video-widget[data-state="expanded"] .video-widget-cta {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .video-widget,
body.modal-open .video-widget,
body.lightbox-open .video-widget {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  html body .video-widget {
    bottom: 92px;
  }
}

@media (max-width: 767px) {
  html body .video-widget {
    left: 10px;
    bottom: 92px;
  }

  html body .video-widget-shell {
    width: 102px;
    height: 144px;
    border-radius: 20px;
  }

  html body .video-widget[data-state="expanded"] .video-widget-shell {
    width: 168px;
    height: 272px;
  }

  html body .video-widget-label {
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  html body .video-widget[data-state="expanded"] .video-widget-label {
    bottom: 52px;
  }

  html body .video-widget-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 34px;
    font-size: 11px;
  }
}
