/* ==========================================================================
   Career Craft IT Technologies — Design System
   Palette: Deep Navy + Warm Gold
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #060d1f;
  --navy-800: #0b1730;
  --navy-700: #10203f;
  --navy-600: #172c53;
  --navy-500: #22406f;

  --gold-500: #f0a500;
  --gold-400: #ffb827;
  --gold-300: #ffd166;
  --gold-soft: #fff6e2;

  --ink-900: #0d1526;
  --ink-700: #33405a;
  --ink-500: #5d6a83;
  --ink-300: #99a3b5;

  --paper: #ffffff;
  --paper-alt: #f6f8fc;
  --line: #e3e8f1;

  --ok: #16a34a;

  /* Type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Space */
  --wrap: 1200px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(13, 21, 38, .06);
  --shadow-md: 0 12px 32px rgba(13, 21, 38, .10);
  --shadow-lg: 0 26px 60px rgba(13, 21, 38, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------- Reset / base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-700);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.55rem); }
h2 { font-size: clamp(1.72rem, 3.3vw, 2.55rem); }
h3 { font-size: clamp(1.14rem, 1.7vw, 1.4rem); }
p  { margin: 0 0 1.1em; }

::selection { background: var(--gold-300); color: var(--navy-900); }

/* ------------------------------------------------------------- Layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(60px, 8vw, 108px) 0; }
.section--tight { padding: clamp(46px, 5.5vw, 74px) 0; }
.section--alt { background: var(--paper-alt); }
.section--navy { background: var(--navy-800); color: #c8d3e6; }
.section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------- Section head */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold-400); }

.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head p { color: var(--ink-500); font-size: 1.05rem; margin-bottom: 0; }
.section--navy .sec-head p { color: #9fb0cb; }

/* ------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 10px 26px rgba(240, 165, 0, .32);
}
.btn--gold:hover { background: var(--gold-400); box-shadow: 0 16px 34px rgba(240, 165, 0, .42); }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-600); box-shadow: var(--shadow-md); }

.btn--ghost { border-color: rgba(255, 255, 255, .34); color: #fff; }
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }

.btn--outline { border-color: var(--line); color: var(--ink-900); background: #fff; }
.btn--outline:hover { border-color: var(--navy-800); }

.btn--sm { padding: 10px 20px; font-size: .86rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------- Header */
.topbar {
  background: var(--navy-900);
  color: #a9b7cf;
  font-size: .84rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 15px; height: 15px; stroke: var(--gold-500); flex: none; }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background .22s var(--ease);
}
.topbar__social a:hover { background: var(--gold-500); }
.topbar__social svg { width: 13px; height: 13px; stroke: #fff; }
.topbar__social a:hover svg { stroke: var(--navy-900); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-500));
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.03em;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--ink-900);
  letter-spacing: -.025em;
}
.brand__sub {
  font-size: .68rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-300);
  font-weight: 600;
}

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-700);
  padding: 10px 15px;
  border-radius: 9px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu > li > a:hover { color: var(--navy-800); background: var(--paper-alt); }
.nav__menu > li.is-active > a { color: var(--navy-800); }
.nav__menu > li.is-active > a::after {
  content: "";
  display: block;
  height: 3px; width: 20px;
  margin: 4px auto 0;
  border-radius: 3px;
  background: var(--gold-500);
}

.has-sub > a::after { content: " ▾"; font-size: .7em; opacity: .55; }
.subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 258px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .24s var(--ease);
}
.has-sub:hover .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: .92rem;
  color: var(--ink-700);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.subnav a:hover { background: var(--gold-soft); color: var(--navy-800); }

.nav__cta { display: flex; align-items: center; gap: 12px; flex: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  position: relative;
  transition: background .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 19px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.burger.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(240, 165, 0, .17), transparent 62%),
    radial-gradient(760px 420px at 6% 108%, rgba(34, 64, 111, .55), transparent 62%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 58%, var(--navy-600) 100%);
  color: #cfdaec;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0 clamp(70px, 8vw, 110px);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero__lead { font-size: 1.1rem; color: #b3c2da; max-width: 56ch; }
