:root {
  --bg: #07111f;
  --bg-soft: #112341;
  --panel: rgba(10, 22, 39, 0.8);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f6f8fb;
  --muted: #b7c7dd;
  --red: #f13b2a;
  --red-deep: #b51411;
  --blue: #1b7ce6;
  --blue-deep: #0d4da0;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(27, 124, 230, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(241, 59, 42, 0.25), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091625 50%, #050b13 100%);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header,
.hero,
.section,
.cta-banner,
.site-footer,
.trust-strip {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.brand-copy h1,
.hero-copy h2,
.section-heading h2,
.split-section h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow,
.hero-kicker,
.callout-label {
  margin: 0 0 0.45rem;
  color: #8bc2ff;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0.95rem 1.35rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #ff664b 100%);
  box-shadow: 0 12px 30px rgba(241, 59, 42, 0.35);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-text,
.service-card p,
.reason p,
.cta-banner p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0;
}

.button {
  min-width: 160px;
  padding: 0.95rem 1.4rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #ff7856 100%);
  box-shadow: 0 14px 35px rgba(241, 59, 42, 0.32);
}

.button-secondary {
  border: 1px solid rgba(139, 194, 255, 0.4);
  background: rgba(10, 22, 39, 0.55);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.trust-strip p,
.service-card,
.reason,
.hero-card,
.cta-banner {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.hero-points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
}

.hero-card {
  position: relative;
  padding: 1.4rem;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-glow {
  position: absolute;
  inset: auto -10% -15% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(241, 59, 42, 0.45), transparent 65%);
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  border-radius: 22px;
  position: relative;
  z-index: 1;
}

.callout {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 18, 33, 0.92), rgba(15, 36, 63, 0.82));
}

.callout a {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.trust-strip p {
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 4rem 0 0;
}

.section-heading {
  max-width: 60rem;
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.35rem;
  border-radius: 24px;
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 1.08rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.reasons {
  display: grid;
  gap: 1rem;
}

.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: 24px;
}

.reason span {
  font-family: "Archivo Black", sans-serif;
  color: #7ec0ff;
  font-size: 2rem;
  line-height: 1;
}

.reason p {
  margin: 0;
}

.cta-banner {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(27, 124, 230, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(181, 20, 17, 0.95), rgba(11, 33, 62, 0.96));
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .service-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .brand-lockup {
    align-items: flex-start;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .hero-copy h2 {
    max-width: none;
  }

  .hero-actions,
  .site-footer {
    width: 100%;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}
