:root {
  --bg: #f8f9fa;
  --panel: #ffffff;
  --panel-solid: #ffffff;
  --text: #212529;
  --muted: #6c757d;
  --muted-2: #adb5bd;
  --accent: #fd7e14;
  --accent-2: #ffc107;
  --border: #dee2e6;
  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.04);
  --ring: rgba(253, 126, 20, 0.35);
}

* { box-sizing: border-box; }
html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
section[id] { scroll-margin-top: 110px; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(253, 126, 20, 0.22); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.page {
  width: min(1180px, 94vw);
  margin: 0 auto 96px auto;
  padding-top: 16px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform 0.15s ease;
  z-index: 50;
}
.skip-link:focus { transform: translateY(0); }

/* Header injected via JS */
.topbar {
  background: var(--panel-solid);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.nav {
  width: min(1180px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel-solid);
}
.menu {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin-left: 6px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: #ced4da;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.menu-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  display: block;
  transition: background 0.15s ease;
}
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.15s ease, top 0.15s ease;
}
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.menu > a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.menu > a:hover,
.menu > a.active {
  background: rgba(253, 126, 20, 0.1);
  border-color: rgba(253, 126, 20, 0.2);
  color: #d96700;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.phone-link {
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.phone-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  filter: brightness(1.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: clamp(32px, 5vw, 64px);
  margin: 24px 0 0 0;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero > * { position: relative; }
.hero > :first-child { max-width: 62ch; }

h1 {
  margin: 0 0 16px 0;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}
h2 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  font-weight: 700;
}
h3 { margin: 0 0 8px 0; font-size: 22px; letter-spacing: -0.01em; font-weight: 700; }
p { margin: 0; line-height: 1.7; }
.muted { color: var(--muted); }
.note { color: var(--muted); font-size: 14px; }
.small { font-size: 14px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(253, 126, 20, 0.3);
  background: rgba(253, 126, 20, 0.08);
  color: #d96700;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.cta {
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  filter: brightness(1.1);
}
.cta-secondary {
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel-solid);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.cta-secondary:hover {
  transform: translateY(-2px);
  border-color: #ced4da;
  background: var(--bg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.hero-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 170px 170px 140px;
  gap: 12px;
}
.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.hero-grid img:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.hero-grid img:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-grid img:nth-child(3) { grid-column: 2; grid-row: 2; }
.hero-grid img:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.page > section:not(.hero) {
  margin: 80px 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.card {
  padding: 24px;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-link::after {
  content: "\2192";
  margin-top: auto;
  align-self: flex-end;
  color: var(--muted-2);
  font-weight: 800;
  transition: transform 0.15s ease, color 0.15s ease;
}
.card-link:hover::after {
  transform: translateX(3px);
  color: var(--accent);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.gallery figure {
  margin: 0;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
  background: var(--panel-solid);
}

.faq { display: grid; gap: 12px; margin-top: 20px; }
.faq-item {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}
.contact-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}
textarea { min-height: 120px; resize: vertical; grid-column: 1 / -1; }
button[type="submit"] { justify-self: start; }

.card-link:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(253, 126, 20, 0.08);
  border: 1px solid rgba(253, 126, 20, 0.2);
  color: #d96700;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.tag:hover {
  background: rgba(253, 126, 20, 0.15);
  border-color: rgba(253, 126, 20, 0.3);
}

/* Footer injected via JS */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--panel-solid);
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  width: min(1180px, 94vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { margin: 0 0 8px 0; font-size: 16px; color: var(--text); font-weight: 700; }
.footer-col a { color: var(--muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: var(--muted); font-size: 20px; transition: color 0.2s ease; }
.footer-socials a:hover { color: var(--accent); }

@media (max-width: 1100px) {
  html { scroll-padding-top: 130px; }
  .nav { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .menu {
    order: 3;
    width: 100%;
    display: none;
    padding: 10px;
    margin-left: 0;
    flex: none;
    justify-content: flex-start;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
  }
  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .menu > a { width: 100%; }

  .menu .nav-actions {
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
  }
  .menu .nav-actions a { width: 100%; text-align: center; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; margin-top: 14px; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px;
  }
  .hero-grid img:nth-child(1),
  .hero-grid img:nth-child(2),
  .hero-grid img:nth-child(3),
  .hero-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .page > section:not(.hero) { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}



