:root {
  --bg: #f2f4f8;
  --surface: #ffffff;
  --text: #10213d;
  --muted: #53627c;
  --line: #d8dfeb;
  --accent: #0a48ff;
  --accent-2: #17b3a3;
  --radius: 20px;
  --shadow: 0 24px 60px rgba(16, 33, 61, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, #d9f0ff 0%, transparent 50%),
    radial-gradient(1200px 800px at 100% 10%, #e8e6ff 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: rgba(10, 72, 255, 0.2);
  top: 25%;
  left: -120px;
}

.orb-b {
  width: 280px;
  height: 280px;
  background: rgba(23, 179, 163, 0.2);
  top: 65%;
  right: -100px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(16, 33, 61, 0.09);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
}

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

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  color: white;
  background: linear-gradient(120deg, var(--accent), #1230c9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 72, 255, 0.25);
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 74px 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #38517a;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Archivo", sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
}

h2 {
  font-size: clamp(1.7rem, 4.3vw, 3rem);
}

h3 {
  font-size: 1.32rem;
}

.lead {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.7);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  gap: 18px;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 12px 35px rgba(16, 33, 61, 0.06);
}

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.card li {
  margin: 8px 0;
}

.wide-banner {
  background: linear-gradient(110deg, #0d2352 0%, #133489 62%, #0c87a5 100%);
  color: white;
  border-radius: calc(var(--radius) + 4px);
  padding: 36px;
  box-shadow: var(--shadow);
}

.wide-banner p {
  margin: 12px 0 0;
  opacity: 0.9;
  max-width: 68ch;
}

.testimonial p {
  color: var(--muted);
  margin: 12px 0 0;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(16, 33, 61, 0.08);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin-top: 14px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-grid a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(120deg, #f7f9ff 20%, #ffffff 100%);
  display: grid;
  gap: 2px;
}

.contact-grid span {
  color: #617398;
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  color: #4f6187;
}

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

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

@media (max-width: 1020px) {
  .site-header {
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    max-width: none;
  }

  .hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .three-cols,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav,
  .btn-small {
    display: none;
  }

  .section {
    padding: 54px 16px;
  }

  .hero-image {
    min-height: 380px;
  }

  .two-cols,
  .three-cols,
  .gallery {
    grid-template-columns: 1fr;
  }

  .wide-banner,
  .card,
  .contact-panel {
    padding: 22px;
  }
}
