@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800;900&family=Newsreader:opsz,wght@6..72,600;6..72,700&display=swap");

/* Premium training and consulting website design system */
:root {
  --ink: #07111f;
  --navy: #0a2342;
  --blue: #0f4c81;
  --sky: #2aa9e0;
  --gold: #d7a13d;
  --cream: #f8f3e8;
  --mist: #edf4f8;
  --surface: #ffffff;
  --muted: #5d6b7a;
  --line: rgba(10, 35, 66, 0.12);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
  --shadow-lg: 0 34px 110px rgba(7, 17, 31, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(10, 35, 66, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 66, .035) 1px, transparent 1px),
    radial-gradient(circle at 15% 4%, rgba(42, 169, 224, 0.18), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fb 42%, #ffffff 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.announcement {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 9px 18px;
  color: rgba(255,255,255,.86);
  background: linear-gradient(90deg, #07111f, #0f4c81, #07111f);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.announcement a { color: #f7d786; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  backdrop-filter: blur(18px);
}
.site-nav { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--sky)); font-weight: 900; box-shadow: 0 12px 26px rgba(15, 76, 129, .24); }
.nav-links { display: flex; gap: 24px; color: #35465a; font-size: 14px; font-weight: 650; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width 180ms ease; }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); box-shadow: 0 12px 30px rgba(10, 35, 66, 0.24); }
.btn-gold { color: #1c1608; background: linear-gradient(135deg, #f2d083, var(--gold)); box-shadow: 0 12px 28px rgba(215, 161, 61, 0.28); }
.btn-ghost { color: var(--navy); background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); }

.hero { position: relative; overflow: hidden; padding: 88px 0 52px; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10, 35, 66, 0.06), transparent 55%); pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(215, 161, 61, .24), transparent 62%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: 42px; }
.eyebrow, .kicker { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 14px; letter-spacing: -0.045em; line-height: 1.03; color: var(--ink); }
h1 { font-size: clamp(44px, 7vw, 78px); }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: 22px; letter-spacing: -0.025em; }
h1 em, h2 em { font-family: "Newsreader", serif; font-style: normal; color: var(--blue); letter-spacing: -0.055em; }
p { margin: 0 0 14px; color: var(--muted); line-height: 1.75; font-size: 16px; }
.lead { max-width: 720px; font-size: 19px; color: #405166; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.hero-panel {
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(10, 35, 66, .95), rgba(15, 76, 129, .9)),
    radial-gradient(circle at 30% 20%, rgba(42, 169, 224, .5), transparent 22rem);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  color: #fff;
  transform: rotate(1deg);
}
.hero-panel > * { transform: rotate(-1deg); }
.carousel { position: relative; display: flex; min-height: 100%; flex-direction: column; justify-content: flex-end; color: #fff; z-index: 1; }
.carousel::before {
  content: "TRAINING IMPACT";
  position: absolute;
  top: 4px;
  right: 2px;
  color: rgba(255, 255, 255, .12);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.carousel h1, .carousel h2, .carousel p { color: #fff; }
.carousel h1 { font-size: clamp(34px, 4vw, 54px); }
.event-meta { display: inline-flex; width: fit-content; margin: 0 0 16px; padding: 8px 12px; border-radius: 999px; color: #dff7ff !important; background: rgba(255, 255, 255, .13); }
.dots { display: flex; gap: 8px; margin-top: 20px; }
.dot { width: 34px; height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .35); border: 0; cursor: pointer; }
.dot.active { background: var(--gold); }

.trust-strip { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(7,17,31,.06); transition: transform 180ms ease, box-shadow 180ms ease; }
.metric:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(7,17,31,.1); }
.metric strong { display: block; color: var(--navy); font-size: 28px; letter-spacing: -0.04em; }
.metric span { color: var(--muted); font-size: 13px; font-weight: 700; }

.section { padding: 74px 0; }
.section-muted { background: linear-gradient(180deg, rgba(237, 244, 248, .72), rgba(255,255,255,.78)); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section-head p { max-width: 560px; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--sky), var(--gold)); opacity: .86; }
.card:hover { transform: translateY(-6px); border-color: rgba(215, 161, 61, .38); box-shadow: 0 26px 70px rgba(7,17,31,.12); }
.card-label { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.feature-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; color: #34465a; line-height: 1.55; }
.feature-list li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; margin-top: 9px; border-radius: 999px; background: var(--gold); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}
.statement {
  padding: 34px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #123d68);
  box-shadow: var(--shadow);
}
.statement p, .statement h2 { color: #fff; }
.timeline { display: grid; gap: 14px; counter-reset: step; }
.timeline-item { counter-increment: step; display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start; padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.timeline-item::before { content: counter(step, decimal-leading-zero); display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: #fff; background: var(--navy); font-weight: 900; }

.event-card { display: grid; gap: 12px; }
.event-date { color: var(--blue); font-weight: 900; }
.quote { font-size: 18px; color: #203348; }
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #22364e;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7,17,31,.055);
}
.capability-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.capability-pill {
  padding: 13px 16px;
  border-radius: 14px;
  color: #10263c;
  background: linear-gradient(135deg, #fff, #eef7fb);
  border: 1px solid var(--line);
  font-weight: 850;
}
.premium-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(215, 161, 61, .36), transparent 18rem),
    linear-gradient(135deg, #07111f, #0a2342 55%, #0f4c81);
  box-shadow: var(--shadow-lg);
}
.premium-panel h2, .premium-panel h3, .premium-panel p { color: #fff; }
.premium-panel::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(7,17,31,.055);
}
.faq-item h3 { margin-bottom: 8px; }
.cta-band {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--cream), #ffffff);
  border: 1px solid rgba(215, 161, 61, .32);
  box-shadow: var(--shadow);
}
.page-hero { padding: 72px 0 38px; }
.page-hero .lead { max-width: 760px; }

.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-item { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.site-footer { margin-top: 42px; padding: 46px 0; color: rgba(255,255,255,.74); background: #07111f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.74); }
.site-footer strong { color: #fff; }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 380px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .grid3, .grid2 { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .nav-links { display: none; }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .site-nav { min-height: 72px; }
  .site-nav .btn { display: none; }
  .hero { padding-top: 46px; }
  .hero-panel, .statement, .cta-band { border-radius: 22px; padding: 24px; }
  .trust-strip { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
}
