:root {
  --navy: #091a34;
  --navy-2: #102847;
  --blue: #2f73e6;
  --blue-soft: #dce9fb;
  --bg: #eef2f8;
  --section: #e3eaf4;
  --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 252, 255, 1) 100%);
  --card-gradient-strong: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 251, 255, 1) 100%);
  --card-gradient-soft: linear-gradient(180deg, rgba(254, 255, 255, 1) 0%, rgba(249, 252, 255, 1) 100%);
  --text: #101826;
  --muted: #526072;
  --line: #cfd8e6;
  --shadow: 0 22px 56px rgba(9, 26, 52, 0.16);
  --radius: 24px;
  --radius-lg: 30px;
}

@view-transition {
  navigation: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}

html.reduce-motion,
body.reduce-motion {
  scroll-behavior: auto;
}

.section[id],
.page-hero[id],
main section[id] {
  scroll-margin-top: 8.5rem;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(180deg, rgba(10, 22, 46, 0.56) 0%, rgba(24, 44, 82, 0.38) 38%, rgba(215, 226, 241, 0.82) 100%),
    radial-gradient(circle at 12% 8%, rgba(110, 153, 230, 0.18), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(129, 160, 214, 0.14), transparent 22%),
    url("./assets/images/troavnt back.png") center top / cover no-repeat fixed;
  background-color: var(--bg);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-shell::before {
  background: linear-gradient(180deg, rgba(33, 54, 92, 0.18), rgba(108, 132, 171, 0.22));
  opacity: 0.14;
  transform: scale(1.04);
}

.page-shell::after {
  background: linear-gradient(180deg, rgba(21, 36, 67, 0.12), rgba(111, 134, 171, 0.08));
  opacity: 0.08;
  filter: blur(1.5px);
}

.ambient {
  position: fixed;
  inset: auto;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
  z-index: -1;
}

.ambient-a {
  top: -8rem;
  left: -10rem;
  background: rgba(47, 115, 230, 0.18);
}

.ambient-b {
  top: 14rem;
  right: -12rem;
  background: rgba(9, 26, 52, 0.18);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 1.5rem;
  margin: 1rem auto 0;
  width: calc(100% - 2rem);
  border: 1px solid rgba(185, 198, 216, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.96) 0%, rgba(236, 243, 251, 0.94) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(9, 26, 52, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 0.12rem;
}

.brand-name {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-wordmark {
  width: auto;
  height: 1.85rem;
  display: block;
  object-fit: contain;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav a:focus-visible,
.topbar-links a:focus-visible,
.site-topbar-toggle:focus-visible,
.card-top a:focus-visible,
.consult-actions a:focus-visible,
.dev-selector-toggle:focus-visible,
.dev-selector-close:focus-visible,
.dev-selector-copy:focus-visible,
.dev-selector-clear:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1d56ba 100%);
  color: white;
  box-shadow: 0 14px 30px rgba(47, 115, 230, 0.24);
}

.btn-secondary {
  background: rgba(246, 249, 253, 0.94);
  color: var(--navy);
  border-color: var(--line);
}

main {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 10px 0;
}

.section {
  position: relative;
  padding: 10px 0;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.92) 0%, rgba(234, 242, 251, 0.92) 100%);
  border: 1px solid rgba(198, 210, 226, 0.72);
  box-shadow: 0 22px 48px rgba(9, 26, 52, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.section > .section-title-row,
.section > .section-inner,
.section > .summary-carousel,
.section > .feature-grid,
.section > .result-grid,
.section > .page-split,
.section > .workflow-card,
.section > .service-grid,
.section > .dark-block,
.section > .consult-actions {
  padding-inline: 1.75rem;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0.35rem -0.4rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(202, 214, 232, 0.48), rgba(180, 198, 223, 0.34)),
    radial-gradient(circle at top left, rgba(82, 116, 175, 0.16), transparent 34%);
  opacity: 0.88;
  pointer-events: none;
  z-index: -1;
}

.section::after {
  content: "";
  position: absolute;
  inset: 1rem 0.6rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(214, 226, 242, 0.02));
  opacity: 1;
  pointer-events: none;
  z-index: -2;
}

#outputs.section::before,
#workflow.section::before,
#mentor.section::before,
#zoom.section::before {
  background:
    linear-gradient(180deg, rgba(18, 33, 60, 0.82), rgba(33, 57, 96, 0.72)),
    radial-gradient(circle at top left, rgba(103, 150, 235, 0.22), transparent 34%);
  opacity: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 60px rgba(11, 21, 41, 0.18);
}

#outputs.section,
#workflow.section,
#mentor.section,
#zoom.section {
  background: linear-gradient(180deg, rgba(18, 33, 60, 0.88) 0%, rgba(29, 52, 91, 0.86) 100%);
  border-color: rgba(112, 141, 193, 0.28);
  box-shadow: 0 28px 60px rgba(11, 21, 41, 0.2);
}

#outputs.section::after,
#workflow.section::after,
#mentor.section::after,
#zoom.section::after {
  background: linear-gradient(180deg, rgba(10, 20, 39, 0.14), rgba(24, 41, 71, 0.06));
  opacity: 1;
}

#outputs .section-title-row h2,
#workflow .section-title-row h2,
#mentor .section-title-row h2,
#zoom .section-title-row h2 {
  color: #f5f8ff;
}

#outputs .section-title-row p,
#workflow .section-title-row p,
#mentor .section-title-row p,
#zoom .section-title-row p {
  color: rgba(223, 232, 248, 0.78);
}

#outputs .section-meta,
#workflow .section-meta,
#mentor .section-meta,
#zoom .section-meta {
  color: #9db6dd;
}

#outputs .section-title-row::after,
#workflow .section-title-row::after,
#mentor .section-title-row::after,
#zoom .section-title-row::after {
  background: linear-gradient(90deg, #8bb1ff, rgba(139, 177, 255, 0));
  opacity: 0.92;
}

.dark-section {
  padding-inline: 1.2rem;
}

.section-meta {
  position: absolute;
  left: 0;
  top: 1.2rem;
  color: #6f819a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #2559bf;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow-icon img {
  width: 1rem;
  height: 1rem;
  display: block;
  flex: 0 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: 760px;
}

.hero-copy h1,
.section-head h2,
.split-copy h2,
.dark-copy h2,
.timeline-summary h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.06;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.hero-copy .lead,
.section-head p,
.split-copy p,
.dark-copy p,
.timeline-summary p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1.2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-pills span,
.dark-features div {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 210, 226, 0.92);
  background: rgba(242, 246, 252, 0.88);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(9, 26, 52, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.stat-card,
.trust-card,
.service-card,
.case-card,
.persona-card,
.category-card,
.portfolio-card-lg,
.timeline-list article,
.workflow-step,
.kanban-col,
.contact-cta,
.contact-form,
.split-card,
.timeline,
.dark-block {
  border: 1px solid rgba(198, 210, 226, 0.95);
  background: rgba(244, 248, 252, 0.9);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
}

.stat-card strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--muted);
}

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

