:root {
  --blue: #289cd3;
  --blue-dark: #0878ad;
  --blue-soft: #e6f5fb;
  --red: #d43139;
  --red-dark: #af2028;
  --ink: #17313d;
  --text: #3f535c;
  --muted: #6b7d85;
  --line: #dce6ea;
  --surface: #f4f8fa;
  --white: #fff;
  --shadow: 0 18px 50px rgba(23, 49, 61, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid rgba(40, 156, 211, .45); outline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, ul, ol { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  margin: 0 0 .85rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.55rem, 6vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 72px 0; }
.section-sm { padding: 46px 0; }
.surface { background: var(--surface); }
.dark { background: var(--ink); color: rgba(255,255,255,.78); }
.dark h2, .dark h3, .dark h4 { color: var(--white); }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack { display: grid; gap: 18px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 3px; background: var(--red); content: ""; }
.dark .eyebrow { color: #8fdcff; }
.lede { max-width: 720px; color: var(--muted); font-size: 1.13rem; }
.dark .lede { color: rgba(255,255,255,.72); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.section-heading > div:first-child { max-width: 760px; }
.section-heading p { max-width: 530px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: none; }

.topbar { background: var(--ink); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 36px; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--white); }
.topbar-note { color: #8fdcff; font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220,230,234,.85);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; min-height: 78px; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 204px; height: auto; }
.site-nav { display: flex; align-items: center; margin-left: auto; gap: 3px; }
.site-nav > a:not(.button) {
  position: relative;
  padding: 27px 11px 25px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 750;
}
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 11px;
  bottom: 18px;
  left: 11px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform .2s ease;
}
.site-nav > a:hover::after, .site-nav > a.active::after { transform: scaleX(1); }
.site-nav > a.active { color: var(--blue-dark); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: .2s ease;
}
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .025em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 10px 24px rgba(212,49,57,.24); }
.button-blue { background: var(--blue-dark); }
.button-blue:hover { background: #066b9b; box-shadow: 0 10px 24px rgba(8,120,173,.24); }
.button-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--blue); background: var(--blue-soft); color: var(--blue-dark); box-shadow: none; }
.dark .button-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.dark .button-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-sm { min-height: 42px; padding: 9px 15px; font-size: .78rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(33,157,211,.19), transparent 30%),
    linear-gradient(120deg, #fff 0%, #fff 52%, #f0f8fb 52%, #e7f4f9 100%);
}
.hero::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  opacity: .16;
  background-image: linear-gradient(rgba(8,120,173,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(8,120,173,.22) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); align-items: center; gap: 64px; min-height: 650px; padding: 58px 0; }
.hero h1 { max-width: 820px; }
.hero h1 span { color: var(--blue-dark); }
.hero-copy > p { max-width: 670px; margin-bottom: 26px; color: var(--muted); font-size: 1.16rem; }
.proof-row { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 28px; }
.proof-item { display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: .86rem; font-weight: 750; }
.proof-item::before { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue-dark); content: "✓"; }
.hero-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.hero-panel::before { position: absolute; top: -10px; right: 28px; width: 70px; height: 6px; border-radius: 10px; background: var(--red); content: ""; }
.hero-panel-label { color: var(--blue-dark); font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-panel h2 { margin-top: 8px; font-size: 1.7rem; }
.check-list { display: grid; gap: 0; margin: 18px 0 22px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 31px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.check-list li::before { position: absolute; left: 0; color: var(--blue-dark); content: "✓"; font-weight: 900; }
.urgent-card { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 18px; border-radius: 12px; background: var(--ink); color: var(--white); }
.urgent-card small { display: block; color: #8fdcff; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.urgent-card strong { font-size: 1rem; }
.urgent-card a { color: var(--white); font-size: 1.05rem; font-weight: 850; }

.value-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { padding: 24px 22px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item strong { display: block; color: var(--ink); font-size: 1rem; }
.value-item span { color: var(--muted); font-size: .82rem; }

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); border-color: #aed9ea; box-shadow: 0 14px 36px rgba(23,49,61,.09); }
.card-number { display: inline-block; margin-bottom: 22px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.card h3 { min-height: 2.45em; }
.card p { color: var(--muted); font-size: .94rem; }
.icon-tile { display: grid; width: 46px; height: 46px; margin-bottom: 18px; place-items: center; border-radius: 12px; background: var(--blue-soft); color: var(--blue-dark); font-weight: 900; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 58px; }
.split-media { position: relative; min-height: 460px; overflow: hidden; border-radius: 24px; background: var(--ink); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.split-media-crop img { transform: scale(1.55); transform-origin: center bottom; }
.media-badge { position: absolute; right: 22px; bottom: 22px; max-width: 240px; padding: 18px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
.media-badge strong { display: block; color: var(--ink); font-size: 1.08rem; }
.media-badge span { color: var(--muted); font-size: .8rem; }
.bullet-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.bullet-list li { position: relative; padding-left: 25px; }
.bullet-list li::before { position: absolute; top: .72em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--red); content: ""; }

.industry-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.industry-item { padding: 20px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); text-align: center; }
.industry-item img { width: 48px; height: 48px; margin: 0 auto 12px; object-fit: contain; }
.industry-item strong { display: block; color: var(--ink); font-size: .9rem; line-height: 1.25; }
.industry-item span { color: var(--muted); font-size: .73rem; }

.band { position: relative; overflow: hidden; background: var(--blue-dark); color: rgba(255,255,255,.82); }
.band::after { position: absolute; top: -90px; right: -80px; width: 320px; height: 320px; border: 55px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; }
.band .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 40px; padding-block: 50px; }
.band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.band p { max-width: 750px; }
.band-action { display: flex; justify-content: flex-end; }
.band .button { background: var(--white); color: var(--red); }
.band .button:hover { background: #f7fbfc; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: process; }
.process-step { position: relative; padding: 12px 30px 0 0; counter-increment: process; }
.process-step:not(:last-child)::after { position: absolute; top: 26px; right: 10px; width: calc(100% - 65px); height: 1px; transform: translateX(100%); background: var(--line); content: ""; }
.process-step::before { display: grid; width: 52px; height: 52px; margin-bottom: 18px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); content: "0" counter(process); font-size: .78rem; font-weight: 850; }
.process-step:nth-child(2)::before { background: var(--blue-dark); }
.process-step:nth-child(3)::before { background: var(--blue); }
.process-step:nth-child(4)::before { background: var(--red); }
.process-step p { color: var(--muted); font-size: .9rem; }

.quote-card { position: relative; padding: 30px; border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 30px rgba(23,49,61,.07); }
.quote-card::before { display: block; margin-bottom: 9px; color: var(--blue); content: "“"; font-family: Georgia, serif; font-size: 3.3rem; line-height: .7; }
.quote-card p { color: var(--ink); font-size: 1.03rem; }
.quote-card cite { color: var(--muted); font-size: .8rem; font-style: normal; font-weight: 750; }

.cta-box { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 32px; padding: 44px; border-radius: 24px; background: var(--ink); color: rgba(255,255,255,.76); }
.cta-box h2 { color: var(--white); }
.cta-box .button-row { justify-content: flex-end; }

.page-hero { padding: 62px 0 54px; background: linear-gradient(115deg, #eef8fc, #fff 65%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 930px; font-size: clamp(2.5rem, 5vw, 4.3rem); }
.page-hero .lede { margin-top: 16px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: .8rem; font-weight: 700; }
.breadcrumb a { color: var(--blue-dark); }

.service-detail { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.service-detail .service-num { color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.service-detail h3 { margin-bottom: 8px; }
.service-detail p { max-width: 850px; color: var(--muted); }
.aside-card { position: sticky; top: 110px; padding: 28px; border-radius: var(--radius); background: var(--ink); color: rgba(255,255,255,.74); }
.aside-card h3 { color: var(--white); }
.aside-card ul { padding-left: 18px; }
.aside-card .button { width: 100%; margin-top: 8px; }
.content-with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 55px; align-items: start; }

.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.criteria-item { display: flex; gap: 14px; padding: 19px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.criteria-item b { display: grid; flex: 0 0 auto; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue-dark); font-size: .75rem; }
.criteria-item strong { display: block; color: var(--ink); }
.criteria-item span { color: var(--muted); font-size: .85rem; }
.timeline { display: grid; gap: 0; }
.timeline-item { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding-bottom: 26px; }
.timeline-item::before { position: absolute; top: 44px; bottom: 0; left: 25px; width: 2px; background: var(--line); content: ""; }
.timeline-item:last-child::before { display: none; }
.timeline-marker { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--blue-dark); color: var(--white); font-size: .78rem; font-weight: 900; }
.timeline-item p { color: var(--muted); }

.training-card { overflow: hidden; padding: 0; }
.training-card .training-top { padding: 28px; background: var(--ink); }
.training-card .training-top h3 { color: var(--white); }
.training-card .training-top p { color: rgba(255,255,255,.66); }
.training-card .training-body { padding: 25px 28px 28px; }

.event-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 30px; }
.event-nav a { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-size: .82rem; font-weight: 800; }
.event-nav a:hover, .event-nav a.active { border-color: var(--blue); background: var(--blue-soft); color: var(--blue-dark); }
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.event-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.event-card:hover { transform: translateY(-4px); border-color: #aed9ea; box-shadow: 0 14px 36px rgba(23,49,61,.09); }
.event-card-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 20px; background: var(--ink); color: var(--white); }
.event-date { display: flex; align-items: center; gap: 10px; }
.event-date strong { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 10px; background: var(--white); color: var(--red); font-size: 1.12rem; line-height: 1; }
.event-date span { font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.event-format { padding: 5px 9px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #a5e3ff; font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.event-card-body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.event-kicker { margin-bottom: 8px; color: var(--blue-dark); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.event-card h3 { min-height: 2.4em; font-size: 1.22rem; }
.event-card p { color: var(--muted); font-size: .9rem; }
.event-meta { display: grid; gap: 8px; margin: 12px 0 18px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-meta div { display: flex; justify-content: space-between; gap: 15px; font-size: .8rem; }
.event-meta span { color: var(--muted); }
.event-meta strong { color: var(--ink); text-align: right; }
.event-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; }
.event-price { color: var(--ink); font-size: 1.5rem; font-weight: 900; letter-spacing: -.03em; }
.event-price small { display: block; color: var(--muted); font-size: .68rem; font-weight: 650; letter-spacing: 0; }
.sample-badge { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 20px; padding: 7px 11px; border-radius: 8px; background: #fff5d9; color: #7d5d00; font-size: .74rem; font-weight: 800; }
.sample-badge::before { content: "Demo"; padding: 2px 6px; border-radius: 4px; background: #f0c64e; color: #433100; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.purchase-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px; }
.purchase-step { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.purchase-step b { display: block; margin-bottom: 7px; color: var(--red); font-size: .72rem; letter-spacing: .1em; }
.purchase-step strong { display: block; color: var(--ink); font-size: .92rem; }
.purchase-step span { color: var(--muted); font-size: .78rem; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 50px; align-items: start; }
.checkout-form { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.order-card { position: sticky; top: 110px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(23,49,61,.08); }
.order-card-head { padding: 22px 24px; background: var(--ink); color: var(--white); }
.order-card-head span { color: #8fdcff; font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.order-card-head h2 { margin: 5px 0 0; color: var(--white); font-size: 1.35rem; }
.order-card-body { padding: 24px; }
.order-details { display: grid; gap: 10px; margin-bottom: 20px; }
.order-details div, .order-total { display: flex; justify-content: space-between; gap: 20px; font-size: .84rem; }
.order-details span { color: var(--muted); }
.order-details strong { color: var(--ink); text-align: right; }
.order-total { align-items: end; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 850; }
.order-total strong { font-size: 1.8rem; line-height: 1; }
.quantity-row { display: grid; grid-template-columns: 1fr 100px; align-items: end; gap: 18px; margin: 20px 0; }
.quantity-row input { text-align: center; }
.secure-note { display: flex; gap: 10px; margin-top: 15px; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.secure-note::before { flex: 0 0 auto; color: var(--blue-dark); content: "✓"; font-weight: 900; }
.demo-banner { margin-bottom: 26px; padding: 15px 17px; border: 1px solid #ecd27c; border-radius: 11px; background: #fff8df; color: #6f5600; font-size: .86rem; }
.demo-banner strong { color: #493800; }
.checkout-steps { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; color: var(--muted); font-size: .74rem; font-weight: 750; }
.checkout-steps span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--surface); color: var(--ink); }
.checkout-steps span.active { background: var(--blue-dark); color: var(--white); }
.confirmation-panel { max-width: 780px; margin: 0 auto; padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.confirmation-icon { display: grid; width: 64px; height: 64px; margin-bottom: 22px; place-items: center; border-radius: 50%; background: #e6f7ed; color: #17663a; font-size: 1.7rem; font-weight: 900; }
.confirmation-summary { display: grid; gap: 10px; margin: 26px 0; padding: 22px; border-radius: 13px; background: var(--surface); }
.confirmation-summary div { display: flex; justify-content: space-between; gap: 20px; }
.confirmation-summary span { color: var(--muted); }
.confirmation-summary strong { color: var(--ink); text-align: right; }

.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; background: var(--surface); }
.team-card-body { padding: 15px; }
.team-card h3 { margin-bottom: 4px; font-size: .96rem; }
.team-card p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.team-card a { display: block; overflow: hidden; margin-top: 8px; color: var(--blue-dark); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.value-card { padding: 23px; border-left: 4px solid var(--blue); background: var(--surface); }
.value-card:nth-child(2n) { border-color: var(--red); }
.value-card h3 { font-size: 1.05rem; }
.value-card p { color: var(--muted); font-size: .87rem; }

.resource-list { display: grid; gap: 12px; }
.resource-link { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 20px; padding: 21px 23px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.resource-link h3 { margin-bottom: 3px; font-size: 1rem; }
.resource-link p { margin: 0; color: var(--muted); font-size: .84rem; }
.resource-link > span { color: var(--blue-dark); font-weight: 850; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: start; }
.contact-card { padding: 28px; border-radius: var(--radius); background: var(--ink); color: rgba(255,255,255,.72); }
.contact-card h2, .contact-card h3 { color: var(--white); }
.contact-group { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-group:last-child { border-bottom: 0; }
.contact-label { display: block; color: #8fdcff; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card a { color: var(--white); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--ink); font-size: .82rem; font-weight: 800; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid #cbd9df;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea { min-height: 145px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(33,157,211,.13); }
.form-group input[type="checkbox"] { width: auto; padding: 0; accent-color: var(--blue-dark); box-shadow: none; }
.form-note { color: var(--muted); font-size: .78rem; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
.form-alert { display: none; margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-weight: 700; }
.form-alert.visible { display: block; }
.form-alert.success { background: #e6f7ed; color: #17663a; }
.form-alert.error { background: #fdebec; color: #942129; }

details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 20px 38px 20px 0; color: var(--ink); font-weight: 800; list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 20px; right: 5px; color: var(--blue-dark); content: "+"; font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details > div { max-width: 800px; padding: 0 0 20px; color: var(--muted); }

.site-footer { padding: 56px 0 22px; background: #102833; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 42px; }
.footer-brand img { width: 210px; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; font-size: .88rem; }
.footer-title { margin-bottom: 13px; color: var(--white); font-size: .77rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; font-size: .86rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact { font-size: .86rem; }
.footer-contact a { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); font-weight: 800; }

@media (max-width: 1020px) {
  .topbar-note { display: none; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; max-height: calc(100vh - 78px); overflow-y: auto; margin: 0; padding: 15px 20px 24px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 30px rgba(23,49,61,.12); }
  .menu-open .site-nav { display: grid; }
  .site-nav > a:not(.button) { padding: 12px 5px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr .72fr; gap: 34px; }
  .hero h1 { font-size: clamp(2.55rem, 6vw, 4rem); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .purchase-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 52px 0; }
  .section-sm { padding: 38px 0; }
  .topbar .container { min-height: 40px; justify-content: center; }
  .topbar-links { gap: 15px; }
  .topbar-links a:first-child { display: none; }
  .header-inner { min-height: 70px; }
  .brand img { width: 178px; }
  .site-nav { max-height: calc(100vh - 70px); }
  .hero { background: linear-gradient(135deg, #fff, #eef8fc); }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 52px 0; }
  .hero-panel { padding: 23px; }
  .proof-row { gap: 10px 18px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-bottom: 1px solid var(--line); }
  .value-item:nth-child(2n) { border-right: 0; }
  .value-item:nth-last-child(-n+2) { border-bottom: 0; }
  .grid-2, .grid-3, .grid-4, .split, .band .container, .content-with-aside, .contact-layout, .cta-box { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading .button { margin-top: 16px; }
  .split { gap: 30px; }
  .split-media, .split-media img { min-height: 330px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .band-action, .cta-box .button-row { justify-content: flex-start; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-step { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 0; }
  .process-step::before { grid-row: 1 / 3; margin: 0; }
  .process-step::after { display: none; }
  .process-step h3 { margin-top: 5px; }
  .process-step p { grid-column: 2; }
  .cta-box { padding: 30px; }
  .content-with-aside { gap: 32px; }
  .aside-card { position: static; }
  .criteria-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid, .purchase-steps, .checkout-layout { grid-template-columns: 1fr; }
  .order-card { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  h1 { font-size: 2.42rem; }
  .button-row .button { width: 100%; }
  .proof-row { display: grid; }
  .urgent-card { align-items: flex-start; flex-direction: column; }
  .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: auto !important; }
}

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