:root {
  --bg: #eef4ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --text: #11203b;
  --muted: #5f6f8f;
  --brand-blue: #1452c7;
  --brand-gold: #d39434;
  --brand-gold-soft: rgba(211, 148, 52, 0.18);
  --accent: #f0c471;
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(20, 82, 199, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(211, 148, 52, 0.12), transparent 26%),
    linear-gradient(180deg, #eef4ff 0%, #f6f8fb 100%);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 32, 59, 0.08);
  box-shadow: 0 14px 30px rgba(18, 32, 59, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #12223e;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #4f65a9;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(18, 32, 59, 0.96);
  color: #f6f8fb;
  padding: 1rem 0;
  box-shadow: 0 -10px 30px rgba(18, 32, 59, 0.2);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #d8e2ff;
  max-width: 64rem;
}

.cookie-button {
  padding: 0.85rem 1.4rem;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner p {
    text-align: center;
  }
}

.site-nav a:hover {
  color: var(--brand-blue);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.partner-banner {
  padding: 1.5rem 0 2rem;
}

.partner-banner .container {
  overflow: hidden;
}

.marquee {
  position: relative;
  background: rgba(18, 32, 59, 0.08);
  border: 1px solid rgba(18, 32, 59, 0.12);
  border-radius: 999px;
  padding: 0.9rem 1rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scrollPartners 20s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(18, 32, 59, 0.08);
}

.marquee-item img {
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.hero h1,
.section-header h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.hero-copy,
.about p,
.contact p {
  max-width: 40rem;
  color: #334057;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-blue));
  color: #09101c;
  box-shadow: 0 18px 40px rgba(20, 82, 199, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(211, 148, 52, 0.12);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(16px);
}

.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text);
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.hero-panel li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

.services,
.about,
.contact {
  padding: 3.5rem 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 32, 59, 0.08);
  border-radius: 24px;
  padding: 1.8rem;
  min-height: 190px;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.about-inner ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.about-inner li {
  padding-left: 1rem;
  position: relative;
}

.about-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.stats-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  margin: 0;
  color: var(--brand-gold);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
  color: #334057;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 32, 59, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #12223e;
  padding: 1rem 1.1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a8dad;
}

.contact-form button {
  width: fit-content;
}

.form-note {
  font-size: 0.95rem;
  color: #8d9ac2;
  margin-top: 0.25rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .hero-content,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }
}
