/*
 * GigaTech Solution — design system
 * Tokens, base styles and components, extracted from preview.html.
 */

:root {
  --navy-950: #041329;
  --navy-900: #071b38;
  --navy-850: #0a2347;
  --navy-800: #0d2d57;
  --blue-600: #1677ff;
  --blue-500: #2196f3;
  --cyan-500: #12b8e8;
  --green-500: #42c981;
  --green-400: #61d99a;
  --ink-900: #0b1930;
  --ink-700: #34445d;
  --ink-600: #506078;
  --ink-500: #69778d;
  --line: #dbe4f0;
  --surface: #f4f8fc;
  --surface-2: #eef5fb;
  --white: #ffffff;
  --success-bg: #eafaf1;
  --shadow-sm: 0 10px 30px rgba(5, 27, 57, .08);
  --shadow-md: 0 24px 70px rgba(5, 27, 57, .14);
  --shadow-lg: 0 34px 100px rgba(5, 27, 57, .22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-h: 82px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font-sans: "Aptos", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.025em;
}
p:last-child { margin-bottom: 0; }

.sr-only,
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 110px 0; }
.section--soft { background: var(--surface); }
.section--dark { color: var(--white); background: var(--navy-900); }

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500));
}

.section--dark .eyebrow { color: #7fd6ff; }

.section-title {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.center .section-title { margin-inline: auto; }
.section--dark .section-title { color: var(--white); }

.section-copy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -.01em;
}

.center .section-copy { margin-inline: auto; }
.section--dark .section-copy { color: #b9c8db; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .005em;
  line-height: 1.2;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease, color .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(33, 150, 243, .3); outline-offset: 3px; }

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 16px 30px rgba(22, 119, 255, .24);
}

.btn-primary:hover { box-shadow: 0 20px 36px rgba(22, 119, 255, .34); }

.btn-secondary {
  color: var(--ink-900);
  border-color: var(--line);
  background: var(--white);
}

.btn-secondary:hover { border-color: #b8c9de; box-shadow: var(--shadow-sm); }

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-sm { min-height: 44px; padding: 11px 16px; border-radius: 12px; font-size: 14px; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  border-radius: 10px;
  background: var(--navy-900);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(7, 27, 56, .82);
  backdrop-filter: blur(18px);
  transition: height .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 27, 56, .96);
  box-shadow: 0 14px 34px rgba(2, 13, 30, .18);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-logo,
.custom-logo {
  width: 135px;
  height: auto;
  object-fit: contain;
  transition: width .25s var(--ease);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-scrolled .custom-logo {
  width: 110px;
}

.footer-brand .brand-logo,
.footer-brand .custom-logo {
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .16);
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-size: 18px; font-weight: 650; letter-spacing: -.015em; }
.brand-tagline { margin-top: 5px; color: #93aecb; font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }

.nav-link,
.nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 10px 11px;
  color: #d9e5f2;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link:focus-visible,
.nav-trigger:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.nav-trigger .icon { width: 15px; height: 15px; transition: transform .2s ease; }

.nav-item:hover .nav-trigger .icon,
.nav-item:focus-within .nav-trigger .icon { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: 630px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  color: var(--ink-900);
  border: 1px solid rgba(219, 228, 240, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s var(--ease), visibility .2s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px;
  border-radius: 14px;
  transition: background .2s ease, transform .2s var(--ease);
}

.mega-link:hover { background: var(--surface); transform: translateX(2px); }

.mega-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-600);
  border-radius: 11px;
  background: #eaf3ff;
}

.mega-icon .icon { width: 19px; height: 19px; }
.mega-copy { display: grid; }
.mega-copy strong { margin-bottom: 3px; font-size: 14px; font-weight: 650; letter-spacing: -.01em; }
.mega-copy span { color: var(--ink-500); font-size: 12px; line-height: 1.45; }

.header-actions { display: flex; align-items: center; gap: 9px; }
.portal-link { color: #c9d9ea; font-size: 13px; font-weight: 600; }
.portal-link:hover { color: var(--white); }
.header-cart {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 11px;
  color: #e9f2fb;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s var(--ease);
}
.header-cart:hover { color: var(--white); border-color: rgba(127,214,255,.35); background: rgba(255,255,255,.12); transform: translateY(-1px); }
.header-cart .icon { width: 18px; height: 18px; }
.header-cart-count { display: grid; min-width: 20px; height: 20px; place-items: center; padding: 0 5px; color: var(--navy-950); border-radius: 999px; background: var(--green-400); font-size: 11px; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; padding: 0; color: var(--white); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(255,255,255,.07); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  z-index: 999;
  inset: var(--header-h) 0 0;
  display: none;
  overflow-y: auto;
  padding: 20px;
  color: var(--white);
  background: rgba(4, 19, 41, .985);
}

.mobile-nav.is-open { display: block; }
.mobile-nav-inner { width: min(100%, 560px); margin: 0 auto; padding-bottom: 30px; }
.mobile-nav-list { margin: 0; padding: 0; list-style: none; }
.mobile-link, .mobile-submenu-trigger {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  color: #e9f2fb;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent;
  font-size: 18px;
  font-weight: 750;
  text-align: left;
}

.mobile-submenu-trigger .icon { transition: transform .2s ease; }
.mobile-submenu-trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }
.mobile-submenu { display: none; padding: 8px 0 10px 12px; }
.mobile-submenu.is-open { display: grid; }
.mobile-submenu a { padding: 10px 8px; color: #b8cce1; border-radius: 9px; font-size: 14px; font-weight: 650; }
.mobile-submenu a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-actions { display: grid; gap: 10px; margin-top: 22px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 70px) 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 184, 232, .23), transparent 26%),
    radial-gradient(circle at 72% 72%, rgba(66, 201, 129, .14), transparent 26%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, #0b2c55 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent 2%, #000 44%, #000 100%);
}

.hero::after {
  right: -180px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.015);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 66px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #cce8ff;
  border: 1px solid rgba(127, 214, 255, .22);
  border-radius: 999px;
  background: rgba(23, 123, 215, .12);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 6px rgba(97, 217, 154, .12);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(56px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.04em;
  text-wrap: pretty;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(95deg, #6fdcff, #5c9dff 50%, #6ade9e);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: #b9cce1;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.58;
  letter-spacing: -.01em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 31px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #9fb4cb;
  font-size: 13px;
  font-weight: 600;
}

.proof-item { display: inline-flex; align-items: center; gap: 8px; }
.proof-item .icon { width: 17px; height: 17px; color: var(--green-400); }

.hero-visual { position: relative; min-height: 520px; }

.visual-glow {
  position: absolute;
  top: 10%;
  left: 12%;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,.28), rgba(33,150,243,0) 70%);
  filter: blur(20px);
}

.browser-card {
  position: absolute;
  top: 45px;
  right: 0;
  width: min(100%, 510px);
  overflow: hidden;
  color: var(--ink-900);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.3deg);
  animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(1.3deg); }
  50% { transform: translateY(-12px) rotate(.4deg); }
}

