:root {
  --blue-700: #0b3a75;
  --blue-600: #0f4ea6;
  --blue-500: #1a6ae0;
  --blue-200: #cfe2ff;
  --blue-100: #e5f0ff;
  --ink-900: #0c1220;
  --ink-700: #1c2436;
  --ink-500: #3e4a63;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 26, 61, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top, rgba(26, 106, 224, 0.18) 0%, #f5f9ff 45%, #ffffff 75%),
    linear-gradient(120deg, rgba(26, 106, 224, 0.2), rgba(15, 78, 166, 0.12));
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(26, 106, 224, 0.4), transparent 45%),
    radial-gradient(circle at 10% 70%, rgba(15, 78, 166, 0.28), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 106, 224, 0.2), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -2;
}

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

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

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

p {
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--ink-700);
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 10px 14px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 78, 166, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink-900);
}

.logo img {
  width: 140px;
  height: 64px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(11, 58, 117, 0.25));
}

.logo-text {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 26px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 999px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 600;
  color: var(--ink-700);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 106, 224, 0.25), rgba(26, 106, 224, 0.08));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.service-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink-900);
}

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

.lead {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(12, 18, 32, 0.2);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.6);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 78, 166, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 78, 166, 0.18);
}

.stat-number {
  display: block;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.media-card {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius-lg);
  background-image: linear-gradient(135deg, rgba(15, 78, 166, 0.75), rgba(26, 106, 224, 0.35)),
    var(--media-url);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: float 10s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 106, 224, 0.25), rgba(15, 78, 166, 0.85));
  z-index: 0;
}

.media-card:hover {
  transform: translateY(-6px) scale(1.01);
  animation-play-state: paused;
  box-shadow: 0 28px 60px rgba(11, 58, 117, 0.22);
}

.media-card.small {
  min-height: 200px;
  animation-delay: 1.5s;
}

.media-card.tall {
  min-height: 360px;
  animation-delay: 0.8s;
}

.media-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  z-index: 1;
}

.media-overlay h3 {
  margin-bottom: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-500));
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.image-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-grid .media-card.large {
  min-height: 380px;
}

@media (min-width: 900px) {
  .image-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-auto-rows: minmax(180px, auto);
  }

  .image-grid .media-card.large {
    grid-row: span 2;
  }
}

.section {
  padding: 84px 0;
}

.section-tint {
  background: linear-gradient(135deg, rgba(26, 106, 224, 0.18), rgba(15, 78, 166, 0.1));
  border-top: 1px solid rgba(26, 106, 224, 0.2);
  border-bottom: 1px solid rgba(26, 106, 224, 0.2);
}

.section-tint-light {
  background: linear-gradient(140deg, rgba(26, 106, 224, 0.24), rgba(255, 255, 255, 0.85));
}

.section-header {
  max-width: 620px;
  margin-bottom: 40px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.highlight-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.highlight {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 18, 32, 0.08);
}

.highlight-title {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.services {
  background: rgba(26, 106, 224, 0.12);
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 78, 166, 0.12);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(12, 18, 32, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  margin-bottom: 18px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(12, 18, 32, 0.12);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-700);
}

.process-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(15, 78, 166, 0.14);
  border: 1px solid rgba(15, 78, 166, 0.25);
}

.process-image-bg {
  position: relative;
  background-image: linear-gradient(135deg, rgba(15, 78, 166, 0.7), rgba(26, 106, 224, 0.45)),
    url("assets/4.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.process-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 32, 0.35);
  z-index: 0;
}

.process-image-bg .container {
  position: relative;
  z-index: 1;
}

.process-image-bg h2,
.process-image-bg p,
.process-image-bg .step-number {
  color: var(--white);
}

.process-image-bg .process-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.step-number {
  display: inline-flex;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.cta {
  padding-bottom: 96px;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(26, 106, 224, 0.3), rgba(15, 78, 166, 0.2));
  border: 1px solid rgba(26, 106, 224, 0.3);
}

.cta-inner h2,
.cta-inner p {
  color: var(--white);
}

.cta-inner .btn.primary {
  background: var(--white);
  color: var(--blue-700);
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(12, 18, 32, 0.08);
  background: linear-gradient(120deg, rgba(15, 78, 166, 0.9), rgba(26, 106, 224, 0.65));
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a {
  color: var(--white);
}

.footer-brand strong,
.footer-col strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col p {
  margin-bottom: 8px;
}

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 600;
}

.contact-hero {
  padding-bottom: 48px;
}

.contact-section {
  padding-top: 48px;
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.info-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 18, 32, 0.08);
  margin-top: 20px;
}

.info-note {
  margin-top: 20px;
  padding: 18px;
  background: rgba(15, 78, 166, 0.08);
  border-radius: var(--radius-md);
}

.contact-form-wrapper {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 18, 32, 0.08);
  box-shadow: 0 20px 50px rgba(12, 18, 32, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink-700);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid rgba(12, 18, 32, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--ink-500);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 72px;
    right: 24px;
    flex-direction: column;
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  body.nav-open .nav-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .hero {
    padding: 72px 0 48px;
  }

  .section {
    padding: 64px 0;
  }
}
