:root {
  --acid: #e11d48;
  --acid-2: #06b6d4;
  --bg: #0a0a0a;
  --bs-link-color: #f3f4f6;
  --bs-link-hover-color: #ffffff;
  --glass: rgba(255, 255, 255, .14);
  --ink: #f3f4f6;
  --muted: #a3a3a3;
  --radius: 18px;
  --shadow: 0 15px 60px rgba(0, 0, 0, .45);
  --stroke: rgba(255, 255, 255, .16);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(225, 29, 72, .20), transparent 60%), radial-gradient(900px 500px at -10% 110%, rgba(6, 182, 212, .18), transparent 60%), var(--bg);
  color: var(--ink);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: .1px;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(160%) blur(8px);
  background: linear-gradient(180deg, rgba(10, 10, 10, .92), rgba(10, 10, 10, .55));
  border-bottom: 1px solid var(--stroke);
}
.brand {
  font-family: 'Russo One', system-ui;
  letter-spacing: .5px;
  font-size: 22px;
}
.brand b {
  color: var(--acid);
}
.btn-ghost {
  padding: 12px 18px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--glass);
  transition: .2s;
  font-weight: 600;
}
.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 29, 72, .55);
}
.btn-hot {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 29, 72, .95), rgba(6, 182, 212, .95));
  border: none;
  box-shadow: 0 10px 30px rgba(225, 29, 72, .35), inset 0 0 24px rgba(255, 255, 255, .08);
  font-weight: 800;
}
.btn-ghost.active {
  border-color: rgba(225, 29, 72, .65);
  box-shadow: inset 0 0 0 2px rgba(225, 29, 72, .25);
}
.cardx {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
main {
  min-height: 60vh;
}
footer {
  border-top: 1px solid var(--stroke);
  margin-top: 60px;
  padding: 28px 0 60px;
  color: var(--muted);
}
html,
 body {
  height: 100%;
}
/* Header */
 header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(160%) blur(8px);
  background: linear-gradient(180deg, rgba(10, 10, 10, .92), rgba(10, 10, 10, .55));
  border-bottom: 1px solid var(--stroke);
}
/* Buttons */
 .btn-ghost {
  padding: 12px 18px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--glass);
  transition: .2s;
  font-weight: 600;
}
/* Hero */
 .hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, .25), rgba(225, 29, 72, .25));
  border: 1px solid var(--stroke);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .9px;
}
.hero-title {
  font-family: 'Russo One', system-ui;
  font-size: clamp(36px, 5vw, 66px);
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: .6px;
}
.hero-title .slash {
  color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  text-stroke: 2px var(--acid);
}
.hero p {
  color: var(--muted);
  max-width: 660px;
  font-size: 18px;
}
.hero-card {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}
/* Services */
 .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}
.chip {
  border: 1px solid var(--stroke);
  background: var(--glass);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}
.chip.active {
  background: linear-gradient(135deg, rgba(225, 29, 72, .4), rgba(6, 182, 212, .4));
  border-color: transparent;
}
/* Cards */
 .cards-grid .cardx {
  position: relative;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .10);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cards-grid .top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.cards-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  flex: 1 1 auto;
}
.cards-grid .tag {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #214a53;
  white-space: nowrap;
}
.cards-grid .meta {
  font-size: 12px;
  color: var(--muted);
}
/* Footer */
 footer {
  border-top: 1px solid var(--stroke);
  margin-top: 60px;
  padding: 28px 0 60px;
  color: var(--muted);
}
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}
.fab a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 1), rgba(6, 182, 212, 1));
  color: white;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(225, 29, 72, .45);
}
.address {
  white-space: pre-line;
}
/* Forms (dark UI) */
 .form-card {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-control,
 .form-select,
 .form-check-input {
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
  border-color: var(--stroke);
}
.form-control::placeholder {
  color: var(--muted);
}
.form-check-input:checked {
  background-color: #e11d48;
  border-color: #e11d48;
}
.form-check-label {
  color: var(--muted);
}
.btn-ghost,
   .btn-hot {
  padding: 10px 14px;
}
.hero-graphic {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 4;
}
.hero .row {
  gap: 12px !important;
}
html {
  scroll-behavior: smooth;
}
/* Brand logos grid */
 .brand-grid .brand-tile {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 14px;
}
.brand-grid img {
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
}
.brand-grid figcaption {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .2px;
}
.brand-grid svg {
  width: 64px;
  height: 64px;
  display: block;
  opacity: .95;
}
.muted {
  color: var(--muted);
}
a,
 a:visited {
  color: var(--bs-link-color) !important;
}
a:hover {
  color: var(--bs-link-hover-color) !important;
}