.browser-top {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid #e8eef5;
  background: #f8fbfe;
}

.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: #c7d4e2; }
.browser-address { width: 52%; height: 11px; margin-left: 10px; border-radius: 30px; background: #e3ebf4; }
.browser-body { padding: 22px; }

.project-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.project-label { margin-bottom: 6px; color: var(--ink-500); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-title { margin: 0; font-size: 21px; font-weight: 650; letter-spacing: -.02em; }
.status-pill { padding: 7px 10px; color: #137447; border-radius: 999px; background: var(--success-bg); font-size: 11px; font-weight: 700; white-space: nowrap; }

.progress-track { height: 8px; margin-bottom: 20px; overflow: hidden; border-radius: 20px; background: #e9eff6; }
.progress-value { width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), var(--green-500)); }

.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.delivery-card { padding: 15px; border: 1px solid #e5edf5; border-radius: 15px; background: #fbfdff; }
.delivery-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 13px; }
.delivery-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--blue-600); border-radius: 10px; background: #eaf3ff; }
.delivery-icon.green { color: #178a54; background: #eafaf1; }
.delivery-icon .icon { width: 17px; height: 17px; }
.delivery-check { width: 18px; height: 18px; color: #21a464; }
.delivery-card strong { display: block; margin-bottom: 4px; font-size: 13px; font-weight: 650; }
.delivery-card span { color: var(--ink-500); font-size: 11px; line-height: 1.4; }

/* Capability strip */
.capability-strip { position: relative; z-index: 5; margin-top: -33px; }
.capability-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.capability-intro, .capability-item { min-height: 105px; padding: 22px; }
.capability-intro { display: flex; align-items: center; color: var(--white); background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); font-weight: 850; line-height: 1.35; }
.capability-item { display: grid; align-content: center; border-left: 1px solid var(--line); }
.capability-item strong { margin-bottom: 4px; font-size: 15px; }
.capability-item span { color: var(--ink-500); font-size: 12px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 27, 56, .04);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.service-card::after {
  position: absolute;
  right: -30px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,.12), transparent 70%);
  transition: transform .3s ease;
}

