:root {
  --navy: #071f46;
  --navy-2: #0a2d5e;
  --blue: #0d66df;
  --blue-2: #2e86f6;
  --sky: #eaf4ff;
  --sky-2: #f5f9ff;
  --orange: #f26a32;
  --orange-2: #ff8a50;
  --teal: #1daaa2;
  --ink: #102b51;
  --muted: #58708e;
  --line: #d7e5f4;
  --paper: #ffffff;
  --cream: #fffdf9;
  --shadow-sm: 0 10px 32px rgba(17, 67, 122, 0.08);
  --shadow-md: 0 18px 55px rgba(17, 67, 122, 0.13);
  --shadow-lg: 0 34px 90px rgba(4, 30, 69, 0.18);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: min(1216px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

.announcement {
  background: var(--navy);
  color: #dceaff;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

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

.announcement span,
.announcement a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement span .icon {
  color: var(--orange-2);
}

.announcement a {
  color: #fff;
  font-weight: 700;
  transition: color 0.2s ease;
}

.announcement a:hover {
  color: var(--orange-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 220, 240, 0.8);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 30px rgba(7, 31, 70, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 4px solid #dcecff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-2), #155bac);
  box-shadow: 0 7px 17px rgba(10, 56, 111, 0.22);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.1;
}

.brand b {
  color: var(--navy);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-group > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-group > button:hover,
.nav-group > button[aria-expanded="true"] {
  color: var(--blue);
}

.nav-group {
  position: relative;
}

.nav-group .icon {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.nav-group > button[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 278px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown,
.nav-group.is-open .dropdown {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.dropdown a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 10px;
}

.dropdown a:hover {
  background: var(--sky-2);
}

.dropdown b {
  font-size: 0.84rem;
}

.dropdown span {
  color: var(--muted);
  font-size: 0.71rem;
}

.header-cta {
  padding-inline: 17px !important;
  font-size: 0.77rem !important;
}

.nav-toggle,
.mobile-panel {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  transition: transform 0.2s ease;
}

.button:hover .icon {
  transform: translateX(3px);
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(13, 102, 223, 0.24);
  color: #fff;
}

.button-primary:hover {
  background: #084fac;
  box-shadow: 0 13px 30px rgba(13, 102, 223, 0.32);
}

.button-accent {
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(242, 106, 50, 0.25);
  color: #fff;
}

.button-accent:hover {
  background: #d9531f;
  box-shadow: 0 13px 30px rgba(242, 106, 50, 0.32);
}

.button-secondary {
  border-color: #a9c9ee;
  background: #fff;
  color: var(--blue);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--sky);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: 655px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(218, 235, 255, 0.75), transparent 27%),
    linear-gradient(112deg, #fffdf8 0%, #fff 44%, #f3f8ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -46%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(40, 128, 236, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(40, 128, 236, 0.035), 0 0 0 140px rgba(40, 128, 236, 0.025);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: 14%;
  right: 8%;
  width: 12px;
  height: 12px;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(242, 106, 50, 0.08);
}

.orb-two {
  bottom: 12%;
  left: 48%;
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: 0 0 0 9px rgba(13, 102, 223, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 50px;
  padding-block: 80px;
}

.hero-copy {
  padding-block: 20px;
}

.eyebrow,
.eyebrow-line {
  color: var(--orange);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-line .icon {
  width: 16px;
  height: 16px;
}

.hero h1 {
  max-width: 650px;
  margin: 20px 0 19px;
  color: var(--navy);
  font-size: clamp(2.8rem, 4.2vw, 4.45rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: #455f7f;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 27px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-trust .icon {
  color: var(--orange);
}

.microcopy {
  max-width: 590px;
  margin: 14px 0 0;
  color: #7890aa;
  font-size: 0.71rem;
  line-height: 1.55;
}

.hero-studio {
  position: relative;
  min-width: 0;
  perspective: 1000px;
}

.studio-glow {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 130, 244, 0.24), rgba(38, 130, 244, 0));
  filter: blur(20px);
}

.studio-window {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: #f9fcff;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-origin: right center;
}

.window-bar {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #dbe8f6;
  background: #fff;
  color: var(--navy);
  font-size: 0.7rem;
}

.window-bar > div {
  display: flex;
  gap: 5px;
}

.window-bar > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7e3ef;
}

.window-bar > div i:first-child {
  background: #ff8f5a;
}

.window-bar > div i:nth-child(2) {
  background: #ffc65b;
}

.window-bar > div i:nth-child(3) {
  background: #54c7a6;
}

.live-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 20px;
  background: #e7f9f1;
  color: #167a5e;
  font-size: 0.61rem;
  font-weight: 800;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #23ad80;
}

.studio-body {
  min-height: 420px;
  display: grid;
  grid-template-columns: 61px 1fr;
}

.studio-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 16px 9px;
  background: var(--navy);
}

.mini-brand {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
}

.studio-sidebar button {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #8eb3df;
}

.studio-sidebar button:hover,
.studio-sidebar button.is-active {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.studio-main {
  min-width: 0;
  padding: 20px;
}

.studio-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.studio-title > div {
  display: grid;
}

.studio-title small {
  color: #6c84a1;
  font-size: 0.61rem;
}

.studio-title b {
  font-size: 0.94rem;
}

.studio-title button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid #b7d4f5;
  border-radius: 8px;
  background: #eff7ff;
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 800;
}

.studio-title button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 15px;
}

.metric-row article {
  display: grid;
  padding: 10px 11px;
  border: 1px solid #e1ebf6;
  border-radius: 10px;
  background: #fff;
}

.metric-row span {
  color: #7087a0;
  font-size: 0.54rem;
}

.metric-row b {
  color: var(--navy);
  font-size: 1.03rem;
}

.metric-row small {
  color: #8a9db2;
  font-size: 0.49rem;
}

.studio-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 11px;
  margin-top: 11px;
}

.studio-calendar,
.content-preview {
  overflow: hidden;
  border: 1px solid #deeaf6;
  border-radius: 12px;
  background: #fff;
}

.studio-calendar {
  padding: 12px;
}

.calendar-head,
.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
}

.calendar-head span {
  color: var(--blue);
}

.calendar-days {
  margin-top: 10px;
  color: #7990a8;
  font-size: 0.47rem;
  text-align: center;
}

.calendar-grid {
  margin-top: 5px;
}

.calendar-grid i {
  height: 21px;
  border-radius: 5px;
  background: #f3f7fb;
}

.calendar-grid i.c-blue,
.calendar-key i.c-blue {
  background: #a8d0ff;
}

.calendar-grid i.c-orange,
.calendar-key i.c-orange {
  background: #ffd3bd;
}

.calendar-grid i.c-teal {
  background: #bcebe4;
}

.calendar-grid i.c-navy {
  background: #8cadd2;
}

.calendar-key {
  display: flex;
  gap: 9px;
  margin-top: 9px;
  color: #7890a7;
  font-size: 0.47rem;
}

.calendar-key span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.calendar-key i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.preview-cover {
  position: relative;
  min-height: 138px;
  padding: 15px;
  overflow: hidden;
  background: linear-gradient(145deg, #0c58b8, #082858);
  color: #fff;
}

.preview-cover b {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 22px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.cover-kicker {
  position: relative;
  z-index: 2;
  color: #99c7ff;
  font-size: 0.48rem;
  letter-spacing: 0.07em;
}

.cover-ring {
  position: absolute;
  right: -25px;
  bottom: -40px;
  width: 105px;
  height: 105px;
  border: 16px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(243, 108, 53, 0.72);
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  color: #607a98;
  font-size: 0.5rem;
}

.preview-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.analytics-strip {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  padding: 8px 12px;
  border: 1px solid #deebf7;
  border-radius: 11px;
  background: #fff;
}

.analytics-strip div {
  display: grid;
}

.analytics-strip small {
  color: #8196ad;
  font-size: 0.5rem;
}

.analytics-strip b {
  font-size: 0.65rem;
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
}

.chart-area {
  fill: rgba(46, 134, 246, 0.11);
  stroke: none;
}

.float-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(205, 222, 240, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.float-chip .icon {
  color: var(--orange);
}

.chip-one {
  top: 26%;
  right: -24px;
  animation: float-y 5s ease-in-out infinite;
}

.chip-two {
  bottom: -15px;
  left: 48px;
  animation: float-y 5s 1.2s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fact-band {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: #fff;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.fact-grid article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}

.fact-grid article:first-child {
  border-left: 1px solid var(--line);
}

.fact-grid article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--sky);
  color: var(--blue);
}

.fact-grid article > div {
  min-width: 0;
  display: grid;
}

.fact-grid b {
  font-size: 0.75rem;
  line-height: 1.25;
}

.fact-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.25;
}

.section {
  padding-block: 92px;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(239, 247, 255, 0.7), rgba(250, 253, 255, 0.95)),
    linear-gradient(90deg, transparent 49.8%, rgba(40, 125, 230, 0.03) 50%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  max-width: none;
  margin: 0;
  text-align: left;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-inline: 0;
  text-align: left;
}

.section-heading.split > div {
  max-width: 760px;
}

.section-heading h2,
.visit-copy h2,
.counselling-copy h2,
.final-cta h2 {
  margin: 11px 0 13px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.043em;
  line-height: 1.08;
}

.section-heading h2 span {
  color: var(--blue);
}

.section-heading p,
.visit-copy > p,
.counselling-copy > p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

.section-heading.light p {
  color: #b9cee8;
}

.answer-section {
  padding-block: 82px;
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.text-link:hover {
  color: var(--orange);
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.answer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.answer-cards article {
  min-height: 230px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 17px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.answer-cards article:hover {
  border-color: #99c4f5;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.answer-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.42rem;
}

.answer-cards small {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.answer-cards h3 {
  margin: 5px 0 9px;
  color: var(--navy);
  font-size: 1.17rem;
  line-height: 1.25;
}

.answer-cards p,
.outcome-card p,
.audience-grid p,
.project-card p,
.tool-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.65;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.outcome-card {
  position: relative;
  min-height: 225px;
  padding: 25px 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 72, 130, 0.05);
  transition: 0.24s ease;
}

.outcome-card:hover {
  border-color: #89baf0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.outcome-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.25rem;
  transition: 0.22s ease;
}

.outcome-card:hover > span {
  background: var(--blue);
  color: #fff;
}

.outcome-card h3,
.audience-grid h3,
.project-card h3,
.tool-grid h3 {
  margin: 18px 0 7px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
}

.outcome-card > i {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: #8bb7e8;
  transition: 0.22s ease;
}

.outcome-card:hover > i {
  color: var(--orange);
  transform: translateX(4px);
}

.truth-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
  padding: 20px 23px;
  border: 1px solid #f4c6b0;
  border-radius: var(--radius-sm);
  background: #fff9f5;
}

.truth-strip > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffe8da;
  color: var(--orange);
  font-size: 1.25rem;
}

.truth-strip b {
  font-size: 0.9rem;
}

.truth-strip p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.audience-grid article {
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: 0.25s ease;
}

.audience-grid article:hover {
  border-color: var(--blue-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.audience-grid article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--sky), #f7fbff);
  color: var(--blue);
  font-size: 1.55rem;
}

.audience-grid article > b {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--teal);
  font-size: 0.69rem;
}

.tracks-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.tracks-section::before,
.tracks-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(116, 178, 250, 0.12);
  border-radius: 50%;
}

.tracks-section::before {
  top: -220px;
  right: -160px;
  width: 570px;
  height: 570px;
  box-shadow: 0 0 0 55px rgba(116, 178, 250, 0.04);
}

.tracks-section::after {
  bottom: -220px;
  left: -180px;
  width: 480px;
  height: 480px;
}

.tracks-section .shell {
  position: relative;
  z-index: 2;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.track-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(174, 207, 245, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  color: #fff;
  transition: 0.25s ease;
}

.track-card:hover {
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-5px);
}

.track-card.featured {
  background: linear-gradient(145deg, rgba(18, 104, 216, 0.74), rgba(12, 49, 96, 0.85));
  border-color: rgba(131, 190, 255, 0.7);
}

.recommend {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-head {
  display: grid;
  padding-right: 80px;
}

.track-head > span {
  color: #87bdff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.track-head > b {
  max-width: 430px;
  margin-top: 9px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.track-head > p {
  margin: 9px 0 0;
  color: #b9cee7;
  font-size: 0.73rem;
}

.track-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.track-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e2edf9;
  font-size: 0.78rem;
}

.track-card li .icon {
  color: #59dbc2;
}

.track-price {
  display: grid;
  padding-block: 20px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.track-price small {
  color: #92afd0;
  font-size: 0.63rem;
  text-transform: uppercase;
}

.track-price b {
  margin-top: 3px;
  font-size: 1.06rem;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 23px;
}

.tracks-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 25px auto 0;
  color: #a9c0da;
  font-size: 0.68rem;
  text-align: center;
}

.tracks-note .icon {
  color: #64d5bf;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 85px;
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  transition: background 0.2s ease;
}

.compare-row:not(.compare-head):hover {
  background: #f7fbff;
}

.compare-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-row > span:first-child .icon {
  color: var(--blue);
  font-size: 1.2rem;
}

.compare-row b {
  color: var(--navy);
}

.compare-row.compare-head {
  min-height: 52px;
  border-top: 0;
  background: var(--navy);
  color: #b9cee7;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare-row.is-current {
  background: #eff7ff;
}

.compare-row.is-current b {
  color: var(--blue);
}

.loop-section {
  background:
    radial-gradient(circle at 20% 40%, rgba(22, 107, 215, 0.2), transparent 32%),
    linear-gradient(125deg, #071d42, #0b3164);
}

.loop-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.loop-tab {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(149, 192, 242, 0.19);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #bcd3ed;
  text-align: left;
  transition: 0.22s ease;
}

.loop-tab:hover,
.loop-tab.is-active {
  border-color: #69aef7;
  background: rgba(19, 103, 211, 0.55);
  color: #fff;
  transform: translateY(-3px);
}

.loop-tab > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  color: #85c0ff;
}

.loop-tab b {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.64rem;
}

.loop-tab small {
  grid-column: 1 / -1;
  align-self: end;
  font-size: 0.7rem;
  font-weight: 800;
}

.loop-detail {
  min-height: 260px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 45px;
  margin-top: 16px;
  padding: 36px 60px;
  border: 1px solid rgba(149, 192, 242, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.loop-art {
  display: grid;
  place-items: center;
}

.loop-rings {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px dashed #4b94eb;
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(70, 147, 236, 0.07), 0 0 0 51px rgba(70, 147, 236, 0.035);
}

.loop-rings span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--blue-2), #074b9f);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
  color: #fff;
}

.loop-detail h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 2rem;
}

.loop-detail p {
  max-width: 650px;
  margin: 0;
  color: #bdd0e7;
  font-size: 0.91rem;
}

.loop-detail > div:last-child > b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: #81dccb;
  font-size: 0.75rem;
}

.example-section {
  background: #fffaf6;
}

.example-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 70px;
}