.hero-photo {
  position: relative;
  height: 100%;
  min-height: 760px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 12%, rgba(47, 128, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #f1f5fb 0%, #e7edf6 52%, #dde6f1 100%);
  border: 1px solid rgba(198, 210, 226, 0.95);
  overflow: hidden;
}

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

.photo-a {
  width: 280px;
  height: 280px;
  right: 12%;
  top: 6%;
  background: linear-gradient(180deg, #1f2937 0%, #050b18 100%);
  box-shadow: 0 30px 60px rgba(7, 26, 53, 0.18);
}

.photo-b {
  width: 160px;
  height: 420px;
  right: 33%;
  top: 18%;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #cfd9ea 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.photo-card {
  position: absolute;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 35px rgba(7, 26, 53, 0.1);
  backdrop-filter: blur(10px);
}

.mini-label {
  color: var(--muted);
  font-size: 0.8rem;
}

.mini-value {
  margin-top: 0.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ai-card {
  width: 220px;
  left: 4%;
  top: 7%;
  background: linear-gradient(135deg, #0b1f42 0%, #172c57 100%);
  color: white;
}

.progress-card {
  width: 180px;
  left: 5%;
  top: 34%;
}

.ring {
  margin-top: 0.6rem;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--blue) 0 78%, #dbe6f5 78% 100%);
}

.ring::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
}

.ring span {
  position: relative;
  font-weight: 800;
}

.portfolio-card {
  width: 270px;
  right: 6%;
  top: 26%;
}

.portfolio-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.portfolio-thumbs div,
.shot-a,
.shot-b,
.shot-c,
.shot-d {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(47, 128, 255, 0.92), rgba(7, 26, 53, 0.88));
}

.portfolio-thumbs div {
  height: 66px;
}

.roadmap-card {
  width: 260px;
  right: 2%;
  bottom: 8%;
}

.trust-row,
.service-grid,
.case-grid,
.persona-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card,
.service-card,
.case-card,
.persona-card,
.category-card {
  border-radius: 24px;
  padding: 1.55rem 1.9rem;
}

.trust-card {
  min-height: 170px;
}

.trust-icon,
.service-icon,
.persona-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.trust-card strong {
  display: block;
  margin: 0.95rem 0 0.2rem;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.trust-card p,
.service-card p,
.case-card p,
.persona-card p,
.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-card,
.timeline {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 34px;
}

.ceo-portrait {
  position: relative;
  min-height: 360px;
}

.portrait-bg {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(47, 128, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #f4f7fc 0%, #e6eef8 100%);
}

.portrait-frame {
  position: absolute;
  inset: 10%;
  border-radius: 26px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 26, 53, 0.1), rgba(7, 26, 53, 0.02));
}

.avatar {
  width: 52%;
  height: 84%;
  border-radius: 32px 32px 22px 22px;
  background: linear-gradient(180deg, #1f2937 0%, #0f172a 100%);
  box-shadow: 0 24px 60px rgba(7, 26, 53, 0.18);
  position: relative;
}

.avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 56%;
  height: 28%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #d9b38c;
  box-shadow: 0 30px 0 0 rgba(255, 255, 255, 0.02);
}

.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 55%;
  transform: translateX(-50%);
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(47, 128, 255, 0.14), rgba(255, 255, 255, 0));
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  margin-right: 0.6rem;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.service-card {
  min-height: 220px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  background: #dde7f3;
}

.service-card h3,
.portfolio-body h3,
.case-card strong,
.persona-card h3,
.category-card h3,
.timeline-list h3,
.kanban-col h3 {
  margin: 1rem 0 0.45rem;
  letter-spacing: -0.04em;
  font-size: 1.14rem;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card-lg {
  overflow: hidden;
  border-radius: 28px;
}

.portfolio-shot {
  height: 190px;
}

.portfolio-body {
  padding: 1rem 1.1rem 1.2rem;
}

.portfolio-body span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-card {
  min-height: 170px;
}

.dark-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #081830 0%, #091222 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-copy .eyebrow {
  background: rgba(47, 128, 255, 0.18);
  color: #bcd4ff;
}

.dark-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar {
  padding: 1.2rem;
  background: rgba(7, 26, 53, 0.95);
  color: rgba(255, 255, 255, 0.78);
}

.sidebar-logo {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: white;
}

.sidebar-item {
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  margin-bottom: 0.45rem;
}

.sidebar-item.active {
  background: rgba(47, 128, 255, 0.18);
  color: white;
}

