@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,600;0,700;0,900;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --bg:       #ffffff;
  --text:     #111827;
  --muted:    #6b7280;
  --border:   #e5e7eb;
  --dark:     #0c1f3f;
  --navy:     #0c1f3f;
  --navy2:    #162d56;
  --brand:    #1a4790;
  --accent:   #f5a623;
  --gold:     #f5a623;
  --gold2:    #e8920d;
  --sky:      #e8f1fb;
  --muted2:   #64748b;
  --border2:  rgba(12,31,63,.10);
  --radius:   18px;
  --shadow:   0 18px 45px rgba(12,31,63,.10);
}

/* ── RESET ── */
* { box-sizing: border-box; }

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }

/* ── LAYOUT ── */
.container-xl { max-width: 1160px; }

/* ── NAVBAR ── */
.navbar-premium {
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid rgba(26,71,144,.20);
}
.navbar-premium .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: .93rem;
  transition: color .2s;
}
.navbar-premium .nav-link:hover { color: var(--gold2) !important; }
a.nav-link.active {
  color: var(--navy) !important;
  font-weight: 700;
  position: relative;
}
a.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-premium {
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 700;
  font-size: .93rem;
  border: 1.5px solid transparent;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-premium:hover { transform: translateY(-1px); }

.btn-accent {
  background: var(--gold);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(245,166,35,.30);
}
.btn-accent:hover {
  background: var(--gold2);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(245,166,35,.40);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.30);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
}

/* ── HERO (legacy, used in index) ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url('/assets/img/clouds.png') center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,31,63,.80), rgba(12,31,63,.35));
}
.hero .inner {
  position: relative;
  padding: 80px 0;
}
.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.10;
}
.hero p {
  color: rgba(255,255,255,.82);
  max-width: 680px;
  font-size: 1.05rem;
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }

.section-title {
  text-align: center;
  margin-bottom: 26px;
}
.section-title .kicker {
  color: var(--gold2);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}
.section-title h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--navy);
}

/* ── CARDS ── */
.card-soft {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.card-soft.pad { padding: 22px; }

/* ── MASONRY ── */
.masonry {
  columns: 4 220px;
  column-gap: 16px;
}
.masonry .item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(12,31,63,.10);
}
.masonry img {
  width: 100%; display: block;
  transform: scale(1);
  transition: transform .25s ease;
}
.masonry .item:hover img { transform: scale(1.03); }

/* ── AVATAR ── */
.avatar {
  width: 68px; height: 68px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(12,31,63,.15);
}

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.split.reverse { grid-template-columns: .85fr 1.15fr; }
.split .img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split .img img { width: 100%; display: block; }

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  height: 100%;
}
.testimonial .name { font-weight: 800; }
.testimonial .role { color: var(--muted); font-size: .9rem; }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  background: url('/assets/img/cta.jpg') center / cover no-repeat;
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(12,31,63,.65);
}
.cta-band .content {
  position: relative;
  padding: 64px 40px;
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.70);
  padding: 48px 0;
  margin-top: 60px;
}
.footer a { color: rgba(255,255,255,.80); }
.footer a:hover { color: var(--gold); }

/* ── BADGES ── */
.badge {
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.bg-azure-lt  { background: #dbeafe; color: #1e40af; }
.bg-orange-lt { background: #fff7ed; color: #c2410c; }
.bg-green-lt  { background: #dcfce7; color: #166534; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .cta-band .content { padding: 40px 24px; }
}