.hero__lead strong { color: #fff; font-weight: 600; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .83rem;
  font-weight: 600;
  color: #dbe4f2;
  margin-bottom: 22px;
}
.pill b {
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 3px 11px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero__facts {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  flex-wrap: wrap;
}
.hero__facts b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__facts span { font-size: .82rem; color: #8fa2be; }

/* Hero card */
.hero__card {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.hero__card h3 { color: #fff; margin-bottom: 6px; font-size: 1.24rem; }
.hero__card > p { font-size: .9rem; color: #9fb0cb; margin-bottom: 20px; }

.tracks { display: grid; gap: 10px; }
.track {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.track:hover {
  transform: translateX(5px);
  border-color: rgba(240, 165, 0, .45);
  background: rgba(240, 165, 0, .08);
}
.track__ico {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(240, 165, 0, .16);
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
}
.track__body { flex: 1; min-width: 0; }
.track__body b { display: block; color: #fff; font-size: .95rem; font-weight: 700; font-family: var(--font-head); }
.track__body span { font-size: .78rem; color: #8fa2be; }
.track__tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-400);
  border: 1px solid rgba(240, 165, 0, .35);
  padding: 3px 9px;
  border-radius: 999px;
  flex: none;
}

/* ------------------------------------------------------------- Marquee */
.marquee {
  background: var(--navy-900);
  padding: 15px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .07);
}
.marquee__track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: slide 26s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  color: #7f92ae;
  display: flex;
  align-items: center;
  gap: 46px;
  white-space: nowrap;
}
.marquee span::after { content: "◆"; color: var(--gold-500); font-size: .55rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* -------------------------------------------------------- Feature cards */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  height: 3px; width: 0;
  background: var(--gold-500);
  transition: width .38s var(--ease);
}
.feature:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::before { width: 100%; }
.feature__ico {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  margin-bottom: 20px;
}
.feature__ico svg { width: 25px; height: 25px; stroke: var(--gold-500); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .95rem; color: var(--ink-500); margin: 0; }

/* --------------------------------------------------------- Course cards */
.course {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.course:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.course__top {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  position: relative;
  overflow: hidden;
}
.course__top::after {
  content: "";
  position: absolute;
  right: -34px; top: -34px;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: rgba(240, 165, 0, .14);
}
.course__badge {
  position: relative; z-index: 2;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.62rem;
  color: #fff;
  letter-spacing: -.03em;
}
.course__lvl {
  position: relative; z-index: 2;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(240, 165, 0, .4);
  padding: 4px 11px;
  border-radius: 999px;
}
.course__body { padding: 26px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.course__body h3 { margin-bottom: 9px; font-size: 1.2rem; }
.course__body p { font-size: .93rem; color: var(--ink-500); flex: 1; }

.course__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  margin-top: 6px;
  border-top: 1px dashed var(--line);
  font-size: .82rem;
  color: var(--ink-500);
}
.course__meta span { display: flex; align-items: center; gap: 6px; }
.course__meta svg { width: 14px; height: 14px; stroke: var(--gold-500); flex: none; }

.course__link {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.course__link:hover { gap: 13px; color: var(--gold-500); }

/* ----------------------------------------------------------- About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }

.figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-500));
  min-height: 400px;
  display: grid;
  place-items: center;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.figure__stack { position: relative; z-index: 2; display: grid; gap: 14px; width: 100%; }
.figure__row {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  backdrop-filter: blur(6px);
}
.figure__row b { color: #fff; font-family: var(--font-head); font-size: .95rem; }
.figure__row i {
  font-style: normal;
  font-size: .78rem;
  color: var(--gold-400);
  font-weight: 700;
}
.figure__badge {
  position: absolute;
  z-index: 3;
  right: 24px; bottom: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: var(--font-head);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.figure__badge b { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.figure__badge span { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.ticks { display: grid; gap: 13px; margin: 26px 0 30px; }
.ticks li { display: flex; gap: 13px; align-items: flex-start; font-size: .97rem; }
.ticks svg { width: 21px; height: 21px; flex: none; margin-top: 3px; stroke: var(--ok); }
.section--navy .ticks li { color: #b8c6dc; }

/* ------------------------------------------------------------ Skill bars */
.skills { display: grid; gap: 20px; }
.skill__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.skill__label i { font-style: normal; color: var(--gold-500); }
.skill__bar { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; }
.skill__fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--navy-600), var(--gold-500));
  transition: width 1.35s var(--ease);
}

/* ---------------------------------------------------------------- Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat {
  padding: 30px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 9px;
}
.stat span { font-size: .87rem; color: #9fb0cb; }

/* -------------------------------------------------------------- Reasons */
.reason {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.reason:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.reason__n {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
}
.reason h3 { font-size: 1.08rem; margin-bottom: 6px; }
.reason p { font-size: .92rem; color: var(--ink-500); margin: 0; }

/* -------------------------------------------------------------- Partners */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.partner {
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-500);
  transition: all .26s var(--ease);
}
.partner:hover {
  color: var(--navy-800);
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ----------------------------------------------------------- Testimonials */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote__mark {
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: 6px;
}
.quote p { font-size: .98rem; color: var(--ink-700); font-style: italic; }
.quote__by { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.quote__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .92rem;
  flex: none;
}
.quote__by b { display: block; font-family: var(--font-head); color: var(--ink-900); font-size: .95rem; }
.quote__by span { font-size: .82rem; color: var(--ink-500); }
.stars { color: var(--gold-500); letter-spacing: .12em; font-size: .88rem; margin-bottom: 10px; }

/* --------------------------------------------------------------- Contact */
.cta-band {
  background:
    radial-gradient(700px 340px at 88% 10%, rgba(240, 165, 0, .2), transparent 60%),
    linear-gradient(140deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #a9bad4; margin: 0; max-width: 52ch; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 38px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 17px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .84rem;
  color: var(--ink-900);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink-900);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--paper-alt);
  transition: border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}
.field textarea { resize: vertical; min-height: 116px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 165, 0, .13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note { font-size: .82rem; color: var(--ink-300); margin: 14px 0 0; text-align: center; }
.form-ok {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 11px;
  background: #eefbf2;
  border: 1px solid #b9ebc9;
  color: #14743a;
  font-size: .9rem;
  font-weight: 600;
}
.form-ok.show { display: block; }

.info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card__ico {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--gold-soft);
}
.info-card__ico svg { width: 21px; height: 21px; stroke: var(--gold-500); }
.info-card h3 { font-size: 1rem; margin-bottom: 5px; }
.info-card p { font-size: .92rem; color: var(--ink-500); margin: 0; }
.info-card a:hover { color: var(--gold-500); }

/* ----------------------------------------------------------- Page banner */
.page-head {
  background:
    radial-gradient(760px 380px at 84% -10%, rgba(240, 165, 0, .16), transparent 62%),
    linear-gradient(150deg, var(--navy-900), var(--navy-600));
  color: #b3c2da;
  padding: clamp(52px, 6.5vw, 86px) 0;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 76%);
}
.page-head__inner { position: relative; z-index: 2; max-width: 760px; }
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head p { color: #9fb0cb; font-size: 1.05rem; margin: 0; }
.crumbs { font-size: .86rem; color: #8fa2be; margin-bottom: 16px; }
.crumbs a:hover { color: var(--gold-400); }
.crumbs span { color: var(--gold-400); }

/* ------------------------------------------------------------ Value card */
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value__ico {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 17px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-500));
}
.value__ico svg { width: 25px; height: 25px; stroke: var(--gold-400); }
.value p { font-size: .94rem; color: var(--ink-500); margin: 0; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-900); color: #8fa2be; padding-top: 66px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 50px;
}
.site-footer h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.site-footer p { font-size: .92rem; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { color: #6d7f9c; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .93rem; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer-links a:hover { color: var(--gold-400); padding-left: 5px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .92rem;
  line-height: 1.6;
}
.footer-contact svg { width: 17px; height: 17px; stroke: var(--gold-500); flex: none; margin-top: 4px; }
.footer-contact a:hover { color: var(--gold-400); }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  transition: background .24s var(--ease), transform .24s var(--ease);
}
.socials a:hover { background: var(--gold-500); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; stroke: #fff; }
.socials a:hover svg { stroke: var(--navy-900); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .86rem;
}
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------------------------------------------------------- Float / misc */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
  transition: transform .26s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; fill: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 980px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  .burger { display: grid; }
  .nav__cta .btn { display: none; }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 88vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 92px 20px 30px;
    box-shadow: -18px 0 46px rgba(13, 21, 38, .18);
    transform: translateX(100%);
    transition: transform .34s var(--ease);
    overflow-y: auto;
    z-index: 95;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > li > a { padding: 13px 14px; font-size: 1rem; }
  .nav__menu > li.is-active > a::after { margin: 4px 0 0; }
  .has-sub > a::after { display: none; }
  .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 2px 0 8px 16px;
    padding: 0 0 0 8px;
    min-width: 0;
  }
  .subnav a { padding: 8px 10px; font-size: .88rem; }

  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 31, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease);
    z-index: 94;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar__inner { justify-content: center; }
  .topbar__list { gap: 14px; justify-content: center; font-size: .78rem; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__facts { gap: 24px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .brand__sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
