:root {
  --red: #BB2E24;
  --bg1: #1C1C1C;
  --bg2: #181818;
  --text: #F4F4F4;
  --muted: #CFCFCF;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.30);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

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

.container {
  width: min(1120px, 98%);
  margin-inline: auto;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /*background: rgba(0,0,0,.38);*/
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.logo {
  width: 181px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
}

.brand h1 {
  font-size: 15px;
  margin: 0;
  letter-spacing: .2px;
  line-height: 1.2;
}

.brand .sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: end;
  flex: 1;
}

.navlinks a {
  font-size: 18px;
  color: #131313;
  padding: 8px 10px;
  border-radius: 10px;
  transition: .2s ease;
  font-weight: 700;
}

.navlinks a:hover {
  color: var(--red);
}

.cta {
  display: flex;
  align-items: center;
  gap: 10px;
  /*min-width: 220px;*/
  justify-content: flex-end;
  flex-direction: column;
}

.phone {
  display: none;
  font-size: 16px;
  color: var(--bg1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}

.btn:hover {
  background: rgba(255,255,255,.05);
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--red);
  border-color: rgba(187,46,36,.65);
  box-shadow: 0 10px 30px rgba(187,46,36,.15);
  min-width: 250px;
}

.btn.primary:hover {
  filter: brightness(1.04);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* Hero */

.hero {
  padding: 46px 0 26px;
}

.hero-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
  /*background: radial-gradient(700px 300px at 10% 0%, rgba(187,46,36,.22), transparent 60%), radial-gradient(500px 280px at 85% 35%, rgba(187,46,36,.10), transparent 60%);*/
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-main:before {
  content: "";
  position: absolute;
  inset: -2px;
  /*background: radial-gradient(700px 300px at 10% 0%, rgba(187,46,36,.22), transparent 60%), radial-gradient(500px 280px at 85% 35%, rgba(187,46,36,.10), transparent 60%);*/
  pointer-events: none;
}

.hero-main > * {
  position: relative;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(187,46,36,.45);
  background: rgba(187,46,36,.12);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(187,46,36,.18);
}

.hero h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
}

.hero p {
  margin: 0 0 16px;
  color: #131313;
  font-size: 18px;
  max-width: 58ch;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.badge svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-side {
  padding: 20px;
  display: flex;
  /*flex-direction: column;*/
  gap: 12px;
}

.side-box {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  /*background: rgba(0,0,0,.18);*/
  /*box-shadow: 0px 0px 20px 0px rgba(0,0,0,.30);*/
}

.side-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: initial;
}

.pill {
  font-size: 12px;
  font-weight: 400;
  color: #131313;
  background: rgba(187,46,36,.12);
  border: 1px solid rgba(187,46,36,.85);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.side-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.side-strong {
  font-weight: 700;
}

/* Sections */

section {
  padding: 18px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0 12px;
}

.section-title h3 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -.2px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 60ch;
}

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

.service {
  padding: 16px;
  border-radius: 0;
  border: none;
  background: rgba(255,255,255,.02);
  transition: transform .12s ease, border-color .2s ease, background .2s ease;
  box-shadow: none;
}

@media (min-width: 576px) {
  .service {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    transition: transform .12s ease, border-color .2s ease, background .2s ease;
    box-shadow: var(--shadow);
  }
}

.service:hover {
  transform: translateY(-2px);
  border-color: rgba(187,46,36,.35);
  background: rgba(187,46,36,.06);
}

.service .icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--red);
  border: 1px solid rgba(187,46,36,.38);
  margin-bottom: 10px;
}

.service h4 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.1px;
  color: #000;
  font-weight: 700;
}

.service p {
  margin: 0;
  color: #131313;
}

/* Footer */

footer {
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.small {
  color: var(--muted);
  font-size: 12px;
}

.floating-call {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 18px;
  z-index: 80;
  display: none;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }
}

@media (max-width: 900px) {
  .phone {
    display: block;
  }
}

@media (max-width: 900px) {
  .cta {
    min-width: auto;
    display: none;
  }
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .floating-call {
    display: block;
  }
}

.icon {
  color: #F4F4F4;
}

.div-border-left {
  border-left: 3px solid var(--red);
  padding-left: 15px;
  height: 100%;
}

#contact-links a {
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
}

#contact-links a:hover {
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
}