.brief-transform {
  display: grid;
  grid-template-columns: 0.8fr auto 1.2fr;
  align-items: center;
  gap: 15px;
}

.brief-transform article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 27px;
  border-radius: var(--radius-md);
}

.brief-before {
  border: 1px solid #eaded5;
  background: #fff;
  color: #6a788a;
}

.brief-after {
  border: 1px solid #a7ccef;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.brief-transform article > span {
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-transform article p {
  margin: 12px 0;
  font-size: 1.03rem;
  font-weight: 750;
  line-height: 1.45;
}

.brief-transform article small {
  color: #8394a7;
  font-size: 0.67rem;
}

.brief-after small {
  color: #aec6df !important;
}

.brief-transform > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.heading-action {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.curriculum-list {
  display: grid;
  gap: 11px;
}

.module-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-item:hover,
.module-item.is-open {
  border-color: #a4c8f0;
  box-shadow: var(--shadow-sm);
}

.module-trigger {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 47px 48px 1fr 38px;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.module-number {
  color: #9ab0c8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.module-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.2rem;
}

.module-heading {
  display: grid;
}

.module-heading b {
  color: var(--navy);
  font-size: 0.92rem;
}

.module-heading small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
}

.module-toggle,
.faq-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #f1f7fe;
  color: var(--blue);
}

.module-toggle .icon,
.faq-toggle .icon {
  transition: transform 0.25s ease;
}

.module-item.is-open .module-toggle .icon,
.faq-item.is-open .faq-toggle .icon {
  transform: rotate(45deg);
}

.module-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.module-item.is-open .module-panel {
  grid-template-rows: 1fr;
}

.module-panel-inner {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 0.9fr;
}

.module-panel-inner > div {
  padding: 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.module-panel-inner > div:last-child {
  border-right: 0;
}

.module-panel-inner span {
  color: var(--orange);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-panel-inner p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.module-output {
  background: #f4f9ff;
}

.module-output p {
  display: flex;
  gap: 6px;
  color: var(--navy);
  font-weight: 750;
}

.module-output p .icon {
  flex: 0 0 auto;
  color: var(--teal);
}

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.project-filters button,
.calendar-tabs button {
  min-height: 37px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.project-filters button:hover,
.project-filters button.is-active,
.calendar-tabs button:hover,
.calendar-tabs button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  min-height: 335px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 9px 26px rgba(19, 72, 130, 0.05);
  transition: 0.25s ease;
}

.project-card:hover {
  border-color: #85b7ee;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.project-card.is-hidden {
  display: none;
}

.project-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.project-number {
  color: #a3b8cd;
  font-size: 0.71rem;
  font-weight: 900;
}

.project-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.25rem;
}

.project-card h3 {
  margin-top: 7px;
}

.evidence {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.evidence b {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--teal);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.evidence span {
  color: #6a8099;
  font-size: 0.65rem;
  line-height: 1.45;
}

.capstone-section {
  background: var(--cream);
}

.capstone-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

.capstone-copy h2 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.capstone-copy > p {
  color: var(--muted);
  font-size: 0.91rem;
}

.capstone-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-block: 24px;
}

.capstone-options span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 750;
}

.capstone-board {
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 24px;
  background: #f3f8fe;
  box-shadow: var(--shadow-lg);
}

.board-head {
  min-height: 49px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #dae7f4;
  background: #fff;
  font-size: 0.66rem;
}

.board-head > span {
  display: flex;
  gap: 4px;
}

.board-head > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9d8e7;
}

