﻿:root {
  --blue-900: #0a2f66;
  --blue-700: #0e4ba8;
  --blue-500: #2978d9;
  --green-700: #0a8a6f;
  --green-500: #24b58d;
  --white: #ffffff;
  --ink: #06203f;
  --muted: #36506f;
  --surface: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.42);
  --shadow: 0 20px 45px rgba(5, 32, 68, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(41, 120, 217, 0.25), transparent 35%),
    radial-gradient(circle at 80% 15%, rgba(36, 181, 141, 0.28), transparent 35%),
    linear-gradient(145deg, #eff7ff, #eaf8f4 42%, #f8fdff);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: Sora, Manrope, sans-serif;
  margin: 0;
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(24px);
  z-index: -2;
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  width: 310px;
  height: 310px;
  top: -50px;
  left: -60px;
  background: rgba(41, 120, 217, 0.25);
}

.orb-2 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  right: -80px;
  background: rgba(36, 181, 141, 0.24);
  animation-delay: 1.5s;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(10, 47, 102, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 47, 102, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, black 15%, transparent 80%);
  pointer-events: none;
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-mini {
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--blue-900);
}

.cta {
  border: 1px solid rgba(10, 75, 168, 0.25);
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-700);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 75, 168, 0.2);
}

.hero {
  padding: 58px 0 44px;
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 -31px;
  color: var(--green-700);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.78rem;
}

.hero-left h1 {
  font-size: clamp(2rem, 3vw + 1rem, 4rem);
  line-height: 1.08;
  max-width: 16ch;
  color: #04244b;
}

.lead {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 0.7vw + 0.8rem, 1.18rem);
  line-height: 1.7;
}

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

.btn {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(130deg, var(--blue-700), var(--green-700));
  box-shadow: 0 14px 28px rgba(9, 93, 140, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(9, 93, 140, 0.4);
}

.btn-secondary {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(14, 75, 168, 0.24);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 77px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics li {
  background: var(--surface);
  backdrop-filter: blur(9px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-metrics strong {
  display: block;
  font-family: Sora, sans-serif;
  color: var(--blue-700);
  font-size: 1.3rem;
}

.hero-metrics span {
  font-size: 0.86rem;
  color: var(--muted);
}

.logo-stack {
  margin-left: auto;
  width: min(86%, 520px);
  display: grid;
  gap: 14px;
  justify-items: center;
}

.cards-stack {
  margin-left: auto;
  width: min(360px, 100%);
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.mini-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: min(300px, 100%);
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(5, 32, 68, 0.22);
}

.cards-stack .mini-card:nth-child(1) {
  justify-self: start;
}

.cards-stack .mini-card:nth-child(2) {
  justify-self: end;
}

.cards-stack .mini-card:nth-child(3) {
  justify-self: start;
}

.mini-card img {
  display: block;
  width: 100%;
  height: 162px;
  object-fit: cover;
}

.company-logo {
  width: min(100%, 623px);
  height: auto;
  object-fit: contain;
  margin-left:-32px;
}

.partner-logo {
  width: min(92%, 390px);
  height: auto;
  object-fit: contain;
}

.anniversary-logo {
  width: clamp(66px, 9vw, 92px);
  height: auto;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(7, 45, 88, 0.2);
  padding: 6px;
}

.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px 84px;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  align-items: start;
  gap: 20px;
}

.section-head h2 {
  margin-top: 40px;
  max-width: 24ch;
  font-size: clamp(1.6rem, 1.6vw + 1rem, 2.4rem);
}

.contact-badge {
  margin: -56px 0 0;
  width: clamp(260px, 24vw, 360px);
  aspect-ratio: 1/1;
}

.contact-badge img {
  width: 62%;
  height: auto;
  object-fit: cover;
  margin-top:20px;
}

.contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(6, 42, 81, 0.2);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--blue-700);
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 7px 0;
  color: #12385f;
  line-height: 1.55;
}

.contact-card a {
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--green-700);
}

.map-wrap {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(8px);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.reveal-up,
.reveal-right {
  opacity: 0;
}

.reveal-up {
  transform: translateY(28px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.82s cubic-bezier(0.2, 0.7, 0.1, 1), opacity 0.82s ease;
}

.stagger-1.is-visible { transition-delay: 0.05s; }
.stagger-2.is-visible { transition-delay: 0.12s;max-height: 278px; }
.stagger-3.is-visible { transition-delay: 0.18s; }
.stagger-4.is-visible { transition-delay: 0.24s; }

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-right {
    order: -1;
  }

  .logo-stack {
    margin: 0;
    width: min(80vw, 360px);
    gap: 10px;
  }

  .cards-stack {
    margin: 0;
    width: min(84vw, 360px);
    justify-items: center;
  }

  .mini-card img {
    height: 86px;
  }

  .partner-logo {
    width: min(90%, 300px);
  }

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

  .contact-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-badge {
    margin: 0;
    width: min(180px, 45vw);
  }

  .map-wrap iframe {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
