/* ============================================
   VIRTUAL CURRENT — DESIGN SYSTEM
   Architectural Grid Concept
   ============================================ */


:root {
  --color-bg: #f5f6f8;
  --color-bg-dark: #0d1520;
  --color-bg-mid: #111d2e;
  --color-surface: #ffffff;
  --color-surface-dark: #162032;
  --color-primary: #1a3a5c;
  --color-primary-light: #2a5298;
  --color-accent: #3d8bcd;
  --color-accent-bright: #5ba3e0;
  --color-blueprint: #0e2a4a;
  --color-text: #1c2b3a;
  --color-text-mid: #3d5166;
  --color-text-light: #e8edf3;
  --color-text-muted: #8fa3b8;
  --color-border: #d0dae5;
  --color-border-dark: #1e3550;
  --color-grid: rgba(42, 82, 152, 0.07);
  --color-grid-dark: rgba(93, 161, 220, 0.08);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(13,21,32,0.08), 0 1px 2px rgba(13,21,32,0.06);
  --shadow-md: 0 4px 12px rgba(13,21,32,0.10), 0 2px 4px rgba(13,21,32,0.06);
  --shadow-lg: 0 10px 30px rgba(13,21,32,0.14), 0 4px 8px rgba(13,21,32,0.08);
  --shadow-xl: 0 20px 50px rgba(13,21,32,0.18), 0 8px 16px rgba(13,21,32,0.10);
  --shadow-accent: 0 8px 24px rgba(61,139,205,0.22), 0 2px 6px rgba(61,139,205,0.12);

  --transition-fast: 0.18s ease;
  --transition-mid: 0.32s ease;
  --transition-slow: 0.5s ease;

  --nav-height: 72px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.grid-bg--subtle {
  background-image:
    linear-gradient(rgba(42,82,152,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,82,152,0.04) 1px, transparent 1px);
}
.grid-bg--dark {
  background-image:
    linear-gradient(var(--color-grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid-dark) 1px, transparent 1px);
}


h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

.heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}
.heading--light { color: var(--color-text-light); }

.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(61,139,205,0.1);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--color-accent);
  margin-bottom: var(--space-sm);
}
.label--light {
  color: var(--color-accent-bright);
  background: rgba(91,163,224,0.15);
  border-left-color: var(--color-accent-bright);
}

p { color: var(--color-text-mid); line-height: 1.75; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  container-type: inline-size;
  container-name: main-container;
}
.container--narrow {
  max-width: 820px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85em 1.8em;
  border-radius: var(--radius-md);
  transition: all var(--transition-mid);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: 0 12px 32px rgba(61,139,205,0.35);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(232,237,243,0.4);
}
.btn--outline-light:hover {
  background: rgba(232,237,243,0.1);
  border-color: var(--color-text-light);
}
.btn--sm {
  padding: 0.6em 1.2em;
  font-size: 0.8rem;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(13, 21, 32, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(61,139,205,0.18);
  box-shadow: 0 4px 24px rgba(13,21,32,0.22);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: var(--nav-height);
}
.nav__logo img { transition: opacity var(--transition-fast); }
.nav__logo:hover img { opacity: 0.8; }
.nav__links {
  display: none;
  gap: var(--space-sm);
}
@media (min-width: 900px) {
  .nav__links { display: flex; align-items: center; }
}
.nav__link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232,237,243,0.75);
  padding: 0.5em 0.8em;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.8em;
  right: 0.8em;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-mid);
  transform-origin: left;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: #fff; }
.nav__link--active::after { transform: scaleX(1); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: all var(--transition-mid);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav__toggle { display: none; } }


.nav__mobile {
  display: flex;
  flex-direction: column;
  background: rgba(13,21,32,0.97);
  backdrop-filter: blur(16px);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  border-top: 1px solid transparent;
}
.nav__mobile.is-open {
  max-height: 400px;
  border-top-color: rgba(61,139,205,0.2);
}
.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232,237,243,0.75);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(61,139,205,0.1);
  transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__mobile-link:hover,