.board-head small {
  justify-self: end;
  color: var(--teal);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 17px;
}

.board-grid article {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  border: 1px solid #dce8f5;
  border-radius: 12px;
  background: #fff;
}

.board-grid article > span {
  color: var(--blue);
  font-size: 1.1rem;
}

.board-grid article > b,
.board-grid article div b {
  color: var(--navy);
  font-size: 0.68rem;
}

.board-grid article > i {
  margin-top: auto;
  color: var(--teal);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.board-grid .wide {
  grid-column: 1 / -1;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.board-grid .wide div {
  display: grid;
}

.board-grid .wide small {
  color: var(--muted);
  font-size: 0.57rem;
}

.calendar-section {
  background: #f3f8fd;
}

.calendar-demo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.calendar-tabs {
  display: flex;
  gap: 7px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.calendar-demo-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  background: #fafcff;
}

.calendar-demo-head > div {
  display: grid;
}

.calendar-demo-head small {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.calendar-demo-head b {
  color: var(--navy);
  font-size: 1.05rem;
}

.calendar-demo-head > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.calendar-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.calendar-demo-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #fff;
}

.calendar-demo-grid article > span {
  color: var(--orange);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.calendar-demo-grid article > small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.65rem;
}

.calendar-demo-grid h3 {
  max-width: 280px;
  margin: 7px 0 20px;
  color: var(--navy);
  font-size: 1.03rem;
  line-height: 1.4;
}

.calendar-demo-grid article > b {
  margin-top: auto;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--sky);
  color: var(--blue);
  font-size: 0.6rem;
}

.ai-section {
  background:
    radial-gradient(circle at 82% 40%, rgba(27, 116, 230, 0.2), transparent 34%),
    var(--navy);
}

.ai-flow {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 9px;
}

.ai-flow article {
  position: relative;
  min-width: 0;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px 8px;
  border: 1px solid rgba(147, 194, 246, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: center;
}

.ai-flow article > small {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.56rem;
}

.ai-flow article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(61, 146, 250, 0.22);
  color: #85c1ff;
  font-size: 1.04rem;
}

.ai-flow article > b {
  font-size: 0.62rem;
  line-height: 1.35;
}

.ai-flow article > i {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  color: #5ba6f7;
}

.ai-boundaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 18px;
}

