:root {
  --brand-green: #6abf4b;
  --brand-blue: #1e6fbf;
  --brand-dark: #0f172a;
  --brand-soft: #f5f7fb;
  --text-dark: #101828;
  --text-muted: #667085;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f2f6ff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 60px;
  width: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.8;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--brand-blue);
  opacity: 1;
}

.navbar .btn {
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
}

.hero {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
  background-image: linear-gradient(
      120deg,
      rgba(6, 21, 49, 0.92) 0%,
      rgba(6, 21, 49, 0.75) 35%,
      rgba(10, 34, 62, 0.3) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-sm {
  padding: 3.5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  margin: 1rem 0;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 520px;
  opacity: 0.85;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.hero-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1.5rem;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(106, 191, 75, 0.35), transparent 70%);
  pointer-events: none;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #f4f7fb;
}

.section-title {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  color: var(--brand-blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 0.6rem;
}

.section-title p {
  color: var(--text-muted);
}

.service-card,
.step-card,
.contact-card,
.form-card,
.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.service-card i {
  font-size: 1.8rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card p,
.step-card p,
.contact-card p {
  color: var(--text-muted);
}

.section-cta {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(120deg, #0f172a, #1d3557);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.section-cta h3 {
  margin-bottom: 0.3rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.feature-list i {
  color: var(--brand-green);
}

.step-card span {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: rgba(30, 111, 191, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--brand-blue);
  margin-bottom: 0.8rem;
}

.company-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.company-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.company-info strong {
  font-size: 1rem;
}

.about-card h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.about-card ul {
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.contact-card {
  background: #0f172a;
  color: #fff;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list i {
  color: var(--brand-green);
  margin-right: 0.6rem;
}

.map-wrapper {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.form-card {
  background: #fff;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer {
  background: #0b1324;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-logo {
  height: 38px;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 46px;
  }

  .section {
    padding: 3.5rem 0;
  }
}