.nav__mobile-link--active { color: #fff; padding-left: calc(var(--space-md) + 8px); background: rgba(61,139,205,0.08); }
@media (min-width: 900px) { .nav__mobile { display: none; } }


.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(61,139,205,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,58,92,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 900px) {
  .hero__layout { grid-template-columns: 1fr 1fr; align-items: center; }
}
.hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  border: 1px solid rgba(91,163,224,0.3);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}
.hero__heading {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


.hero__cards {
  position: relative;
  height: 380px;
  display: none;
}
@media (min-width: 900px) { .hero__cards { display: block; } }

.card--hero {
  position: absolute;
  background: var(--color-surface-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  width: 280px;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.card--hero:hover { transform: translateY(-4px) !important; box-shadow: var(--shadow-xl) !important; }
.card--hero h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.5em;
}
.card--hero p { font-size: 0.85rem; color: var(--color-text-muted); }
.card__icon {
  width: 40px;
  height: 40px;
  background: rgba(61,139,205,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-bright);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}
.card--hero-1 {
  top: 0;
  right: 40px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.card--hero-2 {
  top: 100px;
  right: 0;
  transform: rotate(1.5deg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.card--hero-3 {
  top: 210px;
  right: 60px;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.marquee {
  overflow: hidden;
  background: var(--color-primary);
  padding: 0.9em 0;
  border-top: 1px solid rgba(61,139,205,0.2);
  border-bottom: 1px solid rgba(61,139,205,0.2);
}
.marquee--accent { background: var(--color-accent); }
.marquee__track {
  display: flex;
  gap: 2em;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee__track--reverse { animation-direction: reverse; }
.marquee span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee--accent span { color: rgba(255,255,255,0.9); }
.marquee__dot { color: rgba(255,255,255,0.4) !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}
.section--light { background: var(--color-bg); }
.section--dark {
  background: var(--color-bg-dark);
}
.section--blueprint {
  background: var(--color-blueprint);
}
.section--contact { background: var(--color-bg); }
.section--map { padding: 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header__sub {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
}
.intro-grid__text { position: relative; z-index: 1; }
.intro-grid__text h2 { margin-bottom: var(--space-md); }
.intro-grid__text p { margin-bottom: var(--space-md); }

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.image-frame:hover img { transform: scale(1.03); }
.image-frame__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(61,139,205,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}


.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}
.feature:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--right .feature__visual { order: 2; }
  .feature--right .feature__content { order: 1; }
}
.feature__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature__visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.feature__visual:hover img { transform: scale(1.04); }
.feature__content { position: relative; z-index: 1; }
.feature__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(61,139,205,0.2);
  line-height: 1;
  margin-bottom: 0.2em;
  letter-spacing: -0.04em;
}
.feature__content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.feature__content p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-bright);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.link-arrow:hover { gap: 0.7em; color: #fff; }


.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  container-type: inline-size;
  container-name: cards;
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

.card--step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
  box-shadow: var(--shadow-sm);
}
.card--step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,139,205,0.3);
}
.card__num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.4;
  margin-bottom: 0.5em;
  line-height: 1;
}
.card--step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6em;
}
.card--step p { font-size: 0.9rem; }


.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-grid__text h2 { margin-bottom: var(--space-md); }
.who-grid__text p { color: rgba(232,237,243,0.7); margin-bottom: var(--space-lg); }
.who-list {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-bottom: var(--space-lg);
}
.who-list li {
  display: flex;
  align-items: center;
  gap: 0.8em;
  color: rgba(232,237,243,0.85);
  font-size: 1rem;
}
.who-list i { color: var(--color-accent-bright); width: 20px; }
.who-grid__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.who-grid__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.who-grid__image:hover img { transform: scale(1.03); }