.ai-boundaries article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(71, 208, 171, 0.3);
  border-radius: 14px;
  background: rgba(29, 170, 162, 0.09);
}

.ai-boundaries article.no {
  border-color: rgba(247, 132, 77, 0.3);
  background: rgba(242, 106, 50, 0.08);
}

.ai-boundaries article > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(52, 208, 168, 0.18);
  color: #58dcc0;
}

.ai-boundaries article.no > span {
  background: rgba(242, 106, 50, 0.18);
  color: #ff9967;
}

.ai-boundaries b {
  color: #fff;
  font-size: 0.8rem;
}

.ai-boundaries p {
  margin: 4px 0 0;
  color: #aec5df;
  font-size: 0.69rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.tool-grid article {
  min-height: 255px;
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: 0.22s ease;
}

.tool-grid article:hover {
  border-color: #8ebced;
  transform: translateY(-4px);
}

.tool-grid article > span {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.3rem;
}

.disclosure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.disclosure .icon {
  color: var(--teal);
}

.method-section {
  background: #f4f9ff;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-track li {
  position: relative;
  min-width: 0;
  padding: 0 15px;
  text-align: center;
}

.method-track li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #bdd5ee;
}

.method-track li:first-child::before {
  left: 50%;
  width: 50%;
}

.method-track li:last-child::before {
  width: 50%;
}

.method-track li > span {
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border: 5px solid #f4f9ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #98c1ee;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
}

.method-track b {
  color: var(--navy);
  font-size: 0.72rem;
}

.method-track p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.5;
}

.assessment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.assessment-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.assessment-list article > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 0.75rem;
}

.assessment-list article > div span {
  color: var(--blue);
  font-weight: 900;
}

.assessment-list article > i {
  height: 7px;
  display: block;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8f0f8;
}

.assessment-list article > i span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.certificate-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f1f7fd;
  box-shadow: var(--shadow-md);
}

.certificate-paper {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  overflow: hidden;
  border: 9px double #d7b783;
  background:
    linear-gradient(135deg, rgba(247, 229, 198, 0.2), transparent 35%),
    #fffefa;
  text-align: center;
}

.certificate-paper::before,
.certificate-paper::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(23, 95, 177, 0.12);
  border-radius: 50%;
}

.certificate-paper::before {
  top: -75px;
  left: -75px;
  box-shadow: 0 0 0 22px rgba(23, 95, 177, 0.04);
}

.certificate-paper::after {
  right: -75px;
  bottom: -75px;
  box-shadow: 0 0 0 22px rgba(242, 106, 50, 0.04);
}

.certificate-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.certificate-paper > small {
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.certificate-paper > p {
  margin: 25px 0 3px;
  color: #9b7946;
  font-family: Georgia, serif;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-paper h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.25;
}

.certificate-paper > i {
  width: 120px;
  height: 1px;
  margin: 18px 0;
  background: #d6b278;
}

.certificate-name {
  color: #617187;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.certificate-paper > div {
  display: flex;
  gap: 18px;
  margin-top: 25px;
  color: #8390a0;
  font-size: 0.48rem;
  letter-spacing: 0.07em;
}

.seal {
  position: absolute;
  right: 32px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efd9ab;
  color: #a8782e;
  font-size: 1.7rem;
}

.certificate-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 17px 10px 4px;
}

.certificate-note > span {
  color: var(--orange);
  font-size: 1.35rem;
}

.certificate-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.certificate-note b {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.73rem;
}

.roles-section {
  background: linear-gradient(125deg, var(--navy), #0b356c);
}

.roles-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.role-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.role-list span {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(143, 188, 239, 0.22);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2edf8;
  font-size: 0.76rem;
  font-weight: 750;
  transition: 0.22s ease;
}

.role-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  width: 17px;
  height: 17px;
  border: 4px solid #4da3f9;
  border-radius: 50%;
  transform: translateY(-50%);
}

.role-list span:hover {
  border-color: #67adf3;
  background: rgba(17, 106, 216, 0.28);
  transform: translateX(3px);
}

.trainer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.trainer-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(38, 130, 244, 0.18), transparent 32%),
    #f4f9ff;
  color: var(--blue);
}

.trainer-visual::before,
.trainer-visual::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px dashed #a7c9ee;
  border-radius: 50%;
}

.trainer-visual::after {
  width: 285px;
  height: 285px;
  border-color: #d5e5f5;
}

.trainer-visual > span {
  position: relative;
  z-index: 3;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.trainer-visual > div i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 3px 10px rgba(20, 68, 120, 0.15);
}

.trainer-visual > div i:first-child {
  top: 45px;
  left: 90px;
}

.trainer-visual > div i:nth-child(2) {
  top: 90px;
  right: 70px;
  background: var(--teal);
}

.trainer-visual > div i:nth-child(3) {
  bottom: 60px;
  left: 105px;
  background: var(--blue);
}

.trainer-visual small {
  position: absolute;
  bottom: 26px;
  z-index: 4;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}

.check-list .icon {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--teal);
}

.visit-section {
  background: #f2f8ff;
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 65px;
}

.visit-copy h2,
.counselling-copy h2 {
  max-width: 590px;
}

.address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 23px;
}

.address-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--orange);
  font-size: 1.2rem;
}

.address-card b {
  color: var(--navy);
  font-size: 0.76rem;
}

.address-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.map-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 26px;
  background: #e9f2fb;
  box-shadow: var(--shadow-lg);
}

.map-card > svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.map-road {
  fill: none;
  stroke: #c8d8e8;
  stroke-width: 12;
}

.map-road.main {
  stroke: #fff;
  stroke-width: 28;
}

.map-road.small {
  stroke-width: 7;
}

.map-pulse {
  fill: rgba(242, 106, 50, 0.17);
  stroke: #f1a57f;
  stroke-width: 1;
}

.map-dot {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 7;
}

.map-label,
.map-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.map-label {
  top: 52%;
  left: 57%;
  padding: 12px 15px;
  border-radius: 12px;
}

.map-label > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff0e8;
  color: var(--orange);
}

.map-label > div {
  display: grid;
}

.map-label b {
  color: var(--navy);
  font-size: 0.68rem;
}

.map-label small {
  color: var(--muted);
  font-size: 0.56rem;
}

.map-chip {
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 750;
}

.map-chip .icon {
  color: var(--blue);
}

