:root {
  --bg: #0a0e17;
  --bg-soft: #0e1320;
  --surface: #131a28;
  --surface-2: #182032;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8edf5;
  --muted: #97a3b6;
  --navy: #6b7895;
  --fire: #ff0000;
  --fire-2: #ff4d4d;
  --grad: linear-gradient(
    115deg,
    #ffffff 0%,
    #ffffff 22%,
    #ff4d4d 62%,
    #ff0000 100%
  );
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--text);
  text-decoration: none;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

.glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glow::before {
  content: '';
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background:
    radial-gradient(closest-side, rgba(255, 0, 0, 0.22), transparent 70%),
    radial-gradient(closest-side, rgba(107, 120, 149, 0.28), transparent 70%);
  filter: blur(40px);
  opacity: 0.9;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 23, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand img.logo {
  height: 62.7px;
  width: auto;
  display: block;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tel {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.tel:hover {
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 0;
  font-weight: 650;
  font-size: 15px;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--fire);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 24px rgba(255, 0, 0, 0.28);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 30px rgba(255, 0, 0, 0.4);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn.ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  padding: 88px 0 56px;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fire-2);
  border: 1px solid var(--border-strong);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(255, 0, 0, 0.08);
}
.hero-logo {
  display: block;
  width: min(440px, 78%);
  height: auto;
  margin: 6px auto 26px;
}
h1 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
  max-width: 15ch;
}
h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 30px;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta .microproof {
  color: var(--muted);
  font-size: 16.9px;
}
.trustline {
  margin-top: 28px;
  color: var(--muted);
  font-size: 18.2px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.trustline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 10px var(--fire);
}

.trustbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.trustbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  padding: 16px 22px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.trustbar b {
  color: var(--text);
  font-weight: 650;
}

section {
  padding: 60px 0;
  position: relative;
}
.kicker {
  color: var(--fire-2);
  font-weight: 600;
  font-size: 18.72px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-weight: 800;
}
.sub {
  color: var(--muted);
  margin: 0 0 34px;
  max-width: none;
  font-size: 20.8px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.3);
  margin-bottom: 16px;
  font-size: 20px;
}
.card h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
.step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg-soft);
}
.step .n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--fire);
  margin-bottom: 12px;
  font-size: 14px;
}
.step h4 {
  margin: 0 0 5px;
  font-size: 16px;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.promise {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--fire);
  border-radius: 16px;
  padding: 34px;
}
.promise ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 800px) {
  .promise ul {
    grid-template-columns: 1fr;
  }
}
.promise li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.promise .ck {
  color: var(--fire-2);
  font-weight: 800;
  flex: none;
}
.promise b {
  color: var(--text);
}
.promise span.t {
  color: var(--muted);
}

.testi {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}
.testi blockquote {
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
  min-width: 280px;
}
.testi .who {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}
.testi .who b {
  color: var(--text);
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .bar {
    height: 64px;
  }
  .brand img.logo {
    height: 40px;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-actions .tel {
    display: none;
  }
}
.panel {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}
form {
  display: grid;
  gap: 14px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
input,
textarea {
  width: 100%;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  background: #0c1119;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-info p {
  margin: 10px 0;
  color: var(--muted);
}
.contact-info strong {
  color: var(--text);
}
.contact-info a {
  color: var(--fire-2);
}

footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot a {
  color: var(--muted);
}
.foot a:hover {
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 12px;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}
.team-name {
  margin: 16px 0 4px;
  font-size: 20px;
  font-weight: 700;
}
.team-title {
  margin: 0 0 12px;
  color: var(--fire-2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.team-bio {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  text-align: left;
  overflow: hidden;
}
.team-bio summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--fire-2);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-bio summary::-webkit-details-marker {
  display: none;
}
.team-bio summary::after {
  content: '+';
  font-size: 18px;
  line-height: 1;
}
.team-bio[open] summary::after {
  content: '\2013';
}
.team-bio p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 15px;
}

/* centered layout (all sections) */
.hero .wrap {
  text-align: center;
}
.hero h1 {
  margin-left: auto;
  margin-right: auto;
}
.hero .lead {
  margin-left: auto;
  margin-right: auto;
}
.cta {
  justify-content: center;
}
.trustline {
  justify-content: center;
}
main > section > .wrap {
  text-align: center;
}
.sub {
  margin-left: auto;
  margin-right: auto;
}
.icon {
  margin-left: auto;
  margin-right: auto;
}
.step .n {
  margin-left: auto;
  margin-right: auto;
}
.testi {
  justify-content: center;
  text-align: center;
}
.promise {
  text-align: left;
} /* keep checklist readable */
.panel,
.contact-info {
  text-align: left;
} /* keep form usable */
/* balance multi-line headings/text so no lone orphan word */
h1,
h2,
.lead,
.sub,
.testi blockquote {
  text-wrap: balance;
}
/* header CTA 30% smaller */
.nav-actions .btn {
  font-size: 11.55px;
  padding: 8.47px 13.86px;
  border-radius: 7.7px;
}
.contact-logo {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.mb-6 {
  margin: 0 0 6px;
}
.nowrap {
  white-space: nowrap;
}
.hp {
  display: none;
}
.mt-16 {
  margin-top: 16px;
}
