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

:root {
  --blue: #2a6db8;
  --blue-dark: #1a4a80;
  --teal: #38a8b5;
  --green: #62c040;
  --ink: #152033;
  --muted: #64748b;
  --line: #ddeaf0;
  --surface: #f0f8f2;
  --white: #ffffff;
  --max: 1100px;
  --r: 16px;
  --grad: linear-gradient(135deg, #2a6db8, #38a8b5, #62c040);
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ——— HEADER ——— */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--grad);
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

nav a {
  padding: 8px 13px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--blue-dark);
  background: var(--surface);
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 4px 16px rgba(42,109,184,0.3);
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42,109,184,0.38);
}

.btn-outline {
  background: white;
  color: var(--blue-dark);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--surface);
}

.btn-white {
  background: white;
  color: var(--blue-dark);
  font-weight: 800;
}
.btn-white:hover { background: var(--surface); }

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ——— BADGES ——— */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge-blue { background: rgba(50,106,162,0.08); color: var(--blue); border: 1px solid rgba(50,106,162,0.15); }
.badge-green { background: rgba(137,200,106,0.12); color: #3d8a1a; border: 1px solid rgba(137,200,106,0.25); }
.badge-orange { background: rgba(245,158,11,0.1); color: #b06c00; border: 1px solid rgba(245,158,11,0.2); }
.badge-teal { background: rgba(88,170,179,0.1); color: #2a7a83; border: 1px solid rgba(88,170,179,0.2); }

.dot-green::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #3d8a1a; }
.dot-blue::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ——— SECTIONS ——— */
.section {
  padding: 88px 24px;
}

.section-alt { background: var(--surface); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 48px;
  line-height: 1.65;
}

.divider {
  height: 1px;
  background: var(--line);
  max-width: 100%;
  margin: 0;
}

/* ——— CARDS ——— */
.card {
  background: white;
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  transition: all 0.2s;
}

.card:hover {
  border-color: rgba(50,106,162,0.3);
  box-shadow: 0 8px 32px rgba(50,106,162,0.09);
  transform: translateY(-2px);
}

/* ——— CTA SECTION ——— */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #2558a0 60%, var(--blue) 100%);
  padding: 88px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 44ch;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ——— FOOTER ——— */
footer {
  padding: 44px 24px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--blue); }

/* ——— PAGE HERO ——— */
.page-hero {
  background: linear-gradient(160deg, var(--surface) 0%, white 100%);
  border-bottom: 1px solid var(--line);
  padding: 72px 24px 60px;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 16px 0 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}

/* ——— COMING SOON ——— */
.coming-soon-block {
  text-align: center;
  padding: 72px 24px;
  border: 2px dashed var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.coming-soon-block .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.coming-soon-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.coming-soon-block p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  nav { display: none; }
  .section { padding: 60px 20px; }
  .page-hero { padding: 52px 20px 44px; }
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