.checklist-section {
  padding-block: 72px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.checklist-grid article {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.checklist-grid article > span {
  color: #adc0d4;
  font-size: 0.64rem;
  font-weight: 900;
}

.checklist-grid article > b {
  color: var(--navy);
  font-size: 0.69rem;
  line-height: 1.35;
}

.checklist-grid article > .icon {
  color: var(--teal);
}

.counselling-section {
  background:
    radial-gradient(circle at 5% 10%, rgba(33, 124, 236, 0.16), transparent 24%),
    #f3f8fe;
}

.counselling-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.counselling-points {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.counselling-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
}

.counselling-points .icon {
  color: var(--blue);
}

.counselling-copy blockquote {
  margin: 29px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.enquiry-form {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.form-head > span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  font-size: 1.22rem;
}

.form-head > div {
  display: grid;
}

.form-head b {
  color: var(--navy);
  font-size: 1.08rem;
}

.form-head small {
  color: var(--muted);
  font-size: 0.65rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
}

.enquiry-form label > span {
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 750;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cedded;
  border-radius: 8px;
  outline: none;
  background: #fbfdff;
  color: var(--ink);
  font-size: 0.75rem;
  transition: 0.2s ease;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 102, 223, 0.1);
}

.enquiry-form .is-invalid {
  border-color: #d74d34;
  background: #fff8f5;
}

.wide-field {
  margin-top: 15px;
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 9px !important;
  margin-top: 15px;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.consent > span {
  color: var(--muted) !important;
  font-size: 0.61rem !important;
  font-weight: 500 !important;
}

.form-submit {
  width: 100%;
  margin-top: 17px;
}

.form-status {
  display: none;
  margin: 12px 0 0;
  padding: 10px;
  border-radius: 8px;
  background: #eaf9f4;
  color: #17785e;
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  color: #8296ad;
  font-size: 0.56rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 75px;
}

.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
}

.faq-contact > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--sky);
  color: var(--blue);
}

.faq-contact p {
  display: grid;
  margin: 0;
}

.faq-contact small {
  color: var(--muted);
  font-size: 0.6rem;
}

.faq-contact b {
  font-size: 0.77rem;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: #9fc6ef;
}

.faq-question {
  width: 100%;
  min-height: 67px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 13px 16px 13px 20px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding-inline: 20px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 19px;
}

.final-cta {
  padding-block: 82px;
  background: #fff;
}

.final-cta-inner {
  position: relative;
  min-height: 335px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 40px;
  padding: 50px 60px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 50%, rgba(60, 153, 255, 0.27), transparent 26%),
    linear-gradient(125deg, #071e45, #0b3c79);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.03);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
}

.final-cta p {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #b9cee7;
}

.final-cta .hero-actions {
  position: relative;
  z-index: 2;
}

.cta-visual {
  position: relative;
  min-height: 240px;
}

.cta-phone {
  position: absolute;
  right: 60px;
  bottom: -48px;
  width: 180px;
  height: 300px;
  padding: 25px;
  border: 7px solid #fff;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(145deg, var(--blue), #073c81);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
  transform: rotate(7deg);
}

.cta-phone > span {
  width: 55px;
  height: 5px;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
}

.cta-phone b {
  display: block;
  margin-top: 43px;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.15;
}

.cta-phone i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-top: 25px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.cta-bubble {
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fbfe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.65fr) 1.2fr;
  gap: 45px;
  padding-block: 57px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid > div > b {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.72rem;
}

.footer-grid a,
.footer-grid button,
.footer-grid p,
.footer-brand > small {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.55;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--blue);
}

.footer-brand > p {
  max-width: 270px;
  margin: 18px 0 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #8093a9;
  font-size: 0.58rem;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 16px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8093a9;
}

.footer-bottom button:hover {
  color: var(--blue);
}

.mobile-action-bar {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(13, 102, 223, 0.25);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.22s ease;
}

