:root {
  --bg: #070a12;
  --panel: #0b1020;
  --panel2: #0e1630;
  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.72);
  --line: rgba(238, 242, 255, 0.12);
  --brand: #ffcc00;
  --brand2: #ff5c00;
  --good: #2ee59d;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 204, 0, 0.12), transparent 55%),
    radial-gradient(900px 480px at 90% 0%, rgba(255, 92, 0, 0.12), transparent 52%),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: #ffffff;
  color: #000000;
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus {
  left: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 18, 0.68);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.95), rgba(255, 92, 0, 0.95));
  color: #091020;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.brand-name {
  font-weight: 850;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-link {
  display: grid;
  text-align: right;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 204, 0, 0.32);
  background: rgba(255, 204, 0, 0.08);
}
.phone-link-label {
  font-size: 12px;
  color: rgba(255, 204, 0, 0.95);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.phone-link-number {
  font-weight: 900;
  font-size: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
  touch-action: manipulation;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 204, 0, 1), rgba(255, 92, 0, 0.98));
  color: #0b1020;
  box-shadow: 0 18px 44px rgba(255, 140, 0, 0.22);
}
.btn-primary:hover {
  filter: saturate(1.05) brightness(1.02);
}

.btn-secondary {
  background: rgba(238, 242, 255, 0.06);
  border-color: rgba(238, 242, 255, 0.14);
  color: var(--text);
}
.btn-secondary:hover {
  background: rgba(238, 242, 255, 0.085);
  border-color: rgba(238, 242, 255, 0.22);
}

.btn-lg {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 15px;
}
.btn-xl {
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 16px;
}

.btn-phone {
  font-weight: 950;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255, 204, 0, 0.18), transparent 55%),
    radial-gradient(800px 500px at 80% 10%, rgba(255, 92, 0, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.05), rgba(7, 10, 18, 0.78)),
    url("assets/hero.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.18), rgba(7, 10, 18, 0.86) 72%, rgba(7, 10, 18, 1));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 16px 0 28px;
}

.hero-card {
  background: rgba(11, 16, 32, 0.72);
  border: 1px solid rgba(238, 242, 255, 0.14);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-kicker {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.22);
  color: rgba(255, 204, 0, 0.95);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 5.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0 0 16px;
  color: rgba(238, 242, 255, 0.84);
  font-size: 15px;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trust-row {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(238, 242, 255, 0.85);
  font-weight: 700;
  font-size: 13px;
}
.trust-row li {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(238, 242, 255, 0.12);
  background: rgba(238, 242, 255, 0.05);
}

.hero-mini {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 242, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-label {
  font-size: 12px;
  color: var(--muted);
}
.mini-value {
  font-weight: 900;
  font-size: 13px;
}
.mini-phone {
  color: rgba(255, 204, 0, 0.95);
}

/* Sections */
.section {
  padding: 44px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(14, 22, 48, 0.6), rgba(7, 10, 18, 0));
  border-top: 1px solid rgba(238, 242, 255, 0.08);
  border-bottom: 1px solid rgba(238, 242, 255, 0.08);
}

.section-head {
  margin-bottom: 18px;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 4.4vw, 32px);
  letter-spacing: -0.01em;
}

.section-sub {
  margin: 0;
  color: rgba(238, 242, 255, 0.78);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 12px;
}

.services-grid {
  grid-template-columns: 1fr;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(238, 242, 255, 0.12);
  background: rgba(238, 242, 255, 0.04);
  padding: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 204, 0, 0.11);
  border: 1px solid rgba(255, 204, 0, 0.2);
  margin-bottom: 10px;
  font-size: 18px;
}

h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(238, 242, 255, 0.82);
  font-size: 14px;
}
.list li {
  margin: 6px 0;
}

.inline-cta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  align-items: center;
}
.inline-cta-note {
  color: rgba(238, 242, 255, 0.7);
  font-size: 13px;
}

.two-col {
  display: grid;
  gap: 14px;
}

.bullets {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.bullet {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(238, 242, 255, 0.12);
  background: rgba(238, 242, 255, 0.04);
}
.bullet-title {
  font-weight: 900;
  margin-bottom: 4px;
}
.bullet-text {
  color: rgba(238, 242, 255, 0.78);
  font-size: 14px;
}

.media-card {
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid rgba(238, 242, 255, 0.12);
  background:
    radial-gradient(800px 420px at 20% 20%, rgba(255, 204, 0, 0.14), transparent 55%),
    radial-gradient(720px 420px at 90% 0%, rgba(255, 92, 0, 0.12), transparent 55%),
    rgba(238, 242, 255, 0.03);
  box-shadow: var(--shadow);
  min-height: 240px;
}
.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card.img-missing img {
  display: none;
}

/* Big CTA */
.big-cta {
  padding: 36px 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.18), rgba(255, 92, 0, 0.14));
  border-top: 1px solid rgba(255, 204, 0, 0.22);
  border-bottom: 1px solid rgba(255, 204, 0, 0.14);
}
.big-cta-inner {
  display: grid;
  gap: 14px;
  align-items: center;
}
.big-cta-copy h2 {
  margin: 0 0 6px;
}
.big-cta-copy p {
  margin: 0;
  color: rgba(238, 242, 255, 0.85);
}

/* Location */
.location-grid {
  display: grid;
  gap: 12px;
}
.location-card {
  border-radius: var(--radius);
  border: 1px solid rgba(238, 242, 255, 0.12);
  background: rgba(238, 242, 255, 0.04);
  padding: 16px;
}
.location-lines {
  display: grid;
  gap: 10px;
}
.loc-line {
  display: grid;
  gap: 4px;
  color: rgba(238, 242, 255, 0.86);
}
.loc-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.location-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(238, 242, 255, 0.12);
  background: rgba(238, 242, 255, 0.03);
  min-height: 320px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* Footer */
.footer {
  padding: 28px 0 104px;
  border-top: 1px solid rgba(238, 242, 255, 0.1);
  background: rgba(7, 10, 18, 0.86);
}
.footer-inner {
  display: grid;
  gap: 16px;
}
.footer-name {
  font-weight: 950;
}
.footer-meta {
  color: rgba(238, 242, 255, 0.7);
  font-size: 13px;
  margin-top: 4px;
}
.footer-cols {
  display: grid;
  gap: 14px;
}
.footer-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-phone {
  display: inline-block;
  font-weight: 950;
  color: rgba(255, 204, 0, 0.95);
}

/* Sticky Call Button */
.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 10, 18, 0.66);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(238, 242, 255, 0.12);
}
.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 1), rgba(255, 92, 0, 0.98));
  color: #0b1020;
  font-weight: 950;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 50px rgba(255, 140, 0, 0.22);
  border: 1px solid rgba(255, 204, 0, 0.28);
  font-size: 16px;
  touch-action: manipulation;
}
.sticky-phone {
  font-variant-numeric: tabular-nums;
}

/* Desktop enhancements */
@media (min-width: 680px) {
  .cta-row {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }
  .inline-cta {
    grid-template-columns: auto 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
  .big-cta-inner {
    grid-template-columns: 1fr auto;
  }
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .location-actions {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .sticky-call {
    display: none;
  }
  .footer {
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