.page-hero {
  position: relative;
  background: var(--color-bg-dark);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61,139,205,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero--legal { padding-bottom: var(--space-lg); }
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}
.page-hero__content p { color: var(--color-text-muted); font-size: 1.1rem; }


.profile-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}
.profile-block:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .profile-block { grid-template-columns: 1fr 1fr; }
  .profile-block--reverse .profile-block__image { order: 2; }
  .profile-block--reverse .profile-block__content { order: 1; }
}
.profile-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.profile-block__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.profile-block__image:hover img { transform: scale(1.03); }
.profile-block__icon {
  width: 48px;
  height: 48px;
  background: rgba(61,139,205,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}
.profile-block__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.profile-block__content p { margin-bottom: var(--space-sm); }
.profile-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: var(--space-sm);
}
.profile-block__tags span {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(61,139,205,0.08);
  border: 1px solid rgba(61,139,205,0.2);
  padding: 0.3em 0.7em;
  border-radius: 99px;
}


.situations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) { .situations-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .situations-grid { grid-template-columns: repeat(4, 1fr); } }
.card--situation {
  background: var(--color-surface-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
  box-shadow: var(--shadow-sm);
}
.card--situation:hover {
  transform: translateY(-4px);
  border-color: rgba(61,139,205,0.3);
  box-shadow: var(--shadow-lg);
}
.card--situation i {
  font-size: 1.5rem;
  color: var(--color-accent-bright);
  margin-bottom: var(--space-sm);
  display: block;
}
.card--situation p { color: var(--color-text-muted); font-size: 0.92rem; }


.two-col-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 900px) { .two-col-info { grid-template-columns: 1fr 1fr; } }
.two-col-info h2 { margin-bottom: var(--space-md); }
.two-col-info p { margin-bottom: var(--space-sm); }
.card--info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}
.card--info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.card--info ul { display: flex; flex-direction: column; gap: 0.6em; }
.card--info li {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  padding-left: 1.2em;
  position: relative;
}
.card--info li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.8em;
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(61,139,205,0.03); }
.step__marker {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}
.step__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5em;
}
.step__content p { font-size: 0.95rem; }


.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) { .approach-grid { grid-template-columns: 1fr 1fr; } }
.approach-col__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: 0.5em;
  border-bottom: 2px solid;
}
.approach-col__title--no { color: rgba(232,237,243,0.5); border-color: rgba(232,237,243,0.15); }
.approach-col__title--yes { color: var(--color-accent-bright); border-color: var(--color-accent); }
.approach-list { display: flex; flex-direction: column; gap: 1em; }
.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  font-size: 0.95rem;
}
.approach-list--no li { color: var(--color-text-muted); }
.approach-list--no i { color: rgba(232,237,243,0.3); margin-top: 0.1em; }
.approach-list--yes li { color: rgba(232,237,243,0.85); }
.approach-list--yes i { color: var(--color-accent-bright); margin-top: 0.1em; }


.course-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: var(--space-xl);
}
.tab {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.6em 1.2em;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
}
.tab:hover { border-color: var(--color-accent); color: var(--color-accent); }
.tab--active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  container-type: inline-size;
}
@media (min-width: 600px) { .courses-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .courses-grid { grid-template-columns: repeat(3, 1fr); } }

.card--course {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
  box-shadow: var(--shadow-sm);
}
.card--course:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,139,205,0.3);
}
.card--course.card--featured {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(61,139,205,0.05) 0%, var(--color-surface) 100%);
  box-shadow: var(--shadow-accent);
}
.card--course h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}
.card--course p { font-size: 0.9rem; flex: 1; }
.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(61,139,205,0.08);
  padding: 0.3em 0.7em;
  border-radius: 99px;
}
.card__tag--featured { background: rgba(61,139,205,0.15); }
.card__modules {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
}
.card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
.card__topics span {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  color: var(--color-text-mid);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.25em 0.6em;
  border-radius: 99px;
}
.card--course .btn { align-self: flex-start; margin-top: auto; }
.card--course.is-hidden { display: none; }


