:root {
  --bg-page: #020617;
  --bg-section: #020b23;
  --bg-section-soft: #030e2a;

  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --accent-strong: #ea580c;

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;

  --border-soft: rgba(148, 163, 184, 0.45);
  --border-strong: rgba(148, 163, 184, 0.7);

  --radius-lg: 20px;
  --radius-md: 14px;

  --shadow-soft: 0 28px 60px rgba(15, 23, 42, 0.8);
  --shadow-card: 0 18px 42px rgba(15, 23, 42, 0.78);

  --container-width: 1120px;

  --transition-fast: 0.18s ease-out;
  --transition-normal: 0.25s ease;

  --header-h: 116px;
}

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

html {
  scroll-behavior: smooth;
  height: auto;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020b23 0, #020617 55%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

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

a:visited {
  color: inherit;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-badge {
  width: 218px;
  height: 118px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, rgba(8, 14, 31, 0.92) 0%, rgba(2, 6, 23, 0.84) 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.88);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.brand:hover .brand-badge {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.95);
  border-color: rgba(249, 115, 22, 0.28);
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  min-width: 0;
}

.brand-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  flex: 0 0 auto;
}

.nav-link {
  padding: 8px 6px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
  border-color: var(--accent);
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #111827;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.7);
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.nav-cta:hover {
  background: var(--accent-strong);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.85);
  transform: translateY(-1px);
}

.burger {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.85);
  flex: 0 0 auto;
}

.burger-lines {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-line {
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(14px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  z-index: 999;
}

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

.mobile-menu-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 104px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
}

.mobile-menu a {
  padding: 10px 0;
  color: var(--text-main);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

main {
  display: block;
}

.page {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 18px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  background: radial-gradient(circle at top left, #091126 0, #020617 56%, #000 100%);
  border-radius: 30px;
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-kicker {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  max-width: 15ch;
}

.hero-highlight {
  color: var(--accent);
}

.hero-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.45;
}

.hero-impressions {
  margin-top: 14px;
}

.hero-impressions-label {
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 490px;
  background: #020617;
  border: 1px solid var(--border-strong);
}

@media (min-width: 900px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.55);
  border: none;
  cursor: pointer;
}

.hero-slider-dot.is-active {
  background: var(--accent);
}

.section {
  background: linear-gradient(180deg, rgba(2, 11, 35, 0.98) 0%, rgba(2, 9, 28, 0.98) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: var(--shadow-card);
}

@media (min-width: 900px) {
  .section {
    padding: 28px 24px 24px;
  }
}

.section-header {
  margin-bottom: 18px;
}

.section-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.section-text {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 52rem;
  line-height: 1.5;
}

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

@media (min-width: 880px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  background: linear-gradient(180deg, rgba(4, 14, 40, 0.98) 0%, rgba(3, 10, 30, 0.98) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fed7aa;
  flex: 0 0 auto;
}

.service-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.service-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.help-card {
  background: linear-gradient(180deg, rgba(4, 14, 40, 0.98) 0%, rgba(3, 10, 30, 0.98) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 64, 175, 0.45);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.help-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.help-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.help-link {
  margin-top: 8px;
  font-size: 0.87rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }
}

.contact-box {
  padding: 18px 16px;
  border-radius: 16px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.65);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-box strong {
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.contact-row {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-row a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-hours {
  margin-top: 14px;
  line-height: 1.6;
}

.contact-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.55);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
  cursor: pointer;
}

.btn-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.1);
}

.btn-facebook {
  border-color: rgba(249, 115, 22, 0.45);
  color: var(--text-main);
  background: rgba(249, 115, 22, 0.1);
}

.btn-facebook:hover {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(249, 115, 22, 0.16);
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(2, 6, 23, 0.6);
  box-shadow: var(--shadow-card);
  min-height: 320px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
}

footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links a:visited,
.footer-links a:hover,
.footer-links a:active {
  color: var(--text-main);
}

@media (max-width: 900px) {
  .map-box iframe {
    pointer-events: none;
  }

  :root {
    --header-h: 94px;
  }

  .header-inner {
    padding: 10px 16px;
    gap: 12px;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-badge {
    width: 150px;
    height: 84px;
    border-radius: 16px;
  }

  .brand-badge img {
    padding: 6px 8px;
  }

  .brand-title {
    font-size: 1.08rem;
    letter-spacing: 0.12em;
  }

  .brand-sub {
    margin-top: 5px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-slider {
    height: 360px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 82px;
  }

  .header-inner {
    padding: 8px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-badge {
    width: 118px;
    height: 64px;
    border-radius: 14px;
  }

  .brand-badge img {
    padding: 5px 7px;
  }

  .brand-title {
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }

  .brand-sub {
    margin-top: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .mobile-menu-inner {
    padding: 90px 20px 20px;
  }

  .page {
    padding: 14px 14px 32px;
    gap: 22px;
  }

  .section {
    padding: 20px 16px 18px;
  }

  .hero-slider {
    height: 290px;
  }

  .section-title {
    font-size: 1.4rem;
  }
}