.service-card:hover { border-color: #bdd1e6; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card:hover::after { transform: scale(1.35); }

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 16px;
  background: linear-gradient(145deg, #e8f3ff, #f4f9ff);
  box-shadow: inset 0 0 0 1px rgba(22,119,255,.08);
}

.service-icon.green { color: #158351; background: linear-gradient(145deg, #e7faef, #f4fdf8); }
.service-icon.cyan { color: #0482a8; background: linear-gradient(145deg, #e5faff, #f5fdff); }
.service-icon .icon { width: 25px; height: 25px; }
.service-card h3 { margin-bottom: 12px; font-size: 24px; font-weight: 650; line-height: 1.15; letter-spacing: -.02em; }
.service-card p { margin-bottom: 19px; color: var(--ink-600); font-size: 15px; }
.service-list { display: grid; gap: 7px; margin: 0 0 24px; padding: 0; list-style: none; }
.service-list li { display: flex; align-items: center; gap: 8px; color: var(--ink-700); font-size: 13px; font-weight: 650; }
.service-list .icon { width: 15px; height: 15px; color: #20a363; }
.text-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--blue-600); font-size: 14px; font-weight: 700; }
.text-link .icon { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

/* Solutions */
.solutions-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 60px; }
.solutions-sticky { position: sticky; top: 110px; }
.solutions-sticky .section-heading { margin-bottom: 28px; }
.solutions-list { display: grid; gap: 14px; }
.solution-card {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover { border-color: #b9cde2; box-shadow: var(--shadow-sm); transform: translateX(5px); }
.solution-number { display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); border-radius: 17px; background: var(--navy-900); font-family: var(--font-mono); font-size: 16px; font-weight: 600; }
.solution-card:nth-child(2) .solution-number { background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); }
.solution-card:nth-child(3) .solution-number { background: linear-gradient(135deg, #159558, var(--green-400)); }
.solution-card h3 { margin-bottom: 7px; font-size: 23px; font-weight: 650; line-height: 1.15; letter-spacing: -.02em; }
.solution-card p { margin: 0; color: var(--ink-600); font-size: 14px; }
.solution-card > .icon { width: 22px; height: 22px; color: #93a5ba; }

.stack-wrap { margin-top: 36px; }
.stack-label { margin-bottom: 14px; color: var(--ink-500); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.stack-list { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-list span { padding: 8px 11px; color: var(--ink-700); border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: 12px; font-weight: 750; }

/* Process */
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid::before { position: absolute; top: 33px; right: 12%; left: 12%; height: 1px; content: ""; background: linear-gradient(90deg, rgba(33,150,243,.2), rgba(18,184,232,.6), rgba(66,201,129,.25)); }
.process-card { position: relative; padding: 0 12px; text-align: center; }
.process-step { position: relative; z-index: 2; display: grid; width: 66px; height: 66px; margin: 0 auto 22px; place-items: center; color: var(--white); border: 7px solid var(--surface); border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); box-shadow: 0 12px 24px rgba(22,119,255,.2); font-family: var(--font-mono); font-size: 14px; font-weight: 600; }
.process-card:nth-child(4) .process-step { background: linear-gradient(135deg, #159558, var(--green-400)); }
.process-card h3 { margin-bottom: 10px; font-size: 21px; font-weight: 650; }
.process-card p { margin: 0; color: var(--ink-600); font-size: 14px; }

/* Why us */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.why-visual { position: relative; min-height: 550px; }
.why-image { position: absolute; inset: 0 54px 45px 0; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-lg); background: var(--surface-2); }
.why-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(4,19,41,.42), transparent 50%); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-panel { position: absolute; right: 0; bottom: 0; width: min(85%, 340px); padding: 23px; color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 21px; background: rgba(7,27,56,.95); box-shadow: var(--shadow-md); }
.why-panel-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.why-panel-icon { display: grid; width: 44px; height: 44px; place-items: center; color: var(--white); border-radius: 13px; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); }
.why-panel strong { font-size: 16px; font-weight: 650; }
.why-panel p { color: #b8c9db; font-size: 13px; }

.why-list { display: grid; gap: 18px; margin-top: 30px; }
.why-item { display: grid; grid-template-columns: 46px 1fr; gap: 14px; }
.why-icon { display: grid; width: 46px; height: 46px; place-items: center; color: var(--blue-600); border-radius: 13px; background: #eaf3ff; }
.why-item:nth-child(2) .why-icon, .why-item:nth-child(4) .why-icon { color: #158351; background: #e9faf1; }
.why-item h3 { margin-bottom: 5px; font-size: 19px; font-weight: 650; }
.why-item p { margin: 0; color: var(--ink-600); font-size: 14px; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); transition: background .25s ease, transform .25s var(--ease), border-color .25s ease; }
.industry-card:hover { border-color: rgba(127,214,255,.36); background: rgba(255,255,255,.09); transform: translateY(-4px); }
.industry-icon { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; color: #78d8ff; border-radius: 14px; background: rgba(33,150,243,.15); }
.industry-card:nth-child(even) .industry-icon { color: #7ce6aa; background: rgba(66,201,129,.14); }
.industry-card h3 { margin-bottom: 8px; font-size: 20px; font-weight: 650; }
.industry-card p { color: #aec0d4; font-size: 13px; }

/* Bootcamp */
.bootcamp-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  align-items: center;
  gap: 60px;
  padding: 62px;
  color: var(--white);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 20%, rgba(66,201,129,.18), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.bootcamp-card::after { position: absolute; right: -120px; bottom: -170px; width: 420px; height: 420px; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.02), 0 0 0 110px rgba(255,255,255,.015); }
.bootcamp-copy { position: relative; z-index: 2; }
.bootcamp-copy h2 { margin-bottom: 18px; font-family: var(--font-display); font-size: clamp(38px, 4.8vw, 62px); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
.bootcamp-copy p { margin-bottom: 26px; color: #b9cbe0; font-size: 18px; line-height: 1.6; }
.bootcamp-points { position: relative; z-index: 2; display: grid; gap: 12px; }
.bootcamp-point { display: flex; align-items: center; gap: 12px; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.065); backdrop-filter: blur(10px); }
.bootcamp-point .icon { color: var(--green-400); }
.bootcamp-point strong { font-size: 14px; font-weight: 650; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-aside { position: sticky; top: 110px; align-self: start; }
.faq-aside .section-title { font-size: clamp(38px, 4.2vw, 58px); }
.faq-contact { margin-top: 28px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.faq-contact strong { display: block; margin-bottom: 4px; }
.faq-contact span { color: var(--ink-600); font-size: 14px; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.faq-question { display: flex; width: 100%; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--ink-900); border: 0; background: transparent; cursor: pointer; font-weight: 650; letter-spacing: -.01em; text-align: left; }
.faq-question .icon { color: var(--blue-600); transition: transform .25s ease; }
.faq-question[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--ink-600); font-size: 15px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* CTA */
.cta-wrap { padding: 0 0 100px; }
.cta-card { position: relative; display: grid; grid-template-columns: 1fr auto; overflow: hidden; align-items: center; gap: 40px; padding: 58px 62px; color: var(--white); border-radius: 28px; background: linear-gradient(125deg, var(--blue-600), #0b75dc 48%, #0a9a8d); box-shadow: 0 30px 70px rgba(16, 112, 204, .26); }
.cta-card::before { position: absolute; top: -120px; right: 18%; width: 330px; height: 330px; content: ""; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.cta-content { position: relative; z-index: 2; }
.cta-card h2 { max-width: 760px; margin-bottom: 12px; font-family: var(--font-display); font-size: clamp(38px, 4.8vw, 62px); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
.cta-card p { max-width: 680px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.55; }
.cta-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cta-card .btn-secondary { border-color: var(--white); }

/* Footer */
.site-footer { color: #b4c5d8; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1.1fr; gap: 48px; padding: 72px 0 55px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 360px; margin-bottom: 22px; color: #9eb1c7; font-size: 14px; }
.socials { display: flex; gap: 9px; }
.social-link { display: grid; width: 42px; height: 42px; place-items: center; color: #dce9f6; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.04); transition: transform .2s ease, background .2s ease; }
.social-link:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.social-link .icon { width: 19px; height: 19px; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: 15px; font-weight: 820; letter-spacing: -.01em; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #a9bbcf; font-size: 14px; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--white); transform: translateX(2px); }
.contact-list { display: grid; gap: 13px; }
.contact-item { display: grid; grid-template-columns: 34px 1fr; gap: 10px; color: #a9bbcf; font-size: 13px; }
.contact-icon { display: grid; width: 34px; height: 34px; place-items: center; color: #7fd6ff; border-radius: 10px; background: rgba(33,150,243,.1); }
.contact-icon .icon { width: 16px; height: 16px; }
.contact-item a:hover { color: var(--white); }
.contact-label { display: block; color: #eaf3fc; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #8298b0; font-size: 12px; }
.footer-payment-banner { width: 100%; overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); background: #fff; }
.footer-payment-banner img { display: block; width: 100%; height: auto; margin: 0; }
.footer-legal-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; margin: 0; padding: 0; list-style: none; }
.footer-legal-list li { margin: 0; padding: 0; list-style: none; }
.footer-legal a:hover { color: var(--white); }

.legal-compliance-notice {
  margin: 0 0 30px;
  padding: 24px 26px;
  border: 1px solid #acd8bf;
  border-left: 5px solid var(--green-500);
  border-radius: 15px;
  background: #f0fbf5;
}
.legal-compliance-notice h2 { margin: 0 0 9px !important; color: var(--ink-900); font-size: 23px; }
.legal-compliance-notice p { margin: 0 0 8px; color: var(--ink-700); }
.legal-compliance-notice p:last-child { margin-bottom: 0; }

.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; visibility: hidden; width: 46px; height: 46px; place-items: center; padding: 0; color: var(--white); border: 0; border-radius: 14px; background: var(--navy-900); box-shadow: var(--shadow-md); cursor: pointer; opacity: 0; transform: translateY(12px); transition: opacity .2s ease, visibility .2s ease, transform .2s var(--ease); }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + 88px) 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 184, 232, .22), transparent 27%),
    radial-gradient(circle at 72% 82%, rgba(66, 201, 129, .12), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #0b2c55);
}
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 92%);
}
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 72px; }
.page-hero-copy { max-width: 810px; }
.page-hero .eyebrow { color: #7fd6ff; }
.page-hero h1 { max-width: 850px; margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(50px, 7vw, 82px); font-weight: 400; line-height: 1.01; letter-spacing: -.038em; text-wrap: balance; }
.page-hero-copy > p { max-width: 720px; margin-bottom: 0; color: #b9cce1; font-size: clamp(19px, 2vw, 22px); line-height: 1.58; letter-spacing: -.01em; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.page-hero-panel { padding: 27px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); box-shadow: 0 24px 70px rgba(2,13,30,.16); backdrop-filter: blur(12px); }
.page-hero-panel > strong { display: block; margin-bottom: 17px; font-size: 18px; font-weight: 650; }
.page-hero-panel ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.page-hero-panel li { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: #c2d3e5; font-size: 14px; line-height: 1.45; }
.page-hero-panel .icon { width: 18px; height: 18px; margin-top: 1px; color: var(--green-400); }

/* About page hero */
.page-hero--about {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 84px;
}

.page-hero--about .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 72px;
}

.page-hero--about .page-hero-copy { max-width: 790px; }
.page-hero--about h1 {
  max-width: 790px;
  font-size: clamp(56px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -.032em;
  text-wrap: pretty;
}

.page-hero--about h1 .gradient-text { display: block; }
.page-hero--about .page-hero-copy > p { max-width: 740px; font-size: 20px; }
.page-hero--about .page-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(18,184,232,.12), transparent 44%),
    rgba(255,255,255,.075);
}

.page-hero--about .page-hero-panel::before {
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500), var(--green-400));
}

/* Primary marketing page heroes */
.page-hero--primary {
  padding-top: calc(var(--header-h) + 68px);
  padding-bottom: 80px;
}

.page-hero--primary .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 72px;
}

.page-hero--primary .page-hero-copy { max-width: 790px; }
.page-hero--primary h1 {
  max-width: 790px;
  font-size: clamp(54px, 5.1vw, 68px);
  line-height: 1.03;
  letter-spacing: -.032em;
  text-wrap: pretty;
}

.page-hero--primary .page-hero-copy > p { max-width: 720px; font-size: 19px; }
.page-hero--primary .page-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(18,184,232,.12), transparent 44%),
    rgba(255,255,255,.075);
}

.page-hero--primary .page-hero-panel::before {
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500), var(--green-400));
}

/* Service landing hero */
.page-hero--service {
  padding-top: calc(var(--header-h) + 68px);
  padding-bottom: 82px;
}

.page-hero--service .page-hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, .6fr);
  align-items: center;
  gap: 76px;
}

.page-hero--service .page-hero-copy { max-width: 820px; }
.page-hero--service h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(50px, 4.6vw, 70px);
  line-height: 1.025;
  letter-spacing: -.034em;
}

.page-hero--service .page-hero-copy > p {
  max-width: 700px;
  color: #c4d4e6;
  font-size: 18px;
  line-height: 1.65;
}

.page-hero--service .page-hero-actions { margin-top: 26px; }
.page-hero--service .page-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  align-content: center;
  padding: 34px;
  border-color: rgba(127,214,255,.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(18,184,232,.15), transparent 42%),
    rgba(255,255,255,.075);
  box-shadow: 0 28px 72px rgba(2,13,30,.22);
}

.page-hero--service .page-hero-panel::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500), var(--green-400));
}

.page-hero--service .page-hero-panel > strong {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 20px;
}

.page-hero--service .page-hero-panel ul { gap: 15px; }
.page-hero--service .page-hero-panel li {
  grid-template-columns: 22px 1fr;
  gap: 11px;
  color: #d2deeb;
  font-size: 14px;
  line-height: 1.5;
}

.page-hero--service .page-hero-panel .icon {
  width: 19px;
  height: 19px;
  margin-top: 1px;
}

.content-section { padding: 104px 0; }
.content-section--soft { background: var(--surface); }
.content-section--dark { color: var(--white); background: var(--navy-900); }
.content-section-header { max-width: 760px; margin-bottom: 46px; }
.content-section-header--center { margin-inline: auto; text-align: center; }
.content-section-title { margin-bottom: 17px; font-family: var(--font-display); font-size: clamp(38px, 4.8vw, 64px); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
.content-section-header p { max-width: 680px; margin-bottom: 0; color: var(--ink-600); font-size: 19px; line-height: 1.6; }
.content-section-header--center p { margin-inline: auto; }
.content-section--dark .content-section-header p { color: #b9c8db; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split-copy h2 { margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(38px, 4.8vw, 62px); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
.split-copy p { color: var(--ink-600); font-size: 17px; line-height: 1.72; }
.split-copy p + p { margin-top: 18px; }
.media-frame { position: relative; overflow: hidden; min-height: 520px; border-radius: 28px; background: var(--surface-2); box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.media-frame::after { position: absolute; inset: auto 0 0; height: 36%; content: ""; background: linear-gradient(transparent, rgba(4,19,41,.35)); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid--four { grid-template-columns: repeat(4, 1fr); }
.feature-card { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 12px 34px rgba(5,27,57,.055); }
.feature-card-icon { display: grid; width: 47px; height: 47px; margin-bottom: 20px; place-items: center; color: var(--blue-600); border-radius: 14px; background: #eaf3ff; }
.feature-card:nth-child(3n+2) .feature-card-icon { color: #11835d; background: #e9faf1; }
.feature-card h3 { margin-bottom: 9px; font-size: 20px; font-weight: 650; line-height: 1.2; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--ink-600); font-size: 14px; line-height: 1.62; }
.content-section--dark .feature-card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.055); box-shadow: none; }
.content-section--dark .feature-card p { color: #b4c5d8; }

.service-catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-catalog-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.service-catalog-card:hover { border-color: #c3d4e8; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.service-catalog-card h3 { margin-bottom: 8px; font-size: 18px; font-weight: 650; letter-spacing: -.015em; }
.service-catalog-card p { margin: 0; color: var(--ink-600); font-size: 13px; line-height: 1.58; }
.service-catalog-card--link { display: flex; flex-direction: column; }
.service-catalog-card--link .text-link { margin-top: auto; padding-top: 18px; }
.service-catalog-card--link:focus-visible, .service-hub-card:focus-visible { border-color: var(--blue-500); outline: 3px solid rgba(33,150,243,.22); outline-offset: 3px; }
.service-hub-card { display: flex; min-height: 290px; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.service-hub-card:hover { border-color: #c3d4e8; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-hub-card .text-link { margin-top: auto; padding-top: 20px; }

.numbered-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.numbered-card { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.numbered-card-number { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; color: var(--white); border-radius: 14px; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.numbered-card h3 { margin-bottom: 9px; font-size: 20px; font-weight: 650; }
.numbered-card p { margin: 0; color: var(--ink-600); font-size: 14px; line-height: 1.62; }

.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 21px 1fr; gap: 10px; color: var(--ink-700); line-height: 1.55; }
.check-list .icon { width: 19px; height: 19px; margin-top: 3px; color: #1ba166; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { display: grid; grid-template-columns: 52px 1fr; gap: 17px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 12px 34px rgba(5,27,57,.05); }
.contact-card-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--blue-600); border-radius: 15px; background: #eaf3ff; }
.contact-card h2, .contact-card h3 { margin-bottom: 6px; font-size: 19px; font-weight: 650; }
.contact-card p { margin: 0; color: var(--ink-600); font-size: 14px; line-height: 1.55; }
.contact-card a { color: var(--blue-600); font-weight: 650; }
.contact-card a:hover { text-decoration: underline; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr); align-items: start; gap: 44px; }
.form-card { padding: 36px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-card h2 { margin-bottom: 10px; font-family: var(--font-display); font-size: clamp(34px, 4vw, 50px); font-weight: 400; letter-spacing: -.02em; }
.form-card > p { margin-bottom: 27px; color: var(--ink-600); }
.form-aside { position: sticky; top: 110px; padding: 28px; color: var(--white); border-radius: 22px; background: var(--navy-900); }
.form-aside h2, .form-aside h3 { margin-bottom: 14px; font-size: 23px; font-weight: 650; }
.form-aside p { color: #b9c8db; font-size: 14px; line-height: 1.62; }
.form-aside .check-list li { color: #d6e2ef; font-size: 14px; }
.gts-form { display: grid; gap: 24px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label, .field-group legend { color: var(--ink-700); font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea, .portal-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink-900);
  border: 1px solid #cdd9e7;
  border-radius: 12px;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .portal-form input:focus { border-color: var(--blue-500); outline: none; box-shadow: 0 0 0 4px rgba(33,150,243,.12); }
.field-group { margin: 0; padding: 0; border: 0; }
.field-group legend { margin-bottom: 11px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 12px; }
.choice-stack { display: grid; gap: 10px; }
.choice-row label, .choice-stack label { display: flex; min-height: 45px; align-items: center; gap: 9px; padding: 10px 13px; color: var(--ink-700); border: 1px solid var(--line); border-radius: 11px; cursor: pointer; font-size: 14px; }
.choice-row input, .choice-stack input { accent-color: var(--blue-600); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-notice { margin-bottom: 22px; padding: 14px 16px; border-radius: 12px; font-weight: 650; }
.form-notice--success { color: #126b43; border: 1px solid #b7e8ce; background: #eafaf1; }
.form-notice--error { color: #8a2d2d; border: 1px solid #efc7c7; background: #fff1f1; }

.curriculum-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.curriculum-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.curriculum-period { display: inline-flex; margin-bottom: 16px; padding: 7px 10px; color: var(--blue-600); border-radius: 999px; background: #eaf3ff; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.curriculum-card h3 { margin-bottom: 10px; font-size: 21px; font-weight: 650; }
.curriculum-card p { margin: 0; color: var(--ink-600); font-size: 14px; line-height: 1.62; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin-inline: auto; }
.price-card { padding: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: 23px; background: rgba(255,255,255,.06); }
.price-card--featured { border-color: rgba(97,217,154,.45); background: linear-gradient(145deg, rgba(33,150,243,.13), rgba(66,201,129,.1)); }
.price-card h3 { margin-bottom: 13px; font-size: 23px; font-weight: 650; }
.price-card .price { display: block; margin-bottom: 12px; font-family: var(--font-display); font-size: clamp(38px, 5vw, 58px); font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.price-card p { color: #b9c8db; }
.price-card .discount-badge { display: inline-flex; margin-bottom: 18px; padding: 7px 11px; color: #08233f; border-radius: 999px; background: #61d99a; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.price-card .regular-price { display: block; margin-bottom: 8px; color: #9fb1c8; font-size: 15px; text-decoration: line-through; text-decoration-thickness: 1.5px; }

.legal-shell { background: var(--surface); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 790px); align-items: start; justify-content: center; gap: 60px; padding: 90px 0 110px; }
.legal-nav { position: sticky; top: 105px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.legal-nav strong { display: block; margin-bottom: 12px; font-size: 14px; }
.legal-nav a { display: block; padding: 8px 0; color: var(--ink-600); font-size: 13px; }
.legal-nav a:hover { color: var(--blue-600); }
.legal-content { padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 16px 46px rgba(5,27,57,.06); }
.legal-content > :first-child { margin-top: 0; }
.legal-content h2 { margin: 45px 0 14px; font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 42px); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; }
.legal-content h3, .legal-content h4 { margin: 30px 0 10px; font-size: 20px; font-weight: 650; }
.legal-content p, .legal-content li { color: var(--ink-600); font-size: 16px; line-height: 1.75; }
.legal-content ul, .legal-content ol { display: grid; gap: 8px; padding-left: 23px; }
.legal-content a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }

.portal-section { padding: 92px 0 110px; background: var(--surface); }
.portal-card { width: min(100%, 620px); margin-inline: auto; padding: 40px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-md); }
.portal-card h2 { margin-bottom: 10px; font-family: var(--font-display); font-size: clamp(35px, 4vw, 50px); font-weight: 400; }
.portal-card > p { margin-bottom: 27px; color: var(--ink-600); }
.portal-form p { margin-bottom: 17px; }
.portal-form label { display: grid; gap: 7px; color: var(--ink-700); font-size: 13px; font-weight: 700; }
.portal-form .login-remember label { display: flex; align-items: center; gap: 8px; }
.portal-form .login-remember input { width: auto; min-height: auto; }
.portal-form .button { min-height: 50px; padding: 12px 21px; color: var(--white); border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); cursor: pointer; font-weight: 700; }
.portal-note { margin-top: 22px; padding: 16px; border-radius: 13px; background: var(--surface); color: var(--ink-600); font-size: 14px; }

/* GTS CRM client login */
.portal-section {
  background:
    radial-gradient(circle at 50% 5%, rgba(33,150,243,.1), transparent 34%),
    var(--surface);
}

.portal-card.portal-card--crm {
  position: relative;
  overflow: hidden;
  width: min(100%, 720px);
  padding: 0;
  border-color: #d4e0ed;
  border-radius: 26px;
  box-shadow: 0 28px 75px rgba(5,27,57,.13);
}

.portal-card--crm::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), var(--green-400));
}

.portal-welcome {
  padding: 46px 50px 8px;
  text-align: center;
}

.portal-welcome > span {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 11px;
  color: #0d6bb7;
  border: 1px solid #c6e3f7;
  border-radius: 999px;
  background: #eef8ff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.portal-card--crm .portal-welcome h2 {
  margin: 0 0 12px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.portal-welcome p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.65;
}

.portal-card--crm .gts-crm-portal-login {
  padding: 26px 50px 46px;
}

.portal-card--crm .gts-crm-portal-login > h2,
.portal-card--crm .gts-crm-portal-login > p { display: none; }

.portal-card--crm .gts-crm-portal-form {
  display: grid;
  gap: 19px;
  margin: 0;
}

.portal-card--crm .gts-crm-portal-field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.portal-card--crm .gts-crm-portal-field > label {
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.portal-card--crm .gts-crm-portal-field input[type="text"],
.portal-card--crm .gts-crm-portal-field input[type="email"],
.portal-card--crm .gts-crm-portal-field input[type="password"] {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  color: var(--ink-900);
  border: 1px solid #c9d7e6;
  border-radius: 13px;
  background: #fbfdff;
  box-shadow: inset 0 1px 2px rgba(5,27,57,.025);
  font: inherit;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.portal-card--crm .gts-crm-portal-field input[type="text"]:focus,
.portal-card--crm .gts-crm-portal-field input[type="email"]:focus,
.portal-card--crm .gts-crm-portal-field input[type="password"]:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(33,150,243,.13);
}

.portal-card--crm .gts-crm-portal-field-checkbox {
  display: block;
  margin-top: -2px;
}

.portal-card--crm .gts-crm-portal-field-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-600);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.portal-card--crm .gts-crm-portal-field-checkbox input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--blue-600);
}

.portal-card--crm .gts-crm-portal-form-actions { margin: 1px 0 0; }
.portal-card--crm .gts-crm-portal-button {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--white);
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 14px 28px rgba(22,119,255,.23);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s var(--ease), box-shadow .2s ease;
}

.portal-card--crm .gts-crm-portal-button:hover {
  box-shadow: 0 18px 34px rgba(22,119,255,.31);
  transform: translateY(-1px);
}

.portal-card--crm .gts-crm-portal-button:focus-visible {
  outline: 3px solid rgba(33,150,243,.28);
  outline-offset: 3px;
}

.portal-card--crm .gts-crm-portal-field-hint {
  margin: 20px 0 0;
  text-align: center;
}

.portal-card--crm .gts-crm-portal-field-hint a {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 700;
}
.portal-card--crm .gts-crm-portal-field-hint a:hover { color: var(--navy-900); text-decoration: underline; text-underline-offset: 3px; }

.portal-card--crm .gts-crm-portal-unlinked { display: none; }

.portal-access-state {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 58px 54px 54px;
  text-align: center;
}

.portal-access-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--blue-600);
  border: 1px solid #c8def1;
  border-radius: 20px;
  background: linear-gradient(145deg, #eff8ff, #e9f9f2);
  box-shadow: 0 12px 30px rgba(33,150,243,.12);
}

.portal-access-icon .icon { width: 28px; height: 28px; }

.portal-access-eyebrow {
  margin-bottom: 14px;
  color: #0d6bb7;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.portal-card--crm .portal-access-state h2 {
  max-width: 560px;
  margin: 0 0 15px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.portal-access-state p {
  max-width: 570px;
  margin: 0 0 28px;
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .portal-section { padding: 64px 0 78px; }
  .portal-card--crm { border-radius: 21px; }
  .portal-welcome { padding: 39px 23px 7px; }
  .portal-card--crm .portal-welcome h2 { font-size: 38px; }
  .portal-welcome p { font-size: 15px; }
  .portal-card--crm .gts-crm-portal-login { padding: 23px 23px 38px; }
  .portal-access-state { min-height: 380px; padding: 46px 24px 42px; }
  .portal-access-icon { width: 60px; height: 60px; border-radius: 17px; }
  .portal-card--crm .portal-access-state h2 { font-size: 38px; }
  .portal-access-state p { font-size: 15px; }
}

.shortcode-examples { display: grid; gap: 12px; }
.shortcode-example { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.shortcode-example code { display: block; overflow-wrap: anywhere; color: var(--blue-600); font-family: var(--font-mono); font-size: 13px; }
.shortcode-example span { display: block; margin-top: 8px; color: var(--ink-600); font-size: 13px; }
.inner-cta { padding: 0 0 100px; }

/* Blog & page content (post lists, single posts, static pages) */
.post-list { display: grid; gap: 22px; margin-bottom: 40px; }
.entry-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; box-shadow: 0 8px 24px rgba(7, 27, 56, .04); }
.entry-thumbnail img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.entry-body { padding: 26px 28px; }
.entry-title { margin-bottom: 12px; font-size: 26px; font-weight: 820; }
.entry-title a:hover { color: var(--blue-600); }
.entry-excerpt, .entry-content { color: var(--ink-600); font-size: 16px; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content blockquote { margin: 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--blue-600); color: var(--ink-700); font-style: italic; }
.entry-content ul, .entry-content ol { padding-left: 22px; }
.page-links { margin-top: 24px; font-weight: 700; }
.entry-page { max-width: var(--container); }

/* WordPress alignment classes */
.alignwide { width: 100%; max-width: calc(var(--container) + 200px); margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin: 0 24px 12px 0; }
.alignright { float: right; margin: 0 0 12px 24px; }

/* Search form + comment form (minimal, dependency-free) */
.search-form { display: flex; gap: 10px; max-width: 460px; }
.search-form input[type="search"] {
  flex: 1;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-size: 16px;
}
.search-form input[type="search"]:focus-visible { outline: 3px solid rgba(33, 150, 243, .3); outline-offset: 2px; }
.search-form button {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  font-weight: 800;
  cursor: pointer;
}

/* WooCommerce */
.woocommerce-page .site-header,
.post-type-archive-product .site-header,
.single-product .site-header,
.tax-product_cat .site-header,
.tax-product_tag .site-header {
  background: var(--navy-900);
  backdrop-filter: none;
  box-shadow: 0 12px 30px rgba(2, 13, 30, .16);
}

.commerce-shell {
  position: relative;
  padding: 82px 0 104px;
  background:
    radial-gradient(circle at 8% 0%, rgba(33, 150, 243, .09), transparent 28%),
    var(--surface);
}

.commerce-shell--product { padding-top: 68px; }
.commerce-container { position: relative; }

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: var(--ink-500);
  font-size: 13px;
}

.woocommerce .woocommerce-breadcrumb a { color: var(--blue-600); }

.woocommerce .woocommerce-result-count {
  margin: 12px 0 28px;
  color: var(--ink-600);
  font-size: 14px;
}

.woocommerce .woocommerce-ordering { margin: 0 0 28px; }

.woocommerce .woocommerce-ordering select {
  min-width: 220px;
  height: 48px;
  padding: 0 42px 0 15px;
  color: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  clear: both;
  gap: 24px;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  display: flex;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 12px 12px 18px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.woocommerce ul.products li.product:hover {
  border-color: #bdd5ee;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  margin: 0 0 20px;
  aspect-ratio: 1;
  border-radius: 17px;
  background: var(--surface-2);
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 7px;
  color: var(--ink-900);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.018em;
}

.woocommerce ul.products li.product .price {
  display: flex;
  min-height: 35px;
  align-items: baseline;
  gap: 8px;
  margin: auto 7px 16px;
  color: var(--blue-600);
  font-size: 19px;
  font-weight: 800;
}

.woocommerce ul.products li.product .price del {
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 500;
  opacity: 1;
}

.woocommerce ul.products li.product .price ins { text-decoration: none; }

.woocommerce span.onsale {
  z-index: 3;
  top: 23px;
  right: 23px;
  left: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 7px 11px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), #19a56a);
  box-shadow: 0 10px 24px rgba(37, 173, 111, .25);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .button,
.woocommerce a.added_to_cart {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0 7px;
  padding: 11px 17px;
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 12px 25px rgba(22, 119, 255, .2);
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.added_to_cart:hover {
  color: var(--white);
  box-shadow: 0 16px 30px rgba(22, 119, 255, .3);
  transform: translateY(-2px);
}

.woocommerce a.added_to_cart { margin-top: 9px; }

.woocommerce nav.woocommerce-pagination { margin-top: 42px; }
.woocommerce nav.woocommerce-pagination ul { overflow: visible; border: 0; }
.woocommerce nav.woocommerce-pagination ul li { margin: 0 4px; border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { color: var(--white); border-color: var(--blue-600); background: var(--blue-600); }

.woocommerce div.product {
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.woocommerce div.product div.images { margin-bottom: 34px; }
.woocommerce div.product div.images img { border-radius: 20px; background: var(--surface-2); }
.woocommerce div.product div.summary { margin-bottom: 34px; }

.woocommerce div.product .product_title {
  margin-bottom: 18px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-600);
  font-size: 28px;
  font-weight: 800;
}

.woocommerce div.product p.price del { color: var(--ink-500); font-size: 16px; opacity: 1; }
.woocommerce div.product p.price ins { text-decoration: none; }

.woocommerce-product-details__short-description {
  margin-bottom: 24px;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.65;
}

.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; gap: 10px; }
.woocommerce .quantity .qty {
  width: 76px;
  height: 50px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.woocommerce div.product form.cart .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  min-height: 50px;
  padding: 13px 21px;
  color: var(--white);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 14px 28px rgba(22, 119, 255, .22);
  font-weight: 750;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover { color: var(--white); background: linear-gradient(135deg, #0868ec, #0aa7d2); }

.woocommerce div.product .product_meta {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding-top: 20px;
  color: var(--ink-500);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.woocommerce div.product .product_meta a { color: var(--blue-600); }

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 24px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: var(--surface);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 11px 17px; color: var(--ink-600); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--navy-900); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--white); }

.woocommerce div.product .woocommerce-tabs .panel {
  color: var(--ink-600);
  line-height: 1.72;
}
.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .woocommerce-tabs .panel h3,
.woocommerce div.product .woocommerce-tabs .panel h4 { color: var(--ink-900); }
.woocommerce div.product .woocommerce-tabs .panel h3 { margin-top: 38px; font-size: 27px; }
.woocommerce div.product .woocommerce-tabs .panel h4 { margin-top: 28px; font-size: 20px; }
.woocommerce div.product .woocommerce-tabs .panel li { margin-bottom: 6px; }

.woocommerce .related.products,
.woocommerce .upsells.products { clear: both; padding-top: 52px; }
.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  margin-bottom: 28px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin-bottom: 26px;
  padding: 18px 20px 18px 52px;
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-600);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.commerce-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin: -112px 0 36px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: var(--navy-850);
  box-shadow: var(--shadow-md);
}

.commerce-trust-strip span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px;
  color: #dce9f6;
  border-right: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 700;
}
.commerce-trust-strip span:last-child { border-right: 0; }
.commerce-trust-strip .icon { width: 18px; height: 18px; color: #6edca1; }

.catalog-tools {
  margin-bottom: 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.product-search-form input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  color: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  font-size: 15px;
  outline: 0;
}
.product-search-form input[type="search"]:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(33,150,243,.13); }
.product-search-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--white);
  border: 0;
  border-radius: 13px;
  background: var(--navy-900);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}
.product-search-form button:hover { background: var(--blue-600); }

.product-category-chips {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  margin-top: 15px;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.product-category-chips a {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--ink-600);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.product-category-chips a:hover,
.product-category-chips a.is-active { color: var(--white); border-color: var(--blue-600); background: var(--blue-600); }
.product-category-chips a span {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(105,119,141,.12);
  font-size: 10px;
}
.product-category-chips a.is-active span,
.product-category-chips a:hover span { background: rgba(255,255,255,.18); }

.product-card-category {
  display: block;
  margin: 0 7px 7px;
  color: var(--blue-600);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 7px;
}
.woocommerce ul.products li.product .product-card-actions .button,
.woocommerce ul.products li.product .product-card-actions .added_to_cart {
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  line-height: 1.2;
}
.woocommerce ul.products li.product .product-card-actions .product-details-button {
  color: var(--blue-600);
  border: 1px solid #c7daf0;
  background: var(--white);
  box-shadow: none;
}
.woocommerce ul.products li.product .product-card-actions .product-details-button:hover {
  color: var(--navy-900);
  border-color: #9ebede;
  background: var(--surface-2);
  box-shadow: none;
}

.product-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -4px 0 18px;
}
.product-summary-meta span {
  padding: 7px 10px;
  color: var(--ink-600);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
}

.product-assurance {
  margin-top: 23px;
  padding: 19px;
  border: 1px solid #cfe1f2;
  border-radius: 17px;
  background: linear-gradient(145deg, #f3f9ff, #f7fcf9);
}
.product-assurance > strong { display: block; margin-bottom: 13px; color: var(--ink-900); font-size: 14px; }
.product-assurance ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.product-assurance li { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 8px; color: var(--ink-600); font-size: 13px; }
.product-assurance .icon { width: 19px; height: 19px; color: var(--green-500); }

@media (max-width: 900px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary { width: 100%; float: none; }
  .commerce-trust-strip { margin-top: -98px; }
}

@media (max-width: 620px) {
  .commerce-shell { padding: 58px 0 76px; }
  .commerce-trust-strip { grid-template-columns: 1fr; margin-top: -84px; }
  .commerce-trust-strip span { min-height: 48px; justify-content: flex-start; padding: 11px 15px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .commerce-trust-strip span:last-child { border-bottom: 0; }
  .catalog-tools { padding: 14px; border-radius: 16px; }
  .product-search-form { grid-template-columns: 1fr; }
  .product-search-form button { width: 100%; }
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering { width: 100%; float: none; }
  .woocommerce .woocommerce-ordering select { width: 100%; }
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: 1fr; }
  .woocommerce div.product { padding: 18px; border-radius: 20px; }
  .woocommerce div.product .product_title { font-size: 36px; }
  .woocommerce div.product .woocommerce-tabs ul.tabs { overflow-x: auto; }
  .product-card-actions { grid-template-columns: 1fr; }
}

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

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .portal-link { display: none; }
  .menu-toggle { display: grid; }
  .header-actions .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-inner { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .capability-item:nth-child(4), .capability-item:nth-child(5) { border-top: 1px solid var(--line); }
  .capability-item:nth-child(4) { border-left: 0; }
  .capability-intro { grid-row: span 2; }
  .footer-main { grid-template-columns: 1.2fr .8fr .9fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
  .contact-list { grid-template-columns: repeat(3, 1fr); }
  .page-hero-grid { gap: 42px; }
  .page-hero--about .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .page-hero--about .page-hero-panel { width: 100%; max-width: 620px; }
  .page-hero--primary .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .page-hero--primary .page-hero-panel { width: 100%; max-width: 620px; }
  .feature-grid, .feature-grid--four, .service-catalog { grid-template-columns: repeat(2, 1fr); }
  .numbered-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .hero { padding-bottom: 80px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(100%, 640px); min-height: 500px; margin: -10px auto 0; }
  .browser-card { right: 5%; width: 84%; }
  .solutions-layout { grid-template-columns: 1fr; gap: 38px; }
  .solutions-sticky, .faq-aside { position: static; }
  .solutions-sticky .section-heading { margin-bottom: 18px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .process-grid::before { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 52px; }
  .why-visual { width: min(100%, 650px); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .bootcamp-card { grid-template-columns: 1fr; gap: 32px; padding: 48px; }
  .bootcamp-points { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .cta-card { grid-template-columns: 1fr; padding: 48px; }
  .cta-actions { justify-content: flex-start; }
  .page-hero-grid, .split-layout, .form-layout { grid-template-columns: 1fr; }
  .page-hero-copy { max-width: 760px; }
  .page-hero-panel { max-width: 620px; }
  .page-hero--service .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero--service .page-hero-panel { width: 100%; min-height: 0; }
  .split-layout { gap: 44px; }
  .form-aside { position: static; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-nav { position: static; display: flex; overflow-x: auto; gap: 14px; padding: 14px 18px; }
  .legal-nav strong { min-width: max-content; margin: 8px 4px 0 0; }
  .legal-nav a { min-width: max-content; }
}

@media (max-width: 700px) {
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-copy { font-size: 17px; line-height: 1.55; }
  .brand-logo, .custom-logo { width: 110px; }
  .footer-brand .brand-logo, .footer-brand .custom-logo { width: 42px; height: 42px; border-radius: 12px; }
  .brand-name { font-size: 16px; }
  .brand-tagline { font-size: 8px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 36px); padding-bottom: 68px; }
  .hero-badge { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(38px, 10vw, 48px); line-height: 1.04; }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .hero-visual { min-height: 430px; }
  .browser-card { top: 40px; right: 0; width: 94%; transform: none; }
  .delivery-grid { gap: 8px; }
  .browser-body { padding: 17px; }
  .capability-strip { margin-top: -22px; }
  .capability-inner { grid-template-columns: 1fr 1fr; }
  .capability-intro { grid-column: 1 / -1; grid-row: auto; min-height: 82px; }
  .capability-item { min-height: 92px; padding: 17px; border-top: 1px solid var(--line); }
  .capability-item:nth-child(even) { border-left: 0; }
  .capability-item:nth-child(4) { border-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .solution-card { grid-template-columns: 55px 1fr; padding: 19px; }
  .solution-number { width: 50px; height: 50px; }
  .solution-card > .icon { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-card { display: grid; grid-template-columns: 60px 1fr; gap: 16px; text-align: left; }
  .process-step { width: 58px; height: 58px; margin: 0; }
  .process-card h3 { margin-top: 6px; }
  .process-card p { grid-column: 2; margin-top: -28px; }
  .why-visual { min-height: 460px; }
  .why-image { inset: 0 24px 62px 0; }
  .why-panel { width: 92%; }
  .industries-grid { grid-template-columns: 1fr; }
  .bootcamp-card { padding: 34px 24px; border-radius: 23px; }
  .bootcamp-points { grid-template-columns: 1fr; }
  .faq-question { min-height: 66px; padding: 17px; }
  .faq-answer p { padding: 0 17px 18px; }
  .cta-wrap { padding-bottom: 72px; }
  .cta-card { padding: 36px 24px; border-radius: 22px; }
  .cta-actions { display: grid; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; padding-top: 58px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: 1 / -1; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal-list { justify-content: flex-start; }
  .page-hero { padding-top: calc(var(--header-h) + 64px); padding-bottom: 72px; }
  .page-hero h1 { font-size: clamp(45px, 12.5vw, 62px); }
  .page-hero-copy > p { font-size: 18px; line-height: 1.55; }
  .page-hero-actions { display: grid; }
  .page-hero-actions .btn { width: 100%; }
  .page-hero--about { padding-top: calc(var(--header-h) + 36px); padding-bottom: 52px; }
  .page-hero--about .page-hero-grid { gap: 28px; }
  .page-hero--about .eyebrow { margin-bottom: 14px; line-height: 1.35; }
  .page-hero--about h1 { margin-bottom: 18px; font-size: clamp(38px, 10vw, 48px); line-height: 1.05; }
  .page-hero--about .page-hero-copy > p { font-size: 16px; line-height: 1.6; }
  .page-hero--about .page-hero-actions { margin-top: 22px; }
  .page-hero--about .page-hero-panel { padding: 24px; }
  .page-hero--primary { padding-top: calc(var(--header-h) + 36px); padding-bottom: 52px; }
  .page-hero--primary .page-hero-grid { gap: 28px; }
  .page-hero--primary .eyebrow { align-items: flex-start; margin-bottom: 14px; letter-spacing: .09em; line-height: 1.35; }
  .page-hero--primary .eyebrow::before { flex: 0 0 20px; margin-top: .55em; }
  .page-hero--primary h1 { margin-bottom: 18px; font-size: clamp(36px, 9.5vw, 44px); line-height: 1.06; letter-spacing: -.025em; }
  .page-hero--primary .page-hero-copy > p { font-size: 16px; line-height: 1.6; }
  .page-hero--primary .page-hero-actions { margin-top: 22px; }
  .page-hero--primary .page-hero-panel { padding: 24px; }
  .page-hero--service { padding-top: calc(var(--header-h) + 34px); padding-bottom: 52px; }
  .page-hero--service .page-hero-grid { gap: 28px; }
  .page-hero--service .eyebrow { align-items: flex-start; margin-bottom: 14px; letter-spacing: .09em; line-height: 1.35; }
  .page-hero--service .eyebrow::before { flex: 0 0 20px; margin-top: .55em; }
  .page-hero--service h1 { margin-bottom: 18px; font-size: clamp(34px, 7.8vw, 44px); line-height: 1.06; letter-spacing: -.025em; text-wrap: pretty; }
  .page-hero--service .page-hero-copy > p { font-size: 16px; line-height: 1.6; }
  .page-hero--service .page-hero-actions { margin-top: 22px; }
  .page-hero--service .page-hero-panel { padding: 24px; }
  .content-section { padding: 72px 0; }
  .content-section-header p { font-size: 17px; }
  .feature-grid, .feature-grid--four, .service-catalog, .numbered-grid, .contact-grid, .curriculum-grid, .pricing-grid { grid-template-columns: 1fr; }
  .media-frame, .media-frame img { min-height: 410px; }
  .form-card, .portal-card, .legal-content { padding: 28px 22px; border-radius: 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .legal-layout { padding: 66px 0 78px; }
  .legal-content h2 { margin-top: 36px; }
  .inner-cta { padding-bottom: 72px; }
}

@media (max-width: 430px) {
  .brand-tagline { display: none; }
  .header-cart { width: 44px; padding: 0; }
  .header-cart-label { display: none; }
  .header-cart-count { position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; font-size: 9px; }
  .hero h1 { font-size: clamp(35px, 9.5vw, 38px); }
  .hero-visual { min-height: 410px; }
  .browser-card { width: 100%; }
  .delivery-card { padding: 12px; }
  .delivery-card span { font-size: 10px; }
  .capability-inner { grid-template-columns: 1fr; }
  .capability-item { border-left: 0; }
  .process-card p { margin-top: -22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-main > :last-child { grid-column: auto; }
  .page-hero h1 { font-size: 44px; }
  .page-hero--about h1 { font-size: clamp(35px, 9.5vw, 38px); }
  .page-hero--about .page-hero-panel { padding: 21px; }
  .page-hero--primary h1 { font-size: clamp(35px, 9.3vw, 38px); }
  .page-hero--primary .page-hero-panel { padding: 21px; }
  .page-hero--service h1 { font-size: 34px; }
  .page-hero--service .page-hero-panel { padding: 21px; }
  .page-hero-panel, .feature-card, .service-catalog-card, .numbered-card, .contact-card, .curriculum-card, .price-card { padding: 21px; }
  .contact-card { grid-template-columns: 45px 1fr; }
  .contact-card-icon { width: 45px; height: 45px; }
  .choice-row { display: grid; }
}