.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) { .templates-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .templates-grid { grid-template-columns: repeat(4, 1fr); } }
.card--template {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: background var(--transition-mid), transform var(--transition-mid);
}
.card--template:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.card--template i {
  font-size: 1.8rem;
  color: var(--color-accent-bright);
  margin-bottom: var(--space-sm);
}
.card--template h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.5em;
}
.card--template p { font-size: 0.88rem; color: rgba(232,237,243,0.6); }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.6fr 1fr; } }
.contact-layout .heading { margin-bottom: var(--space-lg); }


.form { display: flex; flex-direction: column; gap: var(--space-md); }
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 0.4em; }
.form__field label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-mid);
}
.form__req { color: var(--color-accent); }
.form__field input,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75em 1em;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
  width: 100%;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(61,139,205,0.15);
}
.form__field textarea { resize: vertical; min-height: 140px; }
.form__field--checkbox label { flex-direction: row; align-items: flex-start; gap: 0.7em; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 0.9rem; }
.form__checkbox { display: flex; align-items: flex-start; gap: 0.7em; cursor: pointer; }
.form__checkbox input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-accent); }
.form__checkbox span { font-size: 0.88rem; color: var(--color-text-mid); line-height: 1.5; }
.form__checkbox a { color: var(--color-accent); text-decoration: underline; }
.form__error {
  color: #c0392b;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 600;
  min-height: 1.2em;
}

.card--contact-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}
.card--contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}
.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 0.2em;
  width: 20px;
}
.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.3em;
}
.contact-item a,
.contact-item p { font-size: 0.95rem; color: var(--color-text-mid); }
.contact-item a:hover { color: var(--color-accent); }


.trust-quote {
  background: linear-gradient(135deg, rgba(61,139,205,0.06) 0%, rgba(26,58,92,0.04) 100%);
  border: 1px solid rgba(61,139,205,0.2);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.trust-quote__icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1em;
}
.trust-quote blockquote p {
  font-size: 1.1rem;
  color: var(--color-text-mid);
  font-style: italic;
  line-height: 1.8;
}


.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0 var(--space-md) var(--space-xl);
}
@media (min-width: 900px) { .map-wrapper { margin: 0 0 var(--space-xl); } }


.legal-page {
  padding: var(--space-xl) var(--space-md);
  flex: 1;
}
.legal-intro {
  background: rgba(61,139,205,0.05);
  border: 1px solid rgba(61,139,205,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.legal-intro p { font-size: 1rem; color: var(--color-text-mid); }
.legal-section {
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xl);
}
.legal-section:last-child { border-bottom: none; }
.legal-summary {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--color-accent);
}
.legal-summary strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}
.legal-summary span { font-size: 0.85rem; color: var(--color-text-muted); }
.legal-detail p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.legal-detail ul { margin: var(--space-sm) 0 var(--space-sm) var(--space-md); display: flex; flex-direction: column; gap: 0.5em; }
.legal-detail li { font-size: 0.95rem; color: var(--color-text-mid); list-style: disc; }
.legal-detail a { color: var(--color-accent); text-decoration: underline; }


.legal-page--terms .terms-block {
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xl);
}
.legal-page--terms .terms-block:last-child { border-bottom: none; }
.terms-summary-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(90deg, rgba(61,139,205,0.08) 0%, transparent 100%);
  border-radius: var(--radius-md);
}
.terms-letter {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.terms-summary-bar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}
.terms-summary-bar em { font-size: 0.85rem; color: var(--color-text-muted); font-style: normal; }