.back-to-top .icon {
  transform: rotate(-90deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid #b6dfd3;
  border-radius: 12px;
  background: #effbf7;
  box-shadow: var(--shadow-md);
  color: #176f58;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.23s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d9f2ea;
}

.toast p {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 750;
}

.policy-dialog {
  width: min(520px, calc(100% - 30px));
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.policy-dialog::backdrop {
  background: rgba(6, 28, 61, 0.72);
  backdrop-filter: blur(4px);
}

.policy-dialog h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 1.6rem;
}

.policy-dialog p {
  color: var(--muted);
  font-size: 0.78rem;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
}

@media (max-width: 1150px) {
  :root {
    --shell: min(calc(100% - 36px), 1050px);
  }

  .desktop-nav > a,
  .nav-group > button {
    padding-inline: 7px;
  }

  .header-inner {
    gap: 16px;
  }

  .hero-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 30px;
  }

  .chip-one {
    right: -5px;
  }

  .outcome-grid,
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tool-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-track {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 34px;
  }

  .method-track li:nth-child(5)::before,
  .method-track li:last-child::before {
    width: 50%;
  }

  .method-track li:nth-child(6)::before {
    left: 50%;
    width: 50%;
  }

  .ai-flow {
    grid-template-columns: repeat(5, 1fr);
  }

  .ai-flow article > i {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
}

@media (max-width: 960px) {
  .announcement {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    min-height: 70px;
    justify-content: space-between;
  }

  .nav-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .mobile-panel {
    position: fixed;
    inset: 70px 0 0;
    z-index: 120;
    display: block;
    padding: 20px;
    background: rgba(5, 27, 60, 0.78);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .mobile-panel.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel nav {
    display: grid;
    gap: 4px;
    padding: 15px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    transition: transform 0.22s ease;
  }

  .mobile-panel.is-open nav {
    transform: translateY(0);
  }

  .mobile-panel a {
    padding: 13px 12px;
    border-bottom: 1px solid #edf2f7;
    color: var(--ink);
    font-size: 0.81rem;
    font-weight: 750;
  }

  .mobile-panel .button {
    margin-top: 9px;
    color: #fff;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 72px 86px;
  }

  .hero-copy {
    max-width: 760px;
    padding: 0;
  }

  .hero h1 {
    max-width: 780px;
  }

  .hero-studio {
    width: min(700px, 95%);
    margin: 0 auto;
  }

  .fact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact-grid article:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .fact-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .answer-grid,
  .example-grid,
  .capstone-grid,
  .assessment-grid,
  .trainer-grid,
  .visit-grid,
  .counselling-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 15px;
  }

  .section-heading.split > p {
    max-width: 720px;
  }

  .outcome-grid,
  .audience-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .track-grid {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr 0.85fr 1fr;
    gap: 15px;
  }

  .loop-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .module-panel-inner {
    grid-template-columns: 1fr 1fr;
  }

  .module-panel-inner > div:nth-child(2) {
    border-right: 0;
  }

  .module-panel-inner > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-aside {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr 0.55fr;
    padding: 46px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-grid > div:nth-child(4) {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(calc(100% - 28px), 620px);
    --radius-lg: 22px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    top: 0;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand b {
    font-size: 0.85rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .nav-toggle span {
    display: none;
  }

  .hero-grid {
    gap: 45px;
    padding-block: 54px 72px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .studio-window {
    border-width: 5px;
    border-radius: 18px;
    transform: none;
  }

  .window-bar {
    grid-template-columns: auto 1fr;
  }

  .window-bar > b {
    text-align: center;
  }

  .live-pill {
    display: none;
  }

  .studio-body {
    min-height: 350px;
    grid-template-columns: 43px 1fr;
  }

  .studio-sidebar {
    padding-inline: 5px;
  }

  .studio-sidebar button {
    width: 32px;
    height: 32px;
  }

  .mini-brand {
    width: 29px;
    height: 29px;
  }

  .studio-main {
    padding: 12px;
  }

  .studio-title button {
    padding: 6px;
  }

  .studio-title button .icon {
    display: none;
  }

  .metric-row article {
    padding: 7px;
  }

  .metric-row small {
    display: none;
  }

  .studio-columns {
    grid-template-columns: 1fr;
  }

  .content-preview {
    display: none;
  }

  .analytics-strip {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .float-chip {
    font-size: 0.55rem;
  }

  .chip-one {
    top: 19%;
  }

  .chip-two {
    left: 20px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid article,
  .fact-grid article:first-child,
  .fact-grid article:nth-child(4) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .visit-copy h2,
  .counselling-copy h2,
  .final-cta h2,
  .capstone-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .answer-cards,
  .outcome-grid,
  .audience-grid,
  .project-grid,
  .tool-grid,
  .ai-boundaries,
  .role-list,
  .calendar-demo-grid {
    grid-template-columns: 1fr;
  }

  .answer-cards article {
    min-height: auto;
    padding: 23px;
  }

  .outcome-card {
    min-height: 200px;
  }

  .audience-grid article {
    min-height: 225px;
  }

  .track-card {
    padding: 26px 22px;
  }

  .recommend {
    position: static;
    display: inline-flex;
    margin-bottom: 15px;
  }

  .track-head {
    padding-right: 0;
  }

  .card-actions {
    flex-direction: column;
  }

  .compare-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: auto;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow-sm);
  }

  .compare-head {
    display: none;
  }

  .loop-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .loop-tab {
    min-height: 96px;
  }

  .loop-detail {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 38px 25px;
  }

  .loop-rings {
    width: 135px;
    height: 135px;
  }

  .loop-detail h3 {
    font-size: 1.5rem;
  }

  .brief-transform {
    grid-template-columns: 1fr;
  }

  .brief-transform > i {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .module-trigger {
    min-height: 94px;
    grid-template-columns: 35px 42px 1fr 32px;
    gap: 8px;
    padding: 14px 12px;
  }

  .module-icon {
    width: 40px;
    height: 40px;
  }

  .module-heading small {
    display: none;
  }

  .module-panel-inner {
    grid-template-columns: 1fr;
  }

  .module-panel-inner > div {
    border-right: 0;
  }

  .project-filters {
    justify-content: flex-start;
  }

  .project-card {
    min-height: 300px;
  }

  .capstone-board {
    border-width: 5px;
  }

  .board-head {
    grid-template-columns: auto 1fr;
  }

  .board-head b {
    text-align: center;
  }

  .board-head small {
    display: none;
  }

  .board-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .board-grid .wide {
    grid-column: 1 / -1;
  }

  .calendar-tabs {
    overflow-x: auto;
  }

  .calendar-demo-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-demo-grid {
    gap: 1px;
  }

  .calendar-demo-grid article {
    min-height: 185px;
  }

  .ai-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .ai-flow article {
    min-height: 125px;
  }

  .method-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-track li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 13px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    text-align: left;
  }

  .method-track li::before {
    display: none;
  }

  .method-track li > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .method-track p {
    margin-top: 3px;
  }

  .certificate-paper {
    min-height: 350px;
    padding: 35px 20px;
  }

  .certificate-paper h3 {
    font-size: 1.35rem;
  }

  .certificate-paper > div {
    gap: 8px;
    font-size: 0.39rem;
  }

  .roles-grid {
    gap: 34px;
  }

  .map-card {
    min-height: 340px;
  }

  .map-label {
    left: 36%;
  }

  .checklist-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 23px 18px;
  }

  .faq-question {
    padding-left: 15px;
  }

  .final-cta {
    padding-block: 55px;
  }

  .final-cta-inner {
    min-height: 600px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 38px 25px;
  }

  .cta-visual {
    min-height: 240px;
  }

  .cta-phone {
    right: 34px;
  }

  .cta-bubble {
    left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: auto;
  }

  .footer-contact {
    grid-column: 1 / -1 !important;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 160;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 64px;
    padding: 7px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(8, 36, 76, 0.1);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 850;
  }

  .mobile-action-bar button.primary {
    background: var(--blue);
    color: #fff;
  }

  .back-to-top {
    right: 12px;
    bottom: 76px;
  }

  .toast {
    right: 14px;
    bottom: 80px;
    left: 14px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* AI AUTOMATION FOR BUSINESS — PAGE-SPECIFIC SYSTEM */
.automation-hero-section {
  background:
    radial-gradient(circle at 83% 22%, rgba(74, 151, 255, 0.16), transparent 26rem),
    radial-gradient(circle at 10% 80%, rgba(242, 106, 50, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #fff 88%);
}

.automation-canvas {
  position: relative;
  min-width: 0;
  overflow: visible;
  border: 1px solid rgba(160, 198, 239, 0.85);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(7, 45, 97, 0.2);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  animation: automation-float 7s ease-in-out infinite;
}

.canvas-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid #dce9f7;
  border-radius: 24px 24px 0 0;
  background: #f7fbff;
  color: var(--navy);
}

.canvas-head > span {
  display: flex;
  gap: 5px;
}

.canvas-head > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b5c9df;
}

.canvas-head > span i:first-child {
  background: var(--orange);
}

.canvas-head > b {
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.canvas-head > em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid #bde6d9;
  border-radius: 999px;
  background: #eaf9f4;
  color: #14745b;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
}

.canvas-head > em i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24a67e;
  box-shadow: 0 0 0 4px rgba(36, 166, 126, 0.12);
}

.canvas-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 395px;
}

.canvas-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 16px 10px;
  border-right: 1px solid #dbe9f7;
  border-radius: 0 0 0 24px;
  background: linear-gradient(180deg, #082a57, #061e43);
}

.canvas-rail .mini-brand {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 900;
}

.canvas-rail > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #b8d5f6;
}

.canvas-rail > i:first-of-type {
  background: rgba(61, 145, 247, 0.3);
  color: #fff;
}

.workflow-board {
  position: relative;
  min-width: 0;
  padding: 23px 20px 18px;
  overflow: hidden;
  border-radius: 0 0 24px;
  background:
    linear-gradient(rgba(29, 106, 196, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 106, 196, 0.055) 1px, transparent 1px),
    #fbfdff;
  background-size: 25px 25px;
}

.board-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.board-title > div {
  display: grid;
}

.board-title small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.board-title b {
  color: var(--navy);
  font-size: 0.92rem;
}

.board-title > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid #b9d8fb;
  border-radius: 9px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 800;
}

.workflow-line {
  position: absolute;
  top: 172px;
  right: 32px;
  left: 46px;
  height: 2px;
  background: linear-gradient(90deg, #75adf0, #6b8df0 57%, #f0905e 74%, #1ba79a);
}

.workflow-nodes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 72px;
}

.workflow-nodes article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 13px 7px 11px;
  border: 1px solid #d4e4f5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 25px rgba(22, 72, 128, 0.1);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.workflow-nodes article:hover {
  border-color: #87bdf7;
  box-shadow: 0 16px 32px rgba(17, 86, 164, 0.16);
  transform: translateY(-5px);
}

.workflow-nodes article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eaf4ff;
  color: var(--blue);
}

