/* ============================================
   Profi Duguláselhárítás Debrecen — Premium CSS
   ============================================ */

:root {
  --accent: #0d9488;
  --accent-light: #14b8a6;
  --accent-dark: #0f766e;
  --accent-soft: rgba(13, 148, 136, 0.1);

  --bg: #f5f5f5;
  --bg-elevated: #ffffff;
  --bg-muted: #ebebeb;
  --text: #1a1a1a;
  --text-secondary: #525252;
  --text-muted: #737373;
  --border: #d4d4d4;
  --border-light: #e5e5e5;

  --header-bg: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.1);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 16px;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 80px;
}

[data-theme="dark"] {
  --accent: #2dd4bf;
  --accent-light: #5eead4;
  --accent-dark: #14b8a6;
  --accent-soft: rgba(45, 212, 191, 0.12);

  --bg: #1c1c1c;
  --bg-elevated: #262626;
  --bg-muted: #2e2e2e;
  --text: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #8a8a8a;
  --border: #404040;
  --border-light: #363636;

  --header-bg: rgba(28, 28, 28, 0.97);
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  --card-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 10px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  transition: background var(--transition), color var(--transition);
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.loader__text {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--card-shadow-hover);
  transition: opacity var(--transition), transform var(--transition);
}

.floating-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--card-shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.logo__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

.logo__sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

.nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
}

.nav__link--cta:hover {
  background: var(--accent-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.header__phone:hover {
  background: var(--accent);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { opacity: 0.92; }

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--white {
  background: #fff;
  color: var(--accent-dark);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--full { width: 100%; }

.btn__loading { display: none; }
.btn.loading .btn__text { display: none; }
.btn.loading .btn__loading { display: flex; align-items: center; gap: 8px; }

.spinner {
  animation: spin 0.8s linear infinite;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding-top: var(--header-height);
  background: var(--bg);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  min-height: min(88vh, 820px);
  min-height: min(88dvh, 820px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero__content-wrap {
  display: flex;
  align-items: center;
  padding: 56px max(32px, 4vw) 56px max(24px, calc((100vw - 1200px) / 2 + 32px));
}

.hero__content {
  max-width: 540px;
  width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

[data-theme="dark"] .badge {
  color: var(--accent-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.hero__checks svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}

.btn--call {
  padding-top: 12px;
  padding-bottom: 12px;
}

.btn__call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}

.btn__call-label {
  font-size: 15px;
  font-weight: 600;
}

.btn__call-number {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}

.hero__media {
  position: relative;
  min-height: 420px;
  min-width: 0;
  overflow: hidden;
}

.hero__media::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(90deg, var(--bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero__figure {
  position: relative;
  height: 100%;
  margin: 0;
}

.hero__figure img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* ---- Trust Bar ---- */
.trust-bar {
  padding: 40px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

[data-theme="dark"] .section__tag {
  color: var(--accent-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* ---- Problems ---- */
.problems {
  background: var(--bg-elevated);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  border-color: var(--accent);
  box-shadow: var(--card-shadow);
}

.problem-card__icon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Why Us ---- */
.why {
  background: var(--bg-muted);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Service Area ---- */
.area__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.area__seo {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.area__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.area__chip {
  padding: 10px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition);
}

.area__chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.area__note {
  font-size: 15px;
  color: var(--text-muted);
}

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
}

.about__experience {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--card-shadow);
}

.about__exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.about__exp-text {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.about__text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.about__features strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.about__features span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- Services ---- */
.services {
  background: var(--bg-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
  border-top: 3px solid var(--accent);
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.service-card__body {
  padding: 28px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- Process ---- */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process__num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  box-shadow: var(--card-shadow);
  transition: background var(--transition), color var(--transition);
}

.process__step:hover .process__num {
  background: var(--accent);
  color: #fff;
}

.process__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process__content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
}

.cta-banner__inner {
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 480px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item[open] {
  border-color: var(--accent);
  box-shadow: var(--card-shadow);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Contact ---- */
.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__cta {
  background: var(--accent-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.contact__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact__cta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact__cta p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}

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

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact__card:hover {
  border-color: var(--accent);
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}

a.contact__value:hover { color: var(--accent); }

.map-preview {
  position: relative;
  width: 100%;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--bg-muted);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.map-preview:hover {
  border-color: var(--accent);
  box-shadow: var(--card-shadow);
}

.map-preview iframe {
  width: 100%;
  max-width: 100%;
  height: 220px;
  border: 0;
  display: block;
  pointer-events: none;
}

.map-preview__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  color: var(--text-muted);
}

.map-preview__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}

.map-preview:hover .map-preview__overlay { opacity: 1; }

.map-preview--large iframe {
  height: 360px;
}

.contact__map-wrap .map-preview {
  margin-top: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover { color: var(--accent); }

.footer__contact li {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition);
}

.modal.active .modal__content {
  transform: scale(1) translateY(0);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal__header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.modal__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}

.modal__close:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.modal__body iframe {
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content-wrap {
    order: 2;
    padding: 40px 24px 56px;
  }

  .hero__content { max-width: none; }

  .hero__media {
    order: 1;
    min-height: 340px;
  }

  .hero__media::before { display: none; }

  .hero__figure img { min-height: 340px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .process__timeline { grid-template-columns: repeat(2, 1fr); }
  .process__timeline::before { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; padding: 40px; }
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section__title,
  .hero__title,
  .cta-banner__content h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .cta-banner__inner {
    padding: 28px 20px;
    gap: 24px;
  }

  .cta-banner__actions {
    flex-shrink: 1;
    min-width: 0;
    width: 100%;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--card-shadow);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 12px 16px;
    display: block;
  }

  .burger { display: flex; }
  .header__phone { display: none; }

  .hero__content-wrap { padding: 32px 20px 48px; }
  .hero__media { min-height: 260px; }
  .hero__figure img { min-height: 260px; }
  .hero__title { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .hero__checks li { font-size: 14px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }

  .section { padding: 72px 0; }
  .problems__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; gap: 16px; }
  .process__timeline { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact__cta { padding: 24px; }
  .contact__cta-inner { flex-direction: column; text-align: center; }
  .contact__cta-actions { flex-direction: column; width: 100%; }
  .contact__cta-actions .btn { width: 100%; }
  .contact__cards { grid-template-columns: 1fr; }
  .map-preview--large iframe { height: 260px; }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo__name { font-size: 14px; }
  .logo__sub { font-size: 11px; }
  .logo__icon { width: 40px; height: 40px; }

  .hero__content-wrap { padding: 28px 14px 40px; }
  .hero__eyebrow { font-size: 12px; letter-spacing: 0.05em; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .btn--lg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .area__chip {
    font-size: 13px;
    padding: 8px 14px;
  }
}
