﻿:root {
  --blue-900: #0a3a8c;
  --blue-800: #0f57b7;
  --blue-600: #1f7bd6;
  --blue-400: #5eb6ff;
  --blue-200: #cfe9ff;
  --gold-400: #f4c15d;
  --ink: #0b1b3a;
  --muted: #5a6a85;
  --bg: #f5f9ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 50, 120, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #eef5ff 45%, #dfeeff 100%);
}

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

.page {
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 90px;
  width: auto;
  filter: saturate(1.08) contrast(1.05) drop-shadow(0 10px 18px rgba(10, 58, 140, 0.2));
}

.brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
}

.brand .amp {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05em;
  position: relative;
  top: 1px;
  color: var(--blue-800);
}

.brand-location {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}


.nav nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-400));
  color: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 28px 60px rgba(14, 60, 140, 0.25);
}

.link {
  font-weight: 600;
  color: var(--blue-800);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 90px 6vw 70px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(94, 182, 255, 0.35), transparent 60%),
    radial-gradient(circle at 85% 10%, rgba(31, 123, 214, 0.25), transparent 55%),
    linear-gradient(120deg, rgba(10, 58, 140, 0.08), transparent 65%);
  animation: pulse 10s ease-in-out infinite;
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--blue-800);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.trust strong {
  font-size: 26px;
  color: var(--blue-800);
}

.trust span {
  display: block;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark {
  width: min(440px, 92%);
  height: auto;
  border-radius: 26px;
  box-shadow: var(--shadow);
  filter: saturate(1.1) contrast(1.08);
  animation: float 6s ease-in-out infinite;
}

.panel {
  padding: 70px 6vw;
}

.panel-title {
  max-width: 620px;
  margin-bottom: 36px;
}

.panel-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 12px;
}

.panel-title p {
  color: var(--muted);
  font-size: 16px;
}

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

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(10, 58, 140, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 58, 140, 0.18);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 123, 214, 0.12);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 600;
}

.tag.outline {
  background: transparent;
  border: 1px solid rgba(31, 123, 214, 0.4);
}

.process {
  background: var(--bg);
  border-radius: 30px;
  margin: 0 4vw;
}

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

.step {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(10, 58, 140, 0.12);
}

.step span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: var(--blue-800);
}

.step p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.contact {
  background: linear-gradient(130deg, rgba(10, 58, 140, 0.12), rgba(94, 182, 255, 0.22));
  border-radius: 32px;
  margin: 0 4vw 40px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.role {
  color: var(--muted);
  margin-bottom: 18px;
}

.location {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  font-weight: 600;
  color: var(--blue-800);
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 123, 214, 0.12);
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-800);
}

.contact-highlight {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.footer {
  padding: 30px 6vw 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  .nav nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .brand img {
    height: 68px;
  }
  .hero {
    padding-top: 60px;
  }

  .contact,
  .process {
    margin: 0 2vw 30px;
  }
}