.cookies-intro-box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.cookies-intro-box i { font-size: 2rem; color: var(--color-accent); flex-shrink: 0; }
.cookies-intro-box h2 { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5em; }
.cookies-intro-box p { font-size: 0.95rem; }
.cookies-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-border);
}
.cookie-type-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.cookie-type-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.cookie-type-card__header h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-primary); }
.cookie-type-card__summary { font-weight: 600; color: var(--color-text-mid); margin-bottom: var(--space-sm); font-size: 0.95rem; }
.cookie-type-card__detail p { font-size: 0.92rem; margin-bottom: var(--space-sm); }
.cookie-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  border-radius: 99px;
}
.cookie-badge--required { background: rgba(39,174,96,0.1); color: #27ae60; }
.cookie-badge--optional { background: rgba(61,139,205,0.1); color: var(--color-accent); }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: var(--space-sm);
}
.cookie-table th {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.6em 0.8em;
  border-bottom: 1px solid var(--color-border);
}
.cookie-table td {
  padding: 0.6em 0.8em;
  color: var(--color-text-mid);
  border-bottom: 1px solid rgba(208,218,229,0.5);
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookies-manage-box {
  background: linear-gradient(135deg, rgba(61,139,205,0.06) 0%, rgba(26,58,92,0.04) 100%);
  border: 1px solid rgba(61,139,205,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0 var(--space-md);
}
.cookies-manage-box h2 { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-sm); }
.cookies-manage-box p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.cookies-manage-box .btn { margin-top: var(--space-sm); }
.cookies-contact-box { font-size: 0.92rem; color: var(--color-text-muted); }
.cookies-contact-box a { color: var(--color-accent); text-decoration: underline; }


.body--thanks { background: var(--color-bg); }
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}
.thanks-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}
.thanks-dot {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: dotExpand 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
  box-shadow: var(--shadow-accent);
}
@keyframes dotExpand {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.6s forwards;
}
.thanks-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.1s forwards;
  transition: color var(--transition-fast);
}
.thanks-link:hover { color: var(--color-primary); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  margin-top: auto;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
@media (min-width: 600px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__card {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
.footer__card img { margin-bottom: 0.4em; }
.footer__card p,
.footer__card address {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.footer__card h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,237,243,0.5);
  margin-bottom: 0.4em;
}
.footer__card nav {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer__card nav a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer__card nav a:hover { color: var(--color-text-light); padding-left: 4px; }
.footer__card--contact a:not(.btn) {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.footer__card--contact a:not(.btn):hover { color: var(--color-text-light); }
.footer__card--contact i { color: var(--color-accent); width: 16px; }

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: var(--space-md) var(--space-md);
  text-align: center;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(143,163,184,0.6); }


.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,21,32,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
  backdrop-filter: blur(4px);
}
.cookie-overlay--visible { opacity: 1; pointer-events: all; }

.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--color-bg-dark);
  border-left: 1px solid var(--color-border-dark);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(13,21,32,0.4);
  overflow-y: auto;
}
.cookie-panel--open { transform: translateX(0); }

.cookie-panel__header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.cookie-panel__header i { font-size: 1.3rem; color: var(--color-accent); }
.cookie-panel__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.cookie-panel__body {
  padding: var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.cookie-panel__body p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }
.cookie-panel__body a { color: var(--color-accent); text-decoration: underline; }

.cookie-cat {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-dark);
}
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-cat__name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-light);
}
.cookie-cat__desc { font-size: 0.78rem; color: var(--color-text-muted); }


.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
}
.toggle input:checked + .toggle__slider { background: var(--color-accent); }
.toggle input:checked + .toggle__slider::before { transform: translateX(18px); }
.toggle input:disabled + .toggle__slider { opacity: 0.5; cursor: not-allowed; }

.cookie-panel__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.cookie-panel__footer .btn { width: 100%; justify-content: center; }


.info-aside { display: flex; flex-direction: column; gap: var(--space-md); }


@media (max-width: 599px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .trust-quote { flex-direction: column; }
  .cookies-intro-box { flex-direction: column; }
  .step { grid-template-columns: 1fr; }
  .step__marker { width: 40px; height: 40px; font-size: 1rem; }
}

@media (min-width: 900px) {
  .section { padding: var(--space-3xl) 0; }
}