@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0b0d10;
  --bg-soft: #11161d;
  --surface: #151b23;
  --surface-strong: #1a2230;
  --ink: #f3f6fb;
  --muted: #aab6c5;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #0067d2;
  --accent-dark: #0052a6;
  --accent-soft: rgba(0, 103, 210, 0.16);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 103, 210, 0.18), transparent 28%),
    linear-gradient(180deg, #0a0d11 0%, #0f141b 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

body::before {
  top: 4%;
  left: -10%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(0, 103, 210, 0.26) 0%, transparent 66%);
  animation: drift-glow 14s ease-in-out infinite;
}

body::after {
  right: -8%;
  top: 34%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(96, 171, 255, 0.18) 0%, transparent 68%);
  animation: drift-glow-alt 18s ease-in-out infinite;
}

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

.site-header {
  background: rgba(10, 13, 17, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.navbar {
  --bs-navbar-padding-y: 0;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: rgba(243, 246, 251, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #ffffff;
}

.btn-brand {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
  font-weight: 700;
  padding-inline: 1.4rem;
  box-shadow: 0 12px 26px rgba(0, 103, 210, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.btn-soft {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn-soft:hover,
.btn-soft:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.hero-section {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  min-height: 70vh;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: #7fb3f2;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title,
h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

.hero-title {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.75rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.96;
}

.hero-copy,
.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-copy {
  max-width: 36rem;
}

.hero-panel {
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(21, 27, 35, 0.9);
  box-shadow: var(--shadow);
}

.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -65%;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 248deg,
    rgba(0, 103, 210, 0.08) 272deg,
    rgba(0, 103, 210, 0.9) 304deg,
    rgba(155, 210, 255, 0.98) 320deg,
    rgba(0, 103, 210, 0.22) 334deg,
    transparent 360deg
  );
  animation: card-orbit 5.5s linear infinite;
  opacity: 1;
  filter: blur(12px);
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    rgba(21, 27, 35, 0.92);
  z-index: 0;
}

.glow-card > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(100%, 460px);
  height: auto;
  margin-bottom: 1.5rem;
}

.stats-row {
  margin-top: 0.4rem;
}

.metric-card,
.info-card,
.contact-shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.metric-card {
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  text-align: left;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-block {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  max-width: 48rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.85rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.info-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: 1.25rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-shell {
  padding: 2rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(0, 103, 210, 0.12), transparent 38%),
    rgba(21, 27, 35, 0.92);
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-methods a {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: #ffffff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-methods a:hover,
.contact-methods a:focus {
  color: #9bd2ff;
}

@keyframes drift-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    transform: translate3d(14%, 8%, 0) scale(1.12);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
}

@keyframes drift-glow-alt {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-16%, 12%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes card-orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-label {
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #e9eef5;
}

.form-control {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 17, 0.82);
  color: var(--ink);
}

.form-control:focus {
  border-color: rgba(0, 103, 210, 0.72);
  box-shadow: 0 0 0 0.2rem rgba(0, 103, 210, 0.16);
  background: rgba(8, 12, 17, 0.94);
  color: var(--ink);
}

.form-control::placeholder {
  color: #7f8b99;
}

.site-footer {
  padding: 1.75rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #0a0d11;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  z-index: 1040;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 4.25rem;
  }

  .hero-title {
    max-width: none;
  }

  .hero-panel {
    padding: 1.5rem;
  }

  .contact-shell {
    padding: 1.5rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 575.98px) {
  .section-block {
    padding: 4rem 0;
  }

  .hero-section {
    padding-bottom: 3.5rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}