.dashboard-main {
  padding: 1.2rem;
  background: linear-gradient(180deg, #0f1f3c 0%, #0a1529 100%);
}

.dashboard-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric,
.dash-panel {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.metric span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.metric strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.6rem;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.panel-title {
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.kanban-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.kanban-mini div {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.kanban-mini span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.kanban-mini strong {
  font-size: 1.5rem;
}

.feed {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kanban-col {
  border-radius: 28px;
  padding: 1.2rem;
}

.kanban-card {
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(7, 26, 53, 0.05);
}

.persona-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.persona-card {
  text-align: center;
}

.persona-icon {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-cta,
.contact-form {
  border-radius: 30px;
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  justify-items: stretch;
  align-content: start;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 700;
  justify-items: stretch;
  width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #fff;
  outline: none;
}

.contact-form .card-label {
  justify-self: start;
}

.contact-form .consult-actions {
  justify-content: flex-start;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 128, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(47, 128, 255, 0.08);
}

.contact-bullets {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.contact-bullets li::before {
  content: "•";
  color: var(--blue);
  font-weight: 800;
  margin-right: 0.5rem;
}

.timeline {
  align-items: start;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.achievement-grid div {
  padding: 1rem;
  border-radius: 20px;
  background: var(--section);
  border: 1px solid var(--line);
}

.achievement-grid strong {
  display: block;
  font-size: 1.55rem;
}

.achievement-grid span {
  color: var(--muted);
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-list article {
  border-radius: 24px;
  padding: 1.2rem;
}

.timeline-list span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.workflow-step {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.ecosystem {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 128, 255, 0.2), transparent 16%),
    linear-gradient(180deg, #09152a 0%, #07111f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ecosystem-core,
.ecosystem-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  color: white;
}

.ecosystem-core {
  left: 50%;
  top: 50%;
  width: 280px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(47, 128, 255, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.ecosystem-core strong {
  font-size: 1.4rem;
}

.ecosystem-core p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.ecosystem-node {
  width: 170px;
  height: 78px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.node-a {
  left: 12%;
  top: 16%;
}

.node-b {
  right: 14%;
  top: 14%;
}

.node-c {
  left: 12%;
  bottom: 18%;
}

.node-d {
  right: 13%;
  bottom: 18%;
}

.node-e {
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
}

.node-f {
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  min-height: 190px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-ready .reveal.is-visible {
  animation: rise 0.8s ease both;
}

body.scroll-story-page.reveal-ready .story-reveal,
body.scroll-story-page.reveal-ready .story-reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

body.reduce-motion .reveal,
body.reduce-motion .reveal.is-visible,
.no-reveal .reveal,
.no-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

body.scroll-story-page.reduce-motion .story-reveal,
body.scroll-story-page.reduce-motion .story-reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: ease-out;
}

::view-transition-old(root) {
  animation-name: fade-out;
}

::view-transition-new(root) {
  animation-name: fade-in;
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(6px);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-ready .reveal,
  .reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn,
  .nav a,
  .topbar-links a {
    transition: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

.dev-selector-root {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  pointer-events: none;
}

.dev-selector-toggle,
.dev-selector-panel,
.dev-selector-highlight {
  pointer-events: auto;
}

.dev-selector-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(7, 26, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 16px 32px rgba(7, 26, 53, 0.16);
  cursor: pointer;
  font-weight: 800;
}

.dev-selector-toggle.is-active {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
}

.dev-selector-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.dev-selector-icon svg {
  width: 100%;
  height: 100%;
}

.dev-selector-panel {
  position: absolute;
  top: 3.5rem;
  right: 0;
  width: min(520px, calc(100vw - 1.2rem));
  max-height: min(78vh, 820px);
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(7, 26, 53, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(7, 26, 53, 0.22);
  overflow: auto;
  color: var(--text);
}

.dev-selector-panel.is-open {
  display: flex;
}

.dev-selector-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.dev-selector-kicker {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dev-selector-panel h2 {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.dev-selector-title-tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.dev-selector-measure-toggle,
.dev-selector-measure-readout,
.dev-selector-mini-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  font-weight: 700;
}

.dev-selector-measure-toggle {
  min-height: 36px;
  padding: 0 0.9rem;
  cursor: pointer;
}

.dev-selector-measure-toggle.is-active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.dev-selector-measure-readout {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--section);
}

.dev-selector-close,
.dev-selector-copy,
.dev-selector-clear {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.dev-selector-close {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  line-height: 1;
}

.dev-selector-empty {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--section);
  color: var(--muted);
}

.dev-selector-body {
  display: grid;
  gap: 0.85rem;
}

.dev-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.dev-selector-grid div,
.dev-selector-block {
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.dev-selector-grid dt,
.dev-selector-block h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dev-selector-grid dd,
.dev-selector-block p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
  word-break: break-word;
}

.dev-selector-actions {
  display: flex;
  gap: 0.6rem;
}

.dev-selector-actions-top {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.dev-selector-editor-shell {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.3rem;
}

.dev-selector-tool-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 0.85rem;
}

.dev-selector-tool-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.dev-selector-tool-head h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.dev-selector-actions-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.dev-selector-mini-btn {
  min-height: 32px;
  padding: 0 0.7rem;
  font-size: 0.76rem;
  cursor: pointer;
}

.dev-selector-tool-grid {
  display: grid;
  gap: 0.65rem;
}

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

.dev-selector-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.dev-selector-field > span {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}

.dev-selector-field-inline {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.dev-selector-field input[type="text"],
.dev-selector-field input[type="number"],
.dev-selector-field select {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.7rem;
  background: #fff;
  color: var(--text);
}

.dev-selector-field input[type="color"] {
  width: 42px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.15rem;
  background: #fff;
}

.dev-selector-change-log {
  white-space: pre-wrap;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
  background: var(--section);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
}

.dev-selector-copy,
.dev-selector-clear,
.dev-selector-image-copy {
  min-height: 40px;
  padding: 0 1rem;
}

.dev-selector-copy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.dev-selector-copy-source {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: pre;
  border: 0;
}

.dev-selector-highlight {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  box-sizing: border-box;
  will-change: transform, width, height;
  transform-origin: top left;
}

.dev-selector-hover {
  border: 2px dashed rgba(47, 128, 255, 0.92);
  background: rgba(47, 128, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(47, 128, 255, 0.08);
}

.dev-selector-selected {
  border: 2px solid rgba(7, 26, 53, 0.95);
  background: rgba(7, 26, 53, 0.04);
  box-shadow: 0 0 0 2px rgba(7, 26, 53, 0.06);
}

.dev-selector-hovered-target {
  filter: saturate(1.7) brightness(1.16) contrast(1.1) hue-rotate(16deg);
  background-color: rgba(47, 128, 255, 0.18) !important;
  color: #06162f !important;
  outline: 2px solid rgba(47, 128, 255, 0.9) !important;
  box-shadow:
    0 0 0 3px rgba(47, 128, 255, 0.28),
    inset 0 0 0 9999px rgba(47, 128, 255, 0.1) !important;
  text-shadow: 0 0 0.01px currentColor;
}

.dev-selector-selected-target {
  filter: saturate(1.9) brightness(1.13) contrast(1.12) hue-rotate(10deg);
  background-color: rgba(7, 26, 53, 0.16) !important;
  color: #071a35 !important;
  outline: 2px solid rgba(7, 26, 53, 0.92) !important;
  box-shadow:
    0 0 0 3px rgba(7, 26, 53, 0.3),
    inset 0 0 0 9999px rgba(7, 26, 53, 0.08) !important;
  text-shadow: 0 0 0.01px currentColor;
}

body.dev-selector-active {
  cursor: crosshair;
}

body.dev-selector-active .page-shell a,
body.dev-selector-active .page-shell button,
body.dev-selector-active .page-shell input,
body.dev-selector-active .page-shell select,
body.dev-selector-active .page-shell textarea {
  cursor: crosshair;
}

.dev-selector-measure-layer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.dev-selector-measure-box {
  position: fixed;
  border: 2px dashed rgba(47, 128, 255, 0.95);
  background: rgba(47, 128, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(47, 128, 255, 0.15);
}

.dev-selector-measure-label {
  position: absolute;
  left: 0;
  top: -1.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 26, 53, 0.9);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.shot-a {
  background: linear-gradient(135deg, #19345f 0%, #2f80ff 100%);
}

.shot-b {
  background: linear-gradient(135deg, #ebf3ff 0%, #b9d1ff 100%);
}

.shot-c {
  background: linear-gradient(135deg, #f6f7fb 0%, #dde5f2 100%);
}

.shot-d {
  background: linear-gradient(135deg, #0f2144 0%, #1e3e7a 100%);
}

@media (max-width: 1200px) {
  .hero-grid,
  .split-card,
  .dark-block,
  .timeline,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-strip,
  .service-grid,
  .trust-row,
  .case-grid,
  .persona-grid,
  .category-grid,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
  }

  .sidebar-item {
    margin: 0;
  }
}

@media (max-width: 860px) {
  .topbar {
    width: min(1320px, calc(100% - 1rem));
    padding: 0.9rem 1rem;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  main {
    width: min(1320px, calc(100% - 1rem));
  }

  .hero-grid,
  .dashboard-top,
  .dashboard-columns,
  .portfolio-strip,
  .service-grid,
  .trust-row,
  .case-grid,
  .persona-grid,
  .category-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-photo {
    min-height: 560px;
  }

  .photo-a {
    width: 220px;
    height: 220px;
    right: 8%;
  }

  .photo-b {
    height: 300px;
  }

  .portfolio-card,
  .roadmap-card,
  .ai-card,
  .progress-card {
    width: auto;
    right: 6%;
  }

  .section {
    padding: 2rem 0;
  }

  .section-meta {
    position: static;
    margin-bottom: 0.8rem;
  }

  .ecosystem {
    min-height: 620px;
  }

  .ecosystem-node,
  .ecosystem-core {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin: 0.9rem auto;
  }

  .ecosystem {
    display: grid;
    place-items: center;
    padding: 1rem;
  }

  .dev-selector-root {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    display: flex;
    justify-content: flex-end;
  }

  .dev-selector-panel {
    width: min(100vw - 1rem, 480px);
    max-height: 72vh;
  }

.dev-selector-grid {
  grid-template-columns: 1fr;
  }
}

/* New hub and detail page layout */
.site-topbar {
  gap: 1rem;
  border-radius: 24px;
}

.site-topbar .topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-topbar .topbar-links a {
  transition: color 0.2s ease;
}

.site-topbar .topbar-links > a,
.site-topbar .topbar-links > .topbar-group > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.site-topbar .topbar-links a.is-active,
.site-topbar .topbar-links a[aria-current="true"],
.site-topbar .topbar-links .topbar-group.is-active > summary {
  color: var(--navy);
}

.site-topbar .topbar-links a:hover {
  color: var(--navy);
}

.topbar-group {
  position: relative;
}

.topbar-group > summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.topbar-group > summary::-webkit-details-marker {
  display: none;
}

.topbar-group > summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.topbar-group[open] > summary,
.topbar-group:hover > summary {
  color: var(--navy);
}

.topbar-group[open] > summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.topbar-submenu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 220px;
  padding: 0.6rem;
  border: 1px solid rgba(198, 210, 226, 0.92);
  border-radius: 18px;
  background: rgba(249, 251, 255, 0.98);
  box-shadow: 0 18px 36px rgba(12, 25, 47, 0.14);
  display: grid;
  gap: 0.25rem;
  z-index: 20;
}

.topbar-submenu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: var(--navy);
}

.topbar-submenu a:hover {
  background: rgba(47, 115, 230, 0.08);
}

.site-cache-clear {
  white-space: nowrap;
}

.site-topbar-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(246, 249, 253, 0.94);
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.site-topbar-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-topbar-menu {
  display: contents;
}

.consult-modal-open {
  overflow: hidden;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: rgba(6, 16, 34, 0.56);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.consult-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.consult-modal-dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 2.8rem);
  overflow: auto;
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(231, 239, 250, 0.96));
  border: 1px solid rgba(190, 206, 228, 0.88);
  box-shadow: 0 34px 80px rgba(7, 18, 36, 0.28);
}

.consult-modal-close {
  position: sticky;
  top: 0.4rem;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(190, 206, 228, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.45rem;
  cursor: pointer;
  z-index: 2;
}

.consult-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.consult-modal-intro,
.consult-modal-form {
  padding: 1.35rem;
}

.consult-modal-types {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.hero-slider-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero-slider {
  position: relative;
  min-height: 650px;
  height: 650px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(187, 201, 220, 0.9);
  box-shadow:
    0 28px 68px rgba(9, 26, 52, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 253, 0.94)),
    linear-gradient(120deg, rgba(47, 115, 230, 0.06), rgba(11, 27, 55, 0.05));
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(108, 130, 163, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 130, 163, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 78%);
  pointer-events: none;
  z-index: 0;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 250, 255, 0.86) 0%, rgba(247, 250, 255, 0.74) 38%, rgba(236, 242, 251, 0.5) 100%);
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}

.hero-slide {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 650px;
  height: 650px;
  background: transparent;
  z-index: 1;
}

.hero-slide-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.1rem, 2.2vw, 2.1rem) clamp(1.35rem, 3vw, 3rem) 7rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
  transform: translateY(-40px);
}

.hero-slide-copy h1,
.page-hero h1 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-size: clamp(2rem, 3vw, 3.45rem);
}

.hero-slide-copy p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  max-width: 52ch;
  font-size: 0.98rem;
}

.hero-slide-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.hero-slide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-slide-points span,
.pipeline-pill,
.feature-chip,
.faq-tag,
.cta-pill {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 210, 226, 0.92);
  background: rgba(242, 246, 252, 0.88);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-slide-media {
  position: relative;
  min-height: 650px;
  height: 650px;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 22%, rgba(47, 128, 255, 0.24), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(13, 34, 68, 0.2), transparent 22%),
    linear-gradient(180deg, #edf3fe 0%, #e2ebfb 100%);
}

.hero-slide-media img,
.hero-slide-media picture,
.page-hero-media img,
.thumb-image img,
.portfolio-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vt-web-development {
  view-transition-name: vt-web-development;
}

.vt-ai-coding {
  view-transition-name: vt-ai-coding;
}

.vt-project-management {
  view-transition-name: vt-project-management;
}

.vt-student-portfolio {
  view-transition-name: vt-student-portfolio;
}

.vt-about {
  view-transition-name: vt-about;
}

.hero-slide-media picture {
  min-width: 0;
}

.hero-slide-overlay {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.overlay-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(7, 26, 53, 0.16);
}

.overlay-card strong {
  display: block;
  margin-top: 0.2rem;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.hero-slide-admission .hero-slide-copy {
  background: radial-gradient(circle at 14% 16%, rgba(47, 115, 230, 0.12), transparent 34%);
  gap: 0.9rem;
  padding-bottom: 8rem;
}

.hero-slide-admission .hero-slide-copy h1 {
  font-size: clamp(1.9rem, 2.65vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.06em;
}

.hero-slide-admission .hero-slide-copy p {
  max-width: 46ch;
  font-size: 0.92rem;
  line-height: 1.62;
}

.hero-slide-admission .hero-slide-actions {
  margin-top: 0.4rem;
}

.hero-slide-admission .hero-slide-points {
  gap: 0.6rem;
}

.hero-slide-admission .hero-slide-points span {
  padding: 0.56rem 0.82rem;
  font-size: 0.84rem;
}

.hero-slide-admission .hero-trust-row {
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.hero-slide-admission .hero-trust-card {
  padding: 0.68rem 0.76rem;
}

.hero-slide-admission .hero-trust-card strong {
  font-size: 0.9rem;
}

.hero-slide-admission .hero-trust-card span {
  font-size: 0.78rem;
  line-height: 1.34;
}

.hero-slide-intro .hero-slide-copy {
  background: radial-gradient(circle at top left, rgba(47, 115, 230, 0.1), transparent 32%);
}

.hero-slide-service .hero-slide-copy {
  background: radial-gradient(circle at 18% 18%, rgba(8, 71, 150, 0.08), transparent 28%);
}

.hero-slide-mentor .hero-slide-copy {
  background: radial-gradient(circle at 20% 20%, rgba(9, 26, 52, 0.07), transparent 30%);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.hero-trust-card {
  position: relative;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(186, 201, 222, 0.95);
  background: rgba(250, 252, 255, 0.82);
  box-shadow:
    0 16px 32px rgba(9, 26, 52, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.hero-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(9, 26, 52, 0.6));
}

.hero-trust-card strong,
.hero-preview-copy strong {
  display: block;
  letter-spacing: -0.03em;
  line-height: 1.22;
  font-size: 0.98rem;
}

.hero-trust-card span,
.hero-preview-copy span {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.hero-tech-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(47, 115, 230, 0.22), transparent 18%),
    radial-gradient(circle at 76% 78%, rgba(9, 26, 52, 0.16), transparent 20%);
  pointer-events: none;
}

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

.hero-tech-bg::before {
  inset: 8% 8%;
  border-radius: 28px;
  border: 1px solid rgba(69, 105, 156, 0.16);
  background:
    linear-gradient(rgba(79, 115, 166, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 115, 166, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-tech-bg::after {
  inset: auto 10% 12% 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 115, 230, 0.6), transparent);
  box-shadow:
    0 -138px 0 rgba(47, 115, 230, 0.12),
    0 -276px 0 rgba(47, 115, 230, 0.08);
}

.hero-map-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.72rem;
  height: 100%;
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.hero-map-caption {
  color: #597091;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-map {
  position: relative;
  min-height: 148px;
  padding-top: 0;
}

.hero-map-node {
  position: absolute;
  width: 30%;
  min-width: 138px;
  padding: 0.72rem 0.74rem 0.68rem;
  border-radius: 20px;
  border: 1px solid rgba(161, 184, 214, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 243, 254, 0.9));
  box-shadow:
    0 12px 24px rgba(9, 26, 52, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition:
    transform 0.45s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    opacity 0.35s ease;
}

.hero-map-node {
  top: 18px;
  display: grid;
  gap: 0.24rem;
  color: var(--navy);
  opacity: 0.74;
}

.hero-map-node strong {
  letter-spacing: -0.03em;
  font-size: 0.9rem;
}

.hero-map-node span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.hero-map-node-left {
  left: 0;
}

.hero-map-node-center {
  left: 50%;
  transform: translateX(-50%);
}

.hero-map-node-right {
  right: 0;
}

.hero-map-node.is-active {
  transform: translateY(-4px);
  opacity: 1;
  border-color: rgba(47, 115, 230, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(227, 239, 255, 0.96));
  box-shadow:
    0 16px 30px rgba(47, 115, 230, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero-map-node-center.is-active {
  transform: translateX(-50%) translateY(-4px);
}

.hero-preview-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(178px, 1fr) auto;
  gap: 0.68rem;
  padding: 0.72rem;
  border-radius: 20px;
  border: 1px solid rgba(173, 190, 215, 0.88);
  background: rgba(252, 253, 255, 0.82);
  box-shadow:
    0 18px 34px rgba(9, 26, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.hero-preview-card img {
  width: 100%;
  height: clamp(178px, 20vw, 228px);
  border-radius: 14px;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: linear-gradient(180deg, rgba(238, 244, 253, 0.96), rgba(228, 236, 248, 0.92));
  box-shadow: 0 18px 34px rgba(9, 26, 52, 0.12);
}

.hero-preview-copy {
  padding: 0 0.15rem 0.1rem;
}

.hero-slider-footer {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  padding: 0 1rem 0.8rem;
}

.hero-slider-progress {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(112, 133, 163, 0.22);
}

.hero-slider-progress-fill {
  display: block;
  width: calc(var(--hero-progress, 33.333) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #0d2142);
  transition: width 0.45s ease;
}

.hero-slider-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.hero-slider-fraction {
  color: var(--navy);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.hero-slider .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-slider-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--navy);
}

.hero-slider-nav .swiper-button-next,
.hero-slider-nav .swiper-button-prev {
  position: static;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(171, 187, 209, 0.9);
  background: rgba(250, 252, 255, 0.84);
  box-shadow: 0 12px 24px rgba(9, 26, 52, 0.08);
}

.hero-slider-nav .swiper-button-next::after,
.hero-slider-nav .swiper-button-prev::after {
  font-size: 0.92rem;
  font-weight: 800;
}

.swiper-pagination-bullet {
  background: rgba(7, 26, 53, 0.24);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--blue);
}

.section-tight {
  padding-top: 10px;
  padding-bottom: 10px;
}

.summary-grid,
.feature-grid,
.result-grid,
.page-split,
.faq-grid,
.cta-grid,
.portfolio-grid,
.image-grid {
  display: grid;
  gap: 1rem;
}

.summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.85rem;
}

.summary-carousel .splide__track {
  overflow: visible;
}

.summary-carousel .summary-grid {
  display: flex;
  gap: 0;
}

.summary-carousel .summary-card {
  height: auto;
  margin: 0;
  list-style: none;
}

.summary-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.summary-carousel-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-carousel-pagination .splide__pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.summary-carousel-pagination .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  background: rgba(7, 26, 53, 0.24);
  opacity: 1;
  transform: none;
}

.summary-carousel-pagination .splide__pagination__page.is-active {
  background: var(--blue);
  transform: none;
}

.summary-carousel-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.summary-carousel-prev,
.summary-carousel-next {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(171, 187, 209, 0.9);
  border-radius: 999px;
  background: var(--card-gradient);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(9, 26, 52, 0.08);
  cursor: pointer;
}

.summary-carousel-prev::before,
.summary-carousel-next::before {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.summary-carousel-prev::before {
  content: "<";
}

.summary-carousel-next::before {
  content: ">";
}

.summary-card,
.feature-card,
.result-card,
.faq-card,
.page-card,
.cta-card,
.portfolio-card-mini,
.image-card {
  border: 1px solid rgba(194, 208, 228, 0.98);
  background: var(--card-gradient);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding-inline: 1.9rem;
}

body.scroll-story-page .summary-card,
body.scroll-story-page .feature-card,
body.scroll-story-page .result-card,
body.scroll-story-page .service-card,
body.scroll-story-page .page-card,
body.scroll-story-page .ceo-card,
body.scroll-story-page .workflow-card,
body.scroll-story-page .dark-block {
  position: relative;
  overflow: hidden;
}

body.scroll-story-page .summary-card::before,
body.scroll-story-page .feature-card::before,
body.scroll-story-page .result-card::before,
body.scroll-story-page .service-card::before,
body.scroll-story-page .page-card::before,
body.scroll-story-page .ceo-card::before,
body.scroll-story-page .workflow-card::before,
body.scroll-story-page .dark-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(47, 115, 230, 0.08) 48%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

body.scroll-story-page .summary-card:hover::before,
body.scroll-story-page .feature-card:hover::before,
body.scroll-story-page .result-card:hover::before,
body.scroll-story-page .service-card:hover::before,
body.scroll-story-page .page-card:hover::before,
body.scroll-story-page .ceo-card:hover::before,
body.scroll-story-page .workflow-card:hover::before,
body.scroll-story-page .dark-block:hover::before {
  transform: translateX(110%);
}

.summary-card {
  padding: 1.5rem 1.9rem;
  min-height: 240px;
  display: grid;
  gap: 0.85rem;
}

.result-card {
  padding: 1.4rem 1.9rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.summary-card img,
.feature-card img,
.result-card img,
.page-card img,
.portfolio-card-mini img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #dde7f3;
}

.result-card img {
  max-height: 180px;
}

.solution-visual {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: #dde7f3;
}

.page-split > .page-card:nth-child(2) {
  justify-items: center;
}

.page-split > .page-card:nth-child(2) .solution-visual {
  width: min(100%, 540px);
}

.project-management-page .project-management-visual-card {
  justify-items: stretch;
  align-self: start;
}

.project-management-page .project-management-figure {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.project-management-page .project-management-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  background: #eef3fb;
}

.project-management-page .project-management-figure figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.summary-card img[src*="home-card-web-development.png"] {
  aspect-ratio: 16 / 9;
  max-height: 168px;
  object-fit: cover;
  object-position: center bottom;
}

.summary-card img[src*="home-card-ai-coding.svg"],
.summary-card img[src*="home-card-student-portfolio.svg"],
.summary-card img[src*="home-card-project-management.svg"] {
  object-position: center top;
}

.summary-card h3,
.feature-card h3,
.result-card h3,
.faq-card h3,
.page-card h3,
.cta-card h3,
.portfolio-card-mini h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.summary-card p,
.feature-card p,
.result-card p,
.faq-card p,
.page-card p,
.cta-card p,
.portfolio-card-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-top: 1.95rem;
  margin-bottom: 1.3rem;
}

body.scroll-story-page .section-title-row {
  position: relative;
}

body.scroll-story-page .section-title-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: min(180px, 28vw);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(47, 115, 230, 0));
  opacity: 0.8;
}

.section-title-row h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.h2-35 {
  font-size: 35px !important;
}

.h2-30 {
  font-size: 30px !important;
}

.h1-45 {
  font-size: clamp(2rem, 3.2vw, 3.5rem) !important;
}

.section-title-row p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.7;
}

.section-title-row > div {
  min-width: 0;
  position: relative;
  padding-top: 0.2rem;
}

.section-title-row .section-meta {
  position: static;
  display: block;
  margin-bottom: 0.55rem;
}

.section-inner {
  width: 100%;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.95fr);
  grid-template-areas:
    "label copy"
    "title copy";
  align-items: center;
  column-gap: 2.5rem;
  row-gap: 0.6rem;
  padding-top: 1.4rem;
  margin-bottom: 1.8rem;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: min(180px, 28vw);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(47, 115, 230, 0));
  opacity: 0.8;
}

.section-label {
  display: block;
  grid-area: label;
  align-self: end;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  grid-area: title;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.section-heading p {
  grid-area: copy;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
  max-width: 38ch;
  justify-self: stretch;
  align-self: center;
}

.ai-education-section {
  display: grid;
  gap: 0;
}

.program-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.program-card {
  border: 1px solid rgba(194, 208, 228, 0.98);
  background: var(--card-gradient);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 1.8rem;
  display: grid;
  gap: 1.3rem;
  overflow: hidden;
}

.program-card-image {
  border-radius: 26px;
  overflow: hidden;
  background: #dde7f3;
}

.program-card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.program-card-body {
  display: grid;
  gap: 0.65rem;
  padding-inline: 0.2rem;
}

.program-card-body strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.18;
}

.program-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ecosystem-card,
.ceo-card,
.workflow-card,
.consult-card,
.page-hero-card,
.side-note {
  padding: 1.5rem 1.9rem;
  border-radius: 28px;
  border: 1px solid rgba(194, 208, 228, 0.98);
  background: var(--card-gradient-strong);
  box-shadow: var(--shadow);
}

.ecosystem-card-media {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.ecosystem-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.ecosystem-map div,
.workflow-steps div,
.faq-grid article,
.result-grid article {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: var(--card-gradient-soft);
  border: 1px solid var(--line);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 20px;
  background: var(--section);
  border: 1px solid var(--line);
}

.metric-card strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.metric-card span {
  color: var(--muted);
}

.metric-card .metric-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-page .section-lede {
  margin: 0.7rem 0 0;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.75;
}

.about-career-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-career-stat,
.about-timeline-item,
.about-domain-card {
  border: 1px solid rgba(198, 210, 226, 0.95);
  background: rgba(245, 248, 252, 0.92);
  box-shadow: var(--shadow);
}

.about-career-stat {
  padding: 1.2rem;
  border-radius: 24px;
}

.about-career-stat strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.about-career-stat span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.65;
}

.about-timeline {
  display: grid;
  gap: 1rem;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: 28px;
}

.about-timeline-year {
  display: inline-flex;
  align-self: start;
  justify-self: start;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 128, 255, 0.1);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.about-timeline-body h3,
.about-domain-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.about-timeline-body p,
.about-domain-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--navy);
}

.about-bullet-list li + li {
  margin-top: 0.45rem;
}

.about-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-domain-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 24px;
}

.about-domain-index {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-photo-card {
  overflow: hidden;
  border: 1px solid rgba(198, 210, 226, 0.95);
  border-radius: 24px;
  background: rgba(245, 248, 252, 0.94);
  box-shadow: var(--shadow);
}

.about-photo-card img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--section);
}

.about-photo-card > div {
  padding: 1rem 1.1rem 1.15rem;
}

.about-photo-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.about-photo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-photo-card code {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--section);
  color: var(--navy);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .about-career-stats,
  .about-domain-grid,
  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-career-stats,
  .about-domain-grid,
  .about-photo-grid,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .about-timeline-item {
    padding: 1.1rem;
  }

  .hero-slider {
    min-height: calc(100svh - 86px);
    height: calc(100svh - 86px);
  }

  .hero-slider-footer {
    position: absolute;
    padding: 0 0.85rem 0.8rem;
  }

  .hero-slide {
    min-height: calc(100svh - 86px);
    height: calc(100svh - 86px);
  }

  .hero-slide-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 2.9;
  }

  .hero-map-shell {
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .hero-map {
    min-height: 118px;
  }

  .hero-map-node {
    top: 10px;
    width: 31.5%;
    min-width: 0;
    padding: 0.42rem 0.36rem;
    border-radius: 14px;
  }

  .hero-map-node strong {
    font-size: 0.66rem;
  }

  .hero-map-node span {
    font-size: 0.56rem;
    line-height: 1.18;
  }

  .hero-preview-card img {
    height: 96px;
  }
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
  padding: 1rem 0 0;
}

.page-hero-content {
  max-width: min(100%, 760px);
  padding: 1.7rem 1.6rem 1.55rem;
  display: grid;
  align-content: center;
  gap: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 249, 255, 0.66) 100%);
  border: 1px solid rgba(201, 214, 232, 0.7);
  box-shadow:
    0 18px 40px rgba(9, 26, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.page-hero-media {
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(198, 210, 226, 0.95);
  box-shadow: var(--shadow);
}

.project-management-visual {
  padding: 1rem;
  background: linear-gradient(180deg, #09152a 0%, #10264d 100%);
}

.project-management-visual img {
  border-radius: 24px;
  object-fit: contain;
  background: transparent;
}

.page-hero-lede {
  max-width: 60ch;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 1.2rem 1.25rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(7, 24, 54, 0.78) 0%, rgba(14, 39, 82, 0.72) 100%),
    radial-gradient(circle at 16% 22%, rgba(83, 135, 230, 0.22), transparent 24%),
    url("./assets/images/troavnt back.png") center / cover no-repeat;
  box-shadow: 0 24px 52px rgba(7, 21, 48, 0.2);
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 41, 0.52) 0%, rgba(5, 18, 41, 0.18) 52%, rgba(5, 18, 41, 0.04) 100%);
  pointer-events: none;
}

.contact-page-hero > * {
  position: relative;
  z-index: 1;
}

.contact-page-hero .page-hero-content {
  padding: 1.8rem 1.2rem 1.6rem;
  background: linear-gradient(180deg, rgba(10, 24, 49, 0.46) 0%, rgba(15, 35, 69, 0.34) 100%);
  border-color: rgba(164, 190, 232, 0.22);
  box-shadow:
    0 22px 46px rgba(3, 10, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-page-hero .eyebrow {
  background: rgba(235, 243, 255, 0.94);
  color: #2a5fc6;
  box-shadow: 0 10px 24px rgba(6, 18, 40, 0.16);
}

.contact-page-hero h1 {
  color: #f6f9ff;
  line-height: 1.08;
  text-shadow: 0 10px 28px rgba(3, 10, 24, 0.32);
}

.contact-page-hero p,
.contact-page-hero .page-hero-lede {
  color: rgba(231, 239, 252, 0.9);
}

.contact-page-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(198, 210, 226, 0.84);
  color: var(--navy);
}

.contact-page-hero .page-hero-media {
  min-height: 540px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 182, 221, 0.28);
}

.project-management-page .project-management-hero {
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
  min-height: 0;
  padding-top: 0.4rem;
}

.project-management-page .project-management-hero .page-hero-content {
  padding: 1.2rem 0 0;
  align-content: start;
}

.project-management-page .project-management-visual {
  min-height: 420px;
  padding: 0.85rem;
}

.page-split {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.student-portfolio-page .student-project-section .page-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.student-portfolio-page .student-project-visual-card {
  align-self: start;
  justify-items: stretch;
}

.student-portfolio-page .student-project-figure {
  margin: 0;
  display: grid;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
}

.student-portfolio-page .student-project-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  background: #eef3fb;
}

.student-portfolio-page .student-project-figure figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

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

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

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

.portfolio-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.page-card,
.feature-card,
.result-card,
.faq-card,
.portfolio-card-mini,
.cta-card {
  padding: 1.15rem;
}

@media (max-width: 1100px) {
  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "copy";
    align-items: start;
    row-gap: 0.9rem;
  }

  .section-heading p {
    max-width: 100%;
    justify-self: start;
    align-self: start;
  }
}

@media (max-width: 900px) {
  .program-card-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 1.2rem;
    border-radius: 24px;
    gap: 1rem;
  }

  .program-card-image {
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .section-heading {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.12;
  }

  .section-heading p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .section-label {
    font-size: 0.9rem;
  }

  .program-card-grid {
    gap: 1rem;
  }

  .program-card-body strong {
    font-size: 1.2rem;
    line-height: 1.24;
  }

  .program-card-body p {
    font-size: 0.96rem;
    line-height: 1.62;
  }
}

body.scroll-story-page .summary-card img,
body.scroll-story-page .result-card img,
body.scroll-story-page .page-card img,
body.scroll-story-page .ceo-card img,
body.scroll-story-page .workflow-roadmap img,
body.scroll-story-page .hero-preview-card img {
  transition:
    transform 0.7s ease,
    filter 0.6s ease;
}

body.scroll-story-page .summary-card:hover img,
body.scroll-story-page .result-card:hover img,
body.scroll-story-page .page-card:hover img,
body.scroll-story-page .ceo-card:hover img,
body.scroll-story-page .workflow-roadmap:hover img,
body.scroll-story-page .hero-preview-card:hover img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.portfolio-type-card,
.parent-check-card,
.privacy-notice {
  padding: 1.15rem;
  border: 1px solid rgba(198, 210, 226, 0.95);
  background: rgba(245, 248, 252, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.page-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.page-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.ceo-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.ceo-card .card-top h3 {
  flex: 1;
  min-width: 0;
}

.ceo-card .card-top .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.card-label {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-type-card,
.parent-check-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.portfolio-type-card h3,
.parent-check-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.portfolio-type-card p,
.parent-check-card p,
.privacy-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.privacy-notice {
  display: grid;
  gap: 0.8rem;
}

.workflow-card {
  display: grid;
  gap: 1rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

body.scroll-story-page #workflow .workflow-card {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

body.scroll-story-page #workflow .workflow-steps {
  grid-template-columns: 1fr;
}

body.scroll-story-page .workflow-steps div {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

body.scroll-story-page .workflow-steps div.is-active {
  transform: translateY(-4px);
  border-color: rgba(47, 115, 230, 0.4);
  background: rgba(229, 239, 255, 0.92);
  box-shadow: 0 16px 30px rgba(47, 115, 230, 0.14);
}

.workflow-steps strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.workflow-step-link {
  display: inline-flex;
  margin-top: 0.85rem;
  min-height: 40px;
  padding-inline: 1rem;
}

.workflow-roadmap {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(198, 210, 226, 0.95);
  background: #dde7f3;
  min-height: 316px;
}

body.scroll-story-page #workflow .workflow-roadmap {
  position: sticky;
  top: 118px;
  margin-top: 0;
  min-height: 336px;
}

.workflow-roadmap img {
  width: 100%;
  height: 100%;
  min-height: 316px;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.workflow-roadmap-image {
  object-position: center center;
}

.consult-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body.scroll-story-page #mentor .page-split,
body.scroll-story-page #consult .page-split,
body.scroll-story-page #signup .page-split {
  align-items: start;
}

@media (min-width: 861px) {
  body.scroll-story-page #mentor .page-split > :last-child,
  body.scroll-story-page #consult .page-split > :last-child,
  body.scroll-story-page #signup .page-split > :last-child {
    position: sticky;
    top: 118px;
  }
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.thumb-image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #dde7f3;
}

.page-footer {
  margin-top: 2rem;
  padding: 2rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.soft-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1200px) {
  .hero-slide,
  .page-hero,
  .page-split,
  .feature-grid,
  .result-grid,
  .faq-grid,
  .portfolio-grid,
  .cta-grid,
  .portfolio-type-grid,
  .image-grid,
  .ecosystem-grid,
  .consult-card,
  .workflow-steps,
  .summary-grid,
  .metrics-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-shell::before,
  .page-shell::after,
  .section::after,
  .hero-slider::after {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  html {
    scroll-padding-top: 4.8rem;
  }

  body.scroll-story-page #workflow .workflow-card {
    grid-template-columns: 1fr;
  }

  body.scroll-story-page #workflow .workflow-roadmap,
  body.scroll-story-page #mentor .page-split > :last-child,
  body.scroll-story-page #consult .page-split > :last-child,
  body.scroll-story-page #signup .page-split > :last-child {
    position: static;
    top: auto;
  }

  .hero-slide,
  .page-hero,
  .page-split,
  .feature-grid,
  .result-grid,
  .faq-grid,
  .portfolio-grid,
  .cta-grid,
  .portfolio-type-grid,
  .image-grid,
  .ecosystem-grid,
  .consult-card,
  .workflow-steps,
  .summary-grid,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .student-portfolio-page .student-project-section .page-split {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .student-portfolio-page .student-project-section .page-card {
    min-width: 0;
  }

  .hero-slide-media,
  .page-hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-slider {
    min-height: 0;
    height: auto;
  }

  .hero-map {
    min-height: 132px;
  }

  .hero-map-node {
    min-width: 0;
    width: 31%;
    padding: 0.6rem 0.56rem;
    border-radius: 16px;
  }

  .hero-map-node {
    top: 12px;
  }

  .hero-map-node strong {
    font-size: 0.76rem;
  }

  .hero-map-node span {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .hero-slider-meta {
    grid-template-columns: auto auto;
    justify-items: stretch;
    justify-content: space-between;
    align-items: center;
  }

  .hero-slider .swiper-pagination {
    justify-content: flex-start;
  }

  .hero-slide {
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero-slide-copy,
  .page-hero-content {
    padding: 0.95rem 1rem 0.8rem;
    gap: 0.6rem;
    justify-content: flex-start;
    transform: none;
  }

  .page-hero-content {
    border-radius: 22px;
  }

  .contact-page-hero {
    padding: 0.85rem 0.8rem 0.9rem;
  }

  .contact-page-hero .page-hero-content {
    padding: 0.9rem 0.8rem 0.8rem;
  }

  .hero-slide-copy p,
  .page-hero p,
  .page-hero-lede {
    font-size: 0.82rem;
    line-height: 1.44;
  }

  .hero-slide-media {
    display: none;
  }

  .hero-trust-card {
    padding: 0.62rem 0.7rem;
  }

  .hero-trust-card span,
  .hero-preview-copy span {
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .site-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 18px;
    transition: none;
  }

  .site-topbar .brand {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 12px;
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-wordmark {
    height: 1.38rem;
  }

  .site-topbar-toggle {
    display: inline-flex;
    width: 2.9rem;
    height: 2.9rem;
  }

  .site-topbar-menu {
    display: none;
    grid-column: 1 / -1;
    padding-top: 0.55rem;
  }

  .site-topbar.menu-open .site-topbar-menu {
    display: grid;
    gap: 0.8rem;
  }

  .site-topbar .topbar-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    width: 100%;
  }

  .site-topbar .topbar-links a {
    display: block;
    padding: 0.72rem 0.1rem;
    font-size: 0.96rem;
  }

  .site-topbar .topbar-links > .topbar-group > summary {
    width: 100%;
    min-height: 0;
    padding: 0.72rem 0.1rem;
    font-size: 0.96rem;
  }

  .topbar-submenu {
    position: static;
    min-width: 0;
    margin-top: 0.1rem;
    padding: 0.2rem 0 0.35rem 0.75rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .topbar-submenu a {
    padding: 0.6rem 0.15rem;
  }

  .site-topbar .site-topbar-menu > .btn {
    width: 100%;
  }

  .site-topbar.menu-open .site-topbar-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-topbar.menu-open .site-topbar-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-topbar.menu-open .site-topbar-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-slider-section {
    padding-top: 0.15rem;
  }

  .hero-slider {
    border-radius: 24px;
  }

  .consult-modal {
    padding: 0.8rem;
  }

  .consult-modal-grid {
    grid-template-columns: 1fr;
  }

  .consult-modal-types {
    grid-template-columns: 1fr;
  }

  .hero-slide-copy,
  .page-hero-content {
    padding: 1rem 1rem 0.9rem;
    gap: 0.62rem;
    justify-content: flex-start;
    transform: none;
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2,
  .page-hero h1,
  .page-hero h2 {
    font-size: clamp(1.28rem, 5.3vw, 1.9rem) !important;
    line-height: 1.16;
    letter-spacing: -0.055em;
  }

  .hero-slide-copy p,
  .page-hero p,
  .page-hero-lede {
    font-size: 0.84rem;
    line-height: 1.56;
  }

  .hero-slide-admission .hero-slide-copy {
    padding-bottom: 0.95rem;
    gap: 0.7rem;
  }

  .hero-slide-admission .hero-slide-copy h1 {
    font-size: clamp(1.12rem, 4.8vw, 1.55rem) !important;
    line-height: 1.18;
  }

  .hero-slide-admission .hero-slide-copy p {
    font-size: 0.78rem;
    line-height: 1.56;
  }

  .hero-slide-admission .hero-slide-points span {
    font-size: 0.7rem;
    padding: 0.4rem 0.58rem;
  }

  .hero-slide-admission .hero-slide-actions {
    margin-top: 0.28rem;
  }

  .hero-slide-actions,
  .page-hero-actions {
    gap: 0.45rem;
  }

  .hero-slide-actions .btn,
  .page-hero-actions .btn {
    min-height: 38px;
    padding: 0 0.82rem;
    font-size: 0.84rem;
  }

  .hero-slide-points,
  .hero-pills {
    gap: 0.36rem;
  }

  .hero-slide-points span,
  .hero-pills span {
    font-size: 0.74rem;
    padding: 0.46rem 0.68rem;
  }

  .hero-trust-row,
  .hero-slider-progress,
  .hero-slider .swiper-pagination {
    display: none;
  }

  .hero-slider-footer {
    position: static;
    padding: 0 1rem 0.95rem;
    margin-top: 0.1rem;
  }

  .hero-slider-meta {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 0.45rem;
  }

  .hero-slider-fraction {
    font-size: 0.82rem;
  }

  .hero-slider-nav .swiper-button-next,
  .hero-slider-nav .swiper-button-prev {
    width: 2.3rem;
    height: 2.3rem;
  }

  .hero-slider-nav .swiper-button-next::after,
  .hero-slider-nav .swiper-button-prev::after {
    font-size: 0.78rem;
  }

  .site-topbar.is-compact-mobile {
    position: fixed;
    top: 0.55rem;
    right: 0.55rem;
    left: auto;
    width: auto;
    margin-top: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    gap: 0;
  }

  .site-topbar.is-compact-mobile:not(.menu-open) .brand,
  .site-topbar.is-compact-mobile:not(.menu-open) .site-topbar-menu {
    display: none;
  }

  .site-topbar.is-compact-mobile:not(.menu-open) .site-topbar-toggle {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: rgba(246, 249, 253, 0.96);
    box-shadow: 0 10px 24px rgba(9, 26, 52, 0.18);
  }

  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .section-title-row p {
    max-width: none;
    width: 100%;
  }

  .workflow-card .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-card {
    justify-items: start;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}
