:root {
  --primary: #990000;
  --secondary: #FB7B3B;
  --dark-blue: #080026;
  --deep-blue: #000066;
  --black: #111111;
  --white: #ffffff;
  --text-soft: #5f5f5f;
  --border-soft: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 80px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #111111;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover {
  color: #FB7B3B;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #990000, #FB7B3B);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: none;
  background: #000066;
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 20px;
  background: #ffffff;
}

.mobile-menu a {
  color: #111111;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu.active {
  display: flex;
}

@media (max-width: 780px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 123, 59, 0.16), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(153, 0, 0, 0.24), transparent 25%),
    linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-blue) 55%, #02020f 100%);
  color: var(--white);
  padding: 110px 0 90px;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  background: rgba(251, 123, 59, 0.16);
  top: 80px;
  left: -40px;
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  background: rgba(153, 0, 0, 0.18);
  right: -80px;
  bottom: -60px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -1.8px;
  max-width: 760px;
}

.hero-content p {
  margin-top: 22px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(153, 0, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(153, 0, 0, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.metric {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.card-main {
  top: 90px;
  right: 30px;
  width: min(100%, 420px);
  padding: 30px;
}

.card-main .card-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(251, 123, 59, 0.18);
  color: #ffd6c3;
  font-size: 0.9rem;
  font-weight: 700;
}

.card-main h3 {
  font-size: 1.7rem;
  line-height: 1.2;
}

.card-small {
  width: 250px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-top {
  top: 10px;
  left: 10px;
}

.card-bottom {
  bottom: 48px;
  left: 70px;
}

.mini-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  flex-shrink: 0;
}

.card-small p {
  font-weight: 700;
  color: var(--white);
}

/* SECTIONS */
.section-light,
.section-white {
  padding: 96px 0;
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.section-label-light {
  color: #ffd3c1;
}

.section-head h2,
.about-grid h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-head p,
.about-text p,
.cta-box p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 1.03rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(153, 0, 0, 0.08), rgba(251, 123, 59, 0.15));
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-soft);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.about-text {
  display: grid;
  gap: 18px;
}

/* CTA */
.cta-section {
  padding: 0 0 100px;
  background: var(--white);
}

.cta-box {
  background:
    radial-gradient(circle at top left, rgba(251, 123, 59, 0.18), transparent 28%),
    linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
  color: var(--white);
  border-radius: 30px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-strong);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .card-main {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
  }

  .card-top,
  .card-bottom {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    margin-top: 18px;
    width: 100%;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .navbar {
    position: sticky;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-content h1 {
    letter-spacing: -1px;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .metric {
    width: 100%;
  }

  .cta-box {
    padding: 34px 24px;
  }
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}