.workflow-nodes .node-ai > span {
  background: #eef0ff;
  color: #625be6;
}

.workflow-nodes .node-human {
  border: 2px solid #f59a72;
  background: #fff9f6;
  box-shadow: 0 14px 35px rgba(224, 93, 43, 0.17);
}

.workflow-nodes .node-human > span {
  background: #fff0e9;
  color: var(--orange);
}

.workflow-nodes .node-action > span {
  background: #e9f8f4;
  color: #158772;
}

.workflow-nodes b {
  min-height: 30px;
  color: var(--navy);
  font-size: 0.65rem;
  line-height: 1.2;
}

.workflow-nodes small {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
}

.workflow-log {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 46px;
}

.workflow-log span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border: 1px solid #d8e7f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: #526d8b;
  font-size: 0.58rem;
  font-weight: 750;
}

.workflow-log i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #24a67e;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.principle-grid article {
  padding: 25px;
  border: 1px solid #d4e5f5;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.principle-grid article > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  background: #eaf4ff;
  color: var(--blue);
}

.principle-grid h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1.03rem;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.loop-four {
  grid-template-columns: repeat(4, 1fr);
}

.project-six {
  grid-template-columns: repeat(3, 1fr);
}

.scenario-section {
  background: linear-gradient(180deg, #fff, #f6faff);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.scenario-grid article {
  position: relative;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #d7e5f4;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.scenario-grid article::after {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #edf6ff;
  content: "";
}

.scenario-grid article:hover {
  border-color: #8fbff3;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.scenario-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e7f2ff, #f7fbff);
  color: var(--blue);
}

.scenario-grid h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1rem;
}

.scenario-grid p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.scenario-grid small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #157a61;
  font-weight: 800;
}

.automation-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 8px;
  padding: 40px 25px 72px;
  border: 1px solid #cfe1f4;
  border-radius: 23px;
  background:
    linear-gradient(rgba(26, 100, 187, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 100, 187, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
  box-shadow: var(--shadow-md);
}

.automation-map > i {
  color: #7ea8d5;
}

.automation-map .measure-node {
  min-width: 0;
  padding: 16px 10px;
}

.automation-map .approval-node {
  border: 2px solid #f19b75;
  background: #fff8f4;
}

.automation-map .measure-note {
  right: 25px;
  bottom: 19px;
  left: 25px;
  justify-content: center;
}

.automation-qa {
  grid-template-columns: repeat(9, 1fr);
}

.cost-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 930px;
  margin: 24px auto 14px;
  padding: 20px 22px;
  border: 1px solid #f3cbb8;
  border-radius: 16px;
  background: #fff8f3;
}

.cost-disclosure > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #ffeadf;
  color: var(--orange);
}

.cost-disclosure b {
  color: var(--navy);
}

.cost-disclosure p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.fee-card .fee-amount b {
  max-width: 20ch;
  font-size: 1.65rem;
  line-height: 1.2;
}

.cta-automation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 405px;
  min-height: 190px;
  color: var(--blue);
}

.cta-automation > .icon-xl {
  position: absolute;
  width: 12rem;
  height: 12rem;
  opacity: 0.06;
}

.cta-automation > span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #c8dff7;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cta-automation > span:nth-of-type(3) {
  border-color: #f2b494;
  background: #fff5f0;
  color: var(--orange);
}

.cta-automation > i {
  position: relative;
  z-index: 1;
  color: #80a9d5;
}

@keyframes automation-float {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .automation-canvas {
    transform: none;
    animation: none;
  }

  .workflow-nodes {
    gap: 6px;
  }

  .workflow-nodes article {
    padding-inline: 5px;
  }

  .automation-qa {
    grid-template-columns: repeat(5, 1fr);
  }

  .automation-qa article:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 960px) {
  .project-six,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-canvas {
    max-width: 720px;
    margin: 10px auto 0;
  }

  .cta-automation {
    min-width: 300px;
  }
}

