:root {
  --primary: #0b1f3a;
  --secondary: #165dff;
  --accent: #16a34a;
  --gold: #f59e0b;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f5f7fb;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef3fb 0%, #ffffff 30%, #f7f9fc 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding: 0.7rem 0;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), #0f3ea8);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand-copy strong {
  display: block;
  font-size: 1.05rem;
  color: var(--primary);
}

.brand-copy span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
}

.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #0b3bc2);
  color: white;
  box-shadow: 0 16px 35px rgba(22,93,255,0.25);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: #9bd2ff;
  top: -80px;
  right: -120px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: #bdf4cb;
  bottom: -60px;
  left: -80px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(22,93,255,0.08);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.05;
  color: var(--primary);
}

.hero p.lead,
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, #0f274d, #09162d);
  color: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.22);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37,99,235,0.55), transparent 70%);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.7rem;
}

section {
  padding: 2rem 0;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-title h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--primary);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1rem;
}

.info-box,
.card,
.feature-card,
.service-card,
.team-card,
.article-card,
.contact-card,
.value-card,
.timeline-card,
.partner-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-box {
  padding: 1.4rem;
}

.info-box strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.services-grid,
.features-grid,
.values-grid,
.team-grid,
.article-grid,
.contact-grid,
.partner-grid,
.stats-grid {
  display: grid;
  gap: 1.2rem;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.features-grid,
.values-grid,
.article-grid,
.partner-grid,
.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid,
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.feature-card,
.value-card,
.article-card,
.partner-card,
.team-card,
.contact-card,
.timeline-card {
  padding: 1.6rem;
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--secondary), #2ea8ff);
}

.service-card h3,
.feature-card h3,
.value-card h3,
.team-card h3,
.article-card h3,
.contact-card h3,
.timeline-card h3,
.partner-card h3 {
  margin: 0 0 0.7rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.service-card ul,
.check-list,
.article-meta,
.contact-list,
.timeline-list {
  padding-left: 1.05rem;
  margin: 0.8rem 0 0;
}

.check-list li,
.service-card li,
.timeline-list li {
  margin-bottom: 0.5rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.partner-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem;
  display: grid;
  place-items: center;
  min-height: 110px;
  box-shadow: var(--shadow);
}

.partner-logo img {
  max-height: 56px;
  object-fit: contain;
}

.dark-band {
  background: linear-gradient(135deg, var(--primary), #071222);
  color: white;
  border-radius: 30px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.dark-band::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.35), transparent 70%);
  right: -90px;
  top: -90px;
}

.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band li {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 4rem 0 2.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.team-avatar {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.team-role {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.kpi {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.12);
  background: white;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.map-box iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 22px;
}

.notice {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-weight: 600;
}

.notice.success {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.notice.error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem 2rem;
  background: linear-gradient(135deg, rgba(22,93,255,0.1), rgba(22,163,74,0.08));
  border: 1px solid rgba(22,93,255,0.12);
  border-radius: 24px;
}

.footer {
  margin-top: 3rem;
  background: #071222;
  color: rgba(255,255,255,0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 1.4rem;
  padding: 3rem 0;
}

.footer h4 {
  color: white;
  margin-top: 0;
}

.footer a {
  color: rgba(255,255,255,0.84);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  font-size: 0.95rem;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .footer-grid,
  .features-grid,
  .values-grid,
  .article-grid,
  .partner-grid,
  .stats-grid,
  .services-grid,
  .team-grid,
  .contact-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.show {
    display: flex;
  }

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

  .hero {
    padding-top: 3.5rem;
  }
}