@media (max-width: 700px) {
  .automation-canvas {
    border-radius: 18px;
  }

  .canvas-head {
    min-height: 44px;
    padding-inline: 12px;
    border-radius: 17px 17px 0 0;
  }

  .canvas-head > b {
    font-size: 0.66rem;
  }

  .canvas-head > em {
    padding: 4px 7px;
    font-size: 0.56rem;
  }

  .canvas-body {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 430px;
  }

  .canvas-rail {
    gap: 14px;
    padding-inline: 7px;
    border-radius: 0 0 0 17px;
  }

  .canvas-rail .mini-brand,
  .canvas-rail > i {
    width: 27px;
    height: 27px;
  }

  .workflow-board {
    padding: 16px 12px 14px;
    border-radius: 0 0 17px;
  }

  .board-title > span {
    display: none;
  }

  .workflow-line {
    display: none;
  }

  .workflow-nodes {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .workflow-nodes .node-action {
    grid-column: 1 / -1;
  }

  .workflow-nodes b {
    min-height: 0;
  }

  .workflow-log {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 12px;
  }

  .workflow-log span {
    padding: 7px;
  }

  .principle-grid,
  .project-six,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .loop-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-map {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 18px 74px;
  }

  .automation-map > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .automation-map .measure-note {
    right: 18px;
    left: 18px;
  }

  .automation-qa {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-disclosure {
    padding: 18px;
  }

  .cta-automation {
    width: 100%;
    min-width: 0;
    min-height: 135px;
    gap: 6px;
  }

  .cta-automation > span {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .canvas-head > em {
    display: none;
  }

  .workflow-nodes {
    grid-template-columns: 1fr;
  }

  .workflow-nodes .node-action {
    grid-column: auto;
  }

  .canvas-body {
    min-height: 620px;
  }

  .loop-four {
    grid-template-columns: 1fr;
  }

  .automation-qa {
    grid-template-columns: 1fr;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-action-bar,
  .back-to-top,
  .toast,
  .hero-studio,
  button {
    display: none !important;
  }

  .section,
  .hero {
    padding-block: 28px;
  }

  .module-panel,
  .faq-answer {
    grid-template-rows: 1fr !important;
  }
}

/* Shared advanced card and visual primitives */
.ads-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 11px;
  margin-top: 11px;
}

.keyword-panel,
.ad-preview {
  min-height: 150px;
  padding: 13px;
  border: 1px solid #deebf7;
  border-radius: 12px;
  background: #fff;
}

.keyword-row {
  display: grid;
  grid-template-columns: 68px 1fr 18px;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #6e849c;
  font-size: .5rem;
}

.keyword-row > i {
  height: 5px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8f1fa;
}

.keyword-row > i b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #61aaff);
}

.keyword-row em {
  color: var(--navy);
  font-style: normal;
  font-weight: 850;
}

.negative-chip {
  display: inline-flex;
  margin-top: 13px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #fff1ea;
  color: var(--orange);
  font-size: .48rem;
  font-weight: 800;
}

.ad-preview {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 4px 6px;
}

.ad-preview small,
.ad-preview b,
.ad-preview a,
.ad-preview p {
  width: 100%;
}

.ad-preview small {
  color: #536a82;
  font-size: .47rem;
}

.ad-preview b {
  color: #1559aa;
  font-size: .72rem;
}

.ad-preview a {
  color: #277b55;
  font-size: .47rem;
}

.ad-preview p {
  margin: 4px 0;
  color: #5f738a;
  font-size: .49rem;
  line-height: 1.45;
}

.ad-preview span {
  padding: 4px 6px;
  border-radius: 4px;
  background: #f1f7fe;
  color: var(--blue);
  font-size: .44rem;
}

.audience-six {
  grid-template-columns: repeat(3, 1fr);
}

.loop-five {
  grid-template-columns: repeat(5, 1fr);
}

.project-four {
  grid-template-columns: repeat(4, 1fr);
}

.measurement-map {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 35px;
  border: 8px solid #fff;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(49, 139, 245, .18), transparent 32%),
    #edf6ff;
  box-shadow: var(--shadow-lg);
}

.measure-node {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #cfe1f4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.measure-node > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 11px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.15rem;
}

.measure-node b {
  color: var(--navy);
  font-size: .72rem;
}

.measure-node small {
  color: var(--muted);
  font-size: .55rem;
}

.measurement-map > i {
  color: var(--orange);
}

.measure-node:nth-of-type(3) {
  grid-column: 1;
}

.measure-node:nth-of-type(4) {
  grid-column: 3;
}

.measure-note {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.campaign-section {
  background: #f3f8fd;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.campaign-grid article {
  min-height: 235px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: .24s ease;
}

.campaign-grid article:hover {
  border-color: #8bbced;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.campaign-grid article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.3rem;
}

.campaign-grid h3 {
  margin: 17px 0 7px;
  color: var(--navy);
  font-size: 1.02rem;
}

.campaign-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.campaign-grid b {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  color: var(--teal);
  font-size: .63rem;
}

.method-six {
  grid-template-columns: repeat(6, 1fr);
}

/* n8n course identity: a calm technical canvas with distinct node-and-wire cues. */
.n8n-canvas {
  border-color: rgba(62, 143, 255, .42);
  background: linear-gradient(155deg, #07182f, #0b274c 62%, #0b315b);
  box-shadow: 0 34px 90px rgba(4, 25, 55, .28);
}

.n8n-canvas .workflow-board {
  background-color: #f9fbff;
  background-image:
    linear-gradient(rgba(20, 86, 156, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 86, 156, .055) 1px, transparent 1px);
  background-size: 22px 22px;
}

.n8n-canvas .workflow-line {
  background: linear-gradient(90deg, #2595f0, #29b4bb 44%, #f26a32 72%, #2a7ae8);
  box-shadow: 0 0 0 4px rgba(32, 131, 222, .08);
}

.n8n-canvas .workflow-nodes article {
  box-shadow: 0 9px 22px rgba(9, 57, 110, .12);
}

.n8n-canvas .node-human {
  border-color: rgba(242, 106, 50, .55);
  background: #fffaf6;
}

.n8n-canvas .workflow-log span:nth-child(2) i,
.n8n-canvas .workflow-log span:nth-child(3) i {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 106, 50, .12);
}

.project-eight {
  grid-template-columns: repeat(4, 1fr);
}

.project-eight .project-card {
  min-height: 100%;
}

.method-seven {
  grid-template-columns: repeat(7, 1fr);
}

.fee-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: stretch;
  gap: 22px;
}

.fee-card {
  background: linear-gradient(145deg, rgba(18, 104, 216, .78), rgba(12, 49, 96, .9));
}

.fee-amount {
  display: grid;
  padding: 20px 0;
  border-block: 1px solid rgba(255,255,255,.14);
}

.fee-amount small {
  color: #a8c2df;
  font-size: .63rem;
  text-transform: uppercase;
}

.fee-amount b {
  margin-top: 2px;
  color: #fff;
  font-size: 2.2rem;
}

.budget-policy {
  padding: 38px;
  border: 1px solid rgba(146, 190, 241, .25);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.budget-policy h3 {
  margin: 10px 0;
  font-size: 1.65rem;
}

.budget-policy > p {
  color: #b9cee7;
  font-size: .8rem;
}

.budget-policy > div {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}

.budget-policy > div span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfeaf7;
  font-size: .72rem;
}

.budget-policy > div .icon {
  color: #59dbc2;
}

@media (max-width: 960px) {
  .audience-six,
  .campaign-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fee-grid {
    grid-template-columns: 1fr;
  }
  .loop-five {
    grid-template-columns: repeat(3, 1fr);
  }
  .method-six {
    grid-template-columns: repeat(3, 1fr);
  }
  .method-seven {
    grid-template-columns: repeat(4, 1fr);
  }
  .project-eight {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .ads-grid {
    grid-template-columns: 1fr;
  }
  .ad-preview {
    display: none;
  }
  .audience-six,
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  .loop-five {
    grid-template-columns: 1fr 1fr;
  }
  .measurement-map {
    grid-template-columns: 1fr;
    padding: 25px 20px 75px;
  }
  .measurement-map > i {
    margin: auto;
    transform: rotate(90deg);
  }
  .measure-node,
  .measure-node:nth-of-type(3),
  .measure-node:nth-of-type(4) {
    grid-column: 1;
  }
  .method-six {
    grid-template-columns: 1fr;
  }
  .method-seven,
  .project-eight {
    grid-template-columns: 1fr;
  }
  .budget-policy {
    padding: 27px 22px;
  }
}
