@font-face {
  font-family: "FFUnitWebPro";
  src: url("/assets/fonts/332550_0_0.woff2") format("woff2"), url("/assets/fonts/332550_0_0.woff") format("woff"), url("/assets/fonts/332550_0_0.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FFUnitWebPro";
  src: url("/assets/fonts/332550_1_0.woff2") format("woff2"), url("/assets/fonts/332550_1_0.woff") format("woff"), url("/assets/fonts/332550_1_0.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --n-0: #ffffff;
  --n-25: #fafbfc;
  --n-50: #f5f6f8;
  --n-100: #ebedf0;
  --n-200: #d1d5db;
  --n-300: #b0b7c3;
  --n-400: #8b95a5;
  --n-500: #6b7685;
  --n-600: #4f5b6b;
  --n-700: #3a4553;
  --n-800: #2a3240;
  --n-900: #1a2230;
  --n-950: #0f1620;
  --brand-primary: #e3000f;
  --brand-primary-dark: #b8000c;
  --brand-primary-light: #ff3344;
  --brand-secondary: #232323;
  --brand-accent: #0077cc;
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12);
  --font-sans: 'FFUnitWebPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 30px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 64px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 100px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --red: #e3000f;
  --red-deep: #c4000d;
  --anthracite: #323c46;
  --anthracite-90: #3a444e;
  --slate: #5b636b;
  --gray-50: #fafbfc;
  --gray-100: #f4f5f7;
  --gray-200: #e8ebf0;
  --gray-300: #d1d5db;
  --gray-warm: #6b7280;
  --white: #fff;
  --black: #0a0a0a;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  overflow-x: clip;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font: inherit;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--n-900);
  background-color: var(--n-25);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--n-0);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--n-900);
  border: 1px solid var(--n-200);
}
.btn-outline:hover {
  border-color: var(--n-400);
  background: var(--n-50);
}

.btn-white {
  background: var(--n-0);
  color: var(--n-900);
}
.btn-white:hover {
  background: var(--n-50);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.overline {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--n-500);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.anim-rise {
  animation: rise 0.7s var(--ease-out) both;
}

.d1 {
  animation-delay: 0.05s;
}

.d2 {
  animation-delay: 0.1s;
}

.d3 {
  animation-delay: 0.15s;
}

.d4 {
  animation-delay: 0.2s;
}

.d5 {
  animation-delay: 0.25s;
}

.d6 {
  animation-delay: 0.3s;
}

.d7 {
  animation-delay: 0.35s;
}

.d8 {
  animation-delay: 0.4s;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.s-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--red);
}

.s-eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}

.s-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.03em;
  max-width: 640px;
  margin-bottom: 1rem;
}
.s-heading .accent {
  color: var(--red);
  font-weight: 700;
}

.s-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.85;
  color: var(--gray-warm);
  max-width: 520px;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  background: var(--red);
  color: #fff;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 6px 32px rgba(227, 0, 15, 0.3);
  transform: translateY(-2px);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-ghost {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  padding: 1rem 0;
}
.btn-ghost:hover {
  color: #fff;
}
.btn-ghost:hover svg {
  transform: translateX(3px);
}
.btn-ghost svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.progress {
  position: fixed;
  top: 2px;
  left: 0;
  height: 2px;
  z-index: 10001;
  background: linear-gradient(90deg, var(--red), #ff3344, var(--red));
  width: 0%;
  box-shadow: 0 0 8px rgba(227, 0, 15, 0.15);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: 0.06s;
}

.rd2 {
  transition-delay: 0.12s;
}

.rd3 {
  transition-delay: 0.18s;
}

.rd4 {
  transition-delay: 0.24s;
}

.rd5 {
  transition-delay: 0.3s;
}

.rd6 {
  transition-delay: 0.36s;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.5s var(--ease);
}
.nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.5s var(--ease);
  z-index: 1;
}
.nav.scrolled, .nav.nav-light {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}
.nav.scrolled::after, .nav.nav-light::after {
  background: var(--gray-200);
}
.nav.scrolled .nav-inner, .nav.nav-light .nav-inner {
  height: 64px;
}
.nav.scrolled .nav-link-item > a, .nav.nav-light .nav-link-item > a {
  color: var(--anthracite);
}
.nav.scrolled .nav-link-item > a:hover, .nav.scrolled .nav-link-item > a.active, .nav.nav-light .nav-link-item > a:hover, .nav.nav-light .nav-link-item > a.active {
  color: var(--red);
}
.nav.scrolled .nav-search svg, .nav.nav-light .nav-search svg {
  color: var(--gray-warm);
}
.nav.scrolled .nav-search svg:hover, .nav.nav-light .nav-search svg:hover {
  color: var(--red);
}
.nav.scrolled .nav-contact, .nav.nav-light .nav-contact {
  color: var(--anthracite);
}
.nav.scrolled .nav-contact:hover, .nav.nav-light .nav-contact:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-top {
  height: 2px;
  background: var(--red);
  position: relative;
  z-index: 2;
}

.nav-main {
  position: relative;
  transition: all 0.5s var(--ease);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  height: 72px;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  transition: height 0.5s var(--ease);
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-logo svg {
  height: 22px;
  transition: all 0.3s;
}
.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
}

.nav-link-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 24px;
}
.nav-link-item > a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 1.15rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.25s;
  position: relative;
}
.nav-link-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.15rem;
  right: 1.15rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-link-item > a:hover {
  color: #fff;
}
.nav-link-item > a:hover::after {
  transform: scaleX(1);
}
.nav-link-item > a.active {
  color: #fff;
}
.nav-link-item > a.active::after {
  transform: scaleX(1);
}
.nav-link-item:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: #fff;
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1), 0 1px 0 var(--gray-200);
  padding: 2rem 2.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-mega {
  z-index: 100;
}

.nav-mega-title {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.nav-mega-desc {
  font-size: 0.82rem;
  color: var(--gray-warm);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.nav-mega-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-mega-links a {
  font-size: 0.82rem;
  color: var(--anthracite);
  font-weight: 400;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border-bottom: 1px solid var(--gray-100);
}
.nav-mega-links a:last-child {
  border-bottom: none;
}
.nav-mega-links a:hover {
  color: var(--red);
  padding-left: 0.5rem;
}
.nav-mega-links a:hover svg {
  opacity: 1;
  transform: translateX(0);
}
.nav-mega-links a svg {
  width: 10px;
  height: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-search {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
}
.nav-search svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.nav-search:hover svg {
  color: #fff;
}

.nav-contact {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}
.nav-contact:hover {
  color: #fff;
  border-bottom-color: var(--red);
}

.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono, "IBM Plex Mono", monospace);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.lang-toggle:hover {
  color: #fff;
}
.lang-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.lang-toggle .chevron-icon {
  width: 10px;
  height: 10px;
  opacity: 0.45;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.lang-toggle:hover .chevron-icon {
  opacity: 0.8;
}

.lang-selector.open .lang-toggle {
  color: #fff;
}
.lang-selector.open .lang-toggle .chevron-icon {
  transform: rotate(180deg);
  opacity: 0.8;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(50, 60, 70, 0.08);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transform-origin: top right;
  transition: all 0.3s var(--ease);
  z-index: 100;
  white-space: nowrap;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--anthracite);
  transition: background 0.2s;
  font-family: var(--font-head);
  text-decoration: none;
}
.lang-option:hover {
  background: var(--gray-50, #f8f9fa);
}
.lang-option.active {
  background: rgba(50, 60, 70, 0.04);
  font-weight: 600;
}
.lang-option + .lang-option {
  border-top: 1px solid var(--gray-200);
}
.lang-option:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
  background: var(--gray-50, #f8f9fa);
}
.lang-option .lang-code {
  font-family: var(--font-mono, "IBM Plex Mono", monospace);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gray-warm, #adb5bd);
  letter-spacing: 0.04em;
}
.lang-option.active .lang-code {
  color: var(--anthracite-light, #4a5568);
}

.nav.scrolled .lang-toggle,
.nav.nav-light .lang-toggle {
  color: var(--anthracite-light, #4a5568);
}
.nav.scrolled .lang-toggle:hover,
.nav.nav-light .lang-toggle:hover {
  color: var(--red);
}
.nav.scrolled .lang-selector.open .lang-toggle,
.nav.nav-light .lang-selector.open .lang-toggle {
  color: var(--red);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  pointer-events: none;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer.open .drawer-backdrop {
  opacity: 1;
}
.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-header .logo-text {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--anthracite);
}

.drawer-close {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 1.1rem;
  color: var(--gray-warm);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover {
  background: var(--gray-50);
  color: var(--red);
}

.drawer-body {
  padding: 1rem 0;
  overflow-y: auto;
  flex: 1;
}

.drawer-link {
  display: block;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--anthracite);
  transition: all 0.2s;
}
.drawer-link:hover {
  color: var(--red);
  background: var(--gray-50);
  padding-left: 2rem;
}

.drawer-lang {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.drawer-lang-btn {
  flex: 1;
  padding: 0.85rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--anthracite);
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.drawer-lang-btn.active {
  border-color: var(--red);
  background: rgba(227, 0, 15, 0.04);
  color: var(--red);
}

.footer {
  background: var(--anthracite);
  border-top: 2px solid var(--red);
}
.footer h4 {
  font-family: var(--font-head);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  transition: all 0.3s;
  display: inline-block;
}
.footer ul a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-main {
  padding: clamp(4rem, 7vh, 5.5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand svg {
  height: 22px;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  max-width: 300px;
}

.footer-addr {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s var(--ease) !important;
  margin-left: 0.5rem;
}
.footer-top:hover {
  border-color: var(--red) !important;
  color: var(--red) !important;
  transform: translateY(-2px) !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--anthracite);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 60% 50% at 10% 50%, rgba(50, 60, 70, 0.97), transparent 70%), radial-gradient(ellipse 40% 50% at 90% 30%, rgba(227, 0, 15, 0.03), transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 2;
  background: linear-gradient(to top, var(--anthracite), transparent);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) .line-inner {
  animation-delay: 0.3s;
}
.hero h1 .line:nth-child(2) .line-inner {
  animation-delay: 0.42s;
}
.hero h1 .line:nth-child(3) .line-inner {
  animation-delay: 0.54s;
}
.hero h1 .accent {
  color: var(--red);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(140px, 18vh, 200px) 0 clamp(120px, 16vh, 180px);
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--red);
}

.hero-eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.4);
  max-width: 540px;
  font-weight: 300;
  margin-bottom: clamp(2rem, 3.5vh, 3rem);
  opacity: 0;
  animation: fadeUp 0.8s 0.65s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-bottom-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vh, 2rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero-bottom-inner {
    flex-wrap: wrap;
  }
  .hero-bottom-inner > div:not(.h-stat-div) {
    flex: 0 0 calc(50% - 1rem);
  }
}

.h-stat-val {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.h-stat-val span {
  color: var(--red);
  font-weight: 400;
}

.h-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.h-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .h-stat-div {
    display: none;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 100px;
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s 1.5s var(--ease) forwards;
}

.hero-scroll-text {
  font-family: var(--font-head);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  writing-mode: vertical-rl;
  font-weight: 500;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--red);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes lineUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.statement {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.statement--problems {
  background: var(--black);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.statement--problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(227, 0, 15, 0.03), transparent 50%);
}
.statement--problems .statement-header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(3rem, 5vh, 5rem);
}
.statement--problems .s-eyebrow-text {
  color: rgba(227, 0, 15, 0.7);
}
.statement--problems .s-heading {
  color: #fff;
}
.statement--problems .s-heading .accent {
  color: var(--red);
}
.statement--problems .s-desc {
  color: rgba(255, 255, 255, 0.6);
}
.statement--problems .why-grid {
  position: relative;
  z-index: 1;
}

.statement-inner {
  max-width: 960px;
  border-left: 3px solid var(--red);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}
.statement-inner p {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.6;
  font-weight: 400;
  color: var(--anthracite);
  letter-spacing: -0.015em;
}
.statement-inner p strong {
  font-weight: 700;
  color: var(--red);
}

.trust {
  background: var(--white);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
}
.trust::before, .trust::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.trust::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}
.trust::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.trust-label {
  text-align: center;
  margin-bottom: 1.5rem;
}
.trust-label span {
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.trust-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.trust-track:hover {
  animation-play-state: paused;
}

.trust-logo {
  flex-shrink: 0;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  height: 32px;
}
.trust-logo span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-300);
  white-space: nowrap;
  transition: color 0.3s;
}
.trust-logo:hover span {
  color: var(--anthracite);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.services {
  background: var(--white);
}

.services-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  padding: clamp(2.5rem, 3.5vw, 3.5rem);
  border: 1px solid var(--gray-200);
  margin: -0.5px;
  position: relative;
  transition: all 0.5s var(--ease);
  cursor: default;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover {
  z-index: 2;
  background: var(--gray-50);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card:hover .svc-num {
  color: rgba(227, 0, 15, 0.12);
}
.svc-card:hover .svc-icon {
  background: rgba(227, 0, 15, 0.06);
  color: var(--red);
}
.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: translateY(0);
}
.svc-card:hover .svc-arrow svg {
  transform: translateX(3px);
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.svc-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--gray-warm);
  font-weight: 300;
}

.svc-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 200;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 1.75rem;
  transition: color 0.5s var(--ease);
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.5s var(--ease);
  color: var(--slate);
}

.svc-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.svc-features li {
  font-size: 0.82rem;
  color: var(--gray-warm);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}
.svc-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.5;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.svc-tag {
  font-size: 0.7rem !important;
  padding: 0.45rem 1rem !important;
}

.svc-kpi {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}

.svc-arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}
.svc-arrow svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.process {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.process-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--gray-300);
  z-index: 0;
}
@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .process-timeline::before {
    display: none;
  }
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}
.proc-step:hover .proc-dot {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 4px 20px rgba(227, 0, 15, 0.2);
  transform: scale(1.1);
}
.proc-step:hover .proc-dot span {
  color: #fff;
}
.proc-step h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}
.proc-step p {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--gray-warm);
  font-weight: 300;
}

.proc-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.5s var(--ease);
  position: relative;
}
.proc-dot span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-warm);
  transition: color 0.3s;
}

.why {
  background: var(--black);
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(227, 0, 15, 0.03), transparent 50%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(97, 160, 168, 0.02), transparent 50%);
}
.why .s-eyebrow-text {
  color: rgba(227, 0, 15, 0.7);
}
.why .s-heading {
  color: #fff;
}
.why .s-heading .accent {
  color: var(--red);
}
.why .s-desc {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: clamp(3rem, 5vh, 5rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: clamp(2rem, 3vw, 3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.5s var(--ease);
  cursor: default;
}
.why-card:last-child {
  border-right: none;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.02);
}
.why-card:hover::after {
  width: 56px;
}
.why-card::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.5rem;
  transition: width 0.4s var(--ease);
}
.why-card h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.why-card p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
@media (max-width: 1100px) {
  .why-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .why-card:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .why-card {
    border-right: none;
  }
}

.why-marker {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(227, 0, 15, 0.6);
  margin-bottom: 1rem;
}

.why--comparison .why-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .why--comparison .why-comparison-grid {
    grid-template-columns: 1fr;
  }
}
.why--comparison .why-comparison-col {
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.why--comparison .why-comparison-col--before {
  background: rgba(255, 255, 255, 0.02);
}
.why--comparison .why-comparison-col--after {
  background: rgba(227, 0, 15, 0.04);
  border-color: rgba(227, 0, 15, 0.1);
}
.why--comparison .why-comparison-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}
.why--comparison .why-comparison-col--after .why-comparison-label {
  color: rgba(227, 0, 15, 0.85);
}
.why--comparison .why-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why--comparison .why-comparison-list li {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
}
.why--comparison .why-comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.why--comparison .why-comparison-col--after .why-comparison-list li {
  color: rgba(255, 255, 255, 0.7);
}
.why--comparison .why-comparison-col--after .why-comparison-list li::before {
  background: var(--red);
  opacity: 0.6;
}

.cases {
  background: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.cases-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media (max-width: 768px) {
  .cases-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cases-header-right {
  flex-shrink: 0;
}

.cases-link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}
.cases-link:hover {
  gap: 0.65rem;
}
.cases-link svg {
  width: 14px;
  height: 14px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 1100px) {
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.case-card:hover .case-thumb-bg {
  transform: scale(1.04);
}
.case-card:first-child {
  grid-row: 1/3;
}
.case-card:first-child .case-body {
  border-radius: 0 0 14px 14px;
}
.case-card:first-child .case-thumb {
  flex: 1;
  min-height: 280px;
}
@media (max-width: 1100px) {
  .case-card:first-child {
    grid-row: auto;
  }
}
.case-card:not(:first-child) .case-thumb {
  height: 140px;
}
.case-card:nth-child(1) .case-thumb-bg {
  background: linear-gradient(135deg, #1a2332, var(--anthracite));
}
.case-card:nth-child(2) .case-thumb-bg {
  background: linear-gradient(135deg, #2d1a1a, #4a2020);
}
.case-card:nth-child(3) .case-thumb-bg {
  background: linear-gradient(135deg, #1a2d2d, #204a4a);
}

.case-thumb {
  position: relative;
  overflow: hidden;
}

.case-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.case-thumb-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.case-thumb-metric {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  text-align: right;
  z-index: 1;
}

.case-thumb-metric-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.case-thumb-metric-lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  margin-top: 0.15rem;
}

.case-body {
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 14px 14px;
  flex-shrink: 0;
}
.case-body h3 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.3rem;
  letter-spacing: -0.005em;
}
.case-body p {
  font-size: 0.75rem;
  color: var(--gray-warm);
  font-weight: 300;
  line-height: 1.6;
}

.industries {
  background: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.industries-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1rem);
}
@media (max-width: 1100px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

.ind-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.ind-card:hover .ind-card-bg {
  transform: scale(1.05);
}
.ind-card:hover .ind-card-arrow {
  opacity: 1;
  transform: translateY(0);
}
.ind-card:hover .ind-card-arrow svg {
  transform: translateX(3px);
}
.ind-card:nth-child(1) .ind-card-bg {
  background: linear-gradient(160deg, #1a2332 0%, #2a3a4a 40%, var(--anthracite) 100%);
}
.ind-card:nth-child(2) .ind-card-bg {
  background: linear-gradient(160deg, #2d1a1a 0%, #4a2525 40%, #3a1818 100%);
}
.ind-card:nth-child(3) .ind-card-bg {
  background: linear-gradient(160deg, #1a2d2d 0%, #254a4a 40%, #183a3a 100%);
}
.ind-card:nth-child(4) .ind-card-bg {
  background: linear-gradient(160deg, #2d2a1a 0%, #4a4525 40%, #3a3518 100%);
}
.ind-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}
.ind-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .ind-card {
    min-height: 260px;
  }
}

.ind-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.ind-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.ind-card-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ind-card-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.ind-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.ind-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.85rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.35s var(--ease);
}
.ind-card-arrow svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
}

.tech {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(5rem, 10vw, 7rem) 0;
}

.tech-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.tech-header .s-heading {
  margin: 0 auto 0.75rem;
  text-align: center;
  max-width: 560px;
}
.tech-header .s-desc {
  margin: 0 auto;
  text-align: center;
}

.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-pill {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--anthracite);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  cursor: default;
}
.tech-pill:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 2px 16px rgba(227, 0, 15, 0.08);
  transform: translateY(-2px) scale(1.02);
}

.oss {
  background: var(--black);
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.oss::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 40% at 70% 30%, rgba(227, 0, 15, 0.03), transparent);
}
.oss .s-heading {
  color: #fff;
}
.oss .s-heading .accent {
  color: var(--red);
}
.oss .s-desc {
  color: rgba(255, 255, 255, 0.55);
}

.oss-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .oss-inner {
    grid-template-columns: 1fr;
  }
}

.oss-repos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.oss-repo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.oss-repo:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(227, 0, 15, 0.15);
  transform: translateX(4px);
}

.oss-repo-info h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}
.oss-repo-info p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.oss-repo-lang {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.oss-repo-lang::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.btn-oss {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  margin-top: 2rem;
}
.btn-oss:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(227, 0, 15, 0.25);
  transform: translateY(-2px);
}
.btn-oss:hover svg {
  transform: translateX(3px);
}
.btn-oss svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.impact {
  background: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.impact-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.impact-card {
  padding: clamp(2.5rem, 3.5vw, 3.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease);
  cursor: default;
}
.impact-card:last-child {
  border-right: none;
}
.impact-card:hover {
  background: var(--gray-50);
}
.impact-card:hover::after {
  width: 40px;
}
.impact-card::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--red);
  margin: 0 auto;
  transition: width 0.5s var(--ease);
  margin-top: 1.5rem;
}
@media (max-width: 1100px) {
  .impact-card {
    border-bottom: 1px solid var(--gray-200);
  }
  .impact-card:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .impact-card {
    border-right: none !important;
  }
}

.impact-val {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.impact-val .accent {
  color: var(--red);
  font-weight: 400;
}

.impact-lbl {
  font-family: var(--font-head);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gray-warm);
  font-weight: 500;
  line-height: 1.5;
}

.quote {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.quote-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.08;
  line-height: 0.6;
  margin-bottom: 0.5rem;
}

.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--anthracite);
  letter-spacing: -0.015em;
  margin-bottom: 2.5rem;
}
.quote-text strong {
  font-weight: 700;
  color: var(--red);
}

.quote-author {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--anthracite);
}

.quote-role {
  font-size: 0.78rem;
  color: var(--gray-warm);
  font-weight: 300;
  margin-top: 0.2rem;
}

.media {
  background: var(--anthracite);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 30%, rgba(227, 0, 15, 0.03), transparent);
}

.media-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 1100px) {
  .media-inner {
    grid-template-columns: 1fr;
  }
}

.media-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.media-player:hover .media-player-bg {
  transform: scale(1.02);
}
.media-player:hover .media-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(227, 0, 15, 0.4);
}

.media-player-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e, var(--anthracite), #2a2a3e);
  transition: transform 0.5s var(--ease);
}

.media-player-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

.media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.media-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(227, 0, 15, 0.3);
  transition: all 0.4s var(--ease);
}
.media-play-btn svg {
  width: 24px;
  height: 24px;
  color: #fff;
  margin-left: 3px;
}

.media-player-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.media-player-dur {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  z-index: 2;
}

.media-content .s-heading {
  color: #fff;
}
.media-content .s-heading .accent {
  color: var(--red);
}
.media-content .s-desc {
  color: rgba(255, 255, 255, 0.35);
}

.media-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.media-hl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  transition: color 0.3s;
  cursor: default;
}
.media-hl:hover {
  color: rgba(255, 255, 255, 0.8);
}

.media-hl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.milestones {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.milestones-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}
.milestones-header .s-heading {
  margin: 0 auto 0.75rem;
  text-align: center;
  max-width: 560px;
}
.milestones-header .s-desc {
  margin: 0 auto;
  text-align: center;
}

.ms-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
.ms-track::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-200);
}
@media (max-width: 1100px) {
  .ms-track {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .ms-track::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .ms-track {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
  }
}

.ms-item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  max-width: 180px;
  cursor: default;
}
.ms-item:hover .ms-dot {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(227, 0, 15, 0.2);
}
.ms-item:hover .ms-dot span {
  color: #fff;
}

.ms-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.5s var(--ease);
}
.ms-dot span {
  font-family: var(--font-head);
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--gray-warm);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.ms-year {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.ms-text {
  font-size: 0.7rem;
  color: var(--gray-warm);
  font-weight: 300;
  line-height: 1.5;
}

.team {
  background: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.team-header {
  margin-bottom: clamp(3rem, 5vh, 4.5rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  position: relative;
  cursor: default;
  transition: all 0.5s var(--ease);
}
.team-card:hover {
  transform: translateY(-3px);
}
.team-card:hover .team-photo-bg {
  transform: scale(1.04);
}
.team-card:hover .team-photo-overlay {
  opacity: 1;
}
.team-card:hover .team-photo-bio {
  opacity: 1;
  transform: translateY(0);
}
.team-card:hover .team-linkedin {
  opacity: 1;
}
.team-card:nth-child(1) .team-photo-bg {
  background: linear-gradient(160deg, #2a3a4a, var(--anthracite));
}
.team-card:nth-child(2) .team-photo-bg {
  background: linear-gradient(160deg, #3a2a2a, #4a3535);
}
.team-card:nth-child(3) .team-photo-bg {
  background: linear-gradient(160deg, #2a3a3a, #354a4a);
}
.team-card:nth-child(4) .team-photo-bg {
  background: linear-gradient(160deg, #3a3a2a, #4a4a35);
}

.team-photo {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.1rem;
}

.team-photo-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.team-photo-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.06em;
  z-index: 1;
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}

.team-photo-bio {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.team-photo-bio p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.6;
}

.team-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.005em;
}

.team-role {
  font-size: 0.72rem;
  color: var(--gray-warm);
  font-weight: 400;
  margin-top: 0.15rem;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.team-linkedin svg {
  width: 10px;
  height: 10px;
}

.news {
  background: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gray-300);
}
.news-card:hover .news-card-read {
  opacity: 1;
  transform: translateY(0);
}
.news-card:nth-child(1) .news-card-img {
  background: linear-gradient(135deg, var(--anthracite), #4a5568);
}
.news-card:nth-child(2) .news-card-img {
  background: linear-gradient(135deg, #3a2020, #5a3030);
}
.news-card:nth-child(3) .news-card-img {
  background: linear-gradient(135deg, #1a3040, #2a4a5a);
}
.news-card h3 {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.news-card p {
  font-size: 0.78rem;
  color: var(--gray-warm);
  line-height: 1.65;
  font-weight: 300;
}

.news-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.news-card-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-date {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gray-warm);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.news-card-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-top: 0.85rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.news-card-read svg {
  width: 10px;
  height: 10px;
}

.faq {
  background: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 1100px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}
.faq-item.open .faq-q-icon {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-item.open .faq-q-icon svg {
  color: #fff;
}
.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1.5rem;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--red);
}
.faq-q h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.005em;
  flex: 1;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.faq-q-icon svg {
  width: 12px;
  height: 12px;
  color: var(--gray-warm);
  transition: color 0.3s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.faq-a p {
  font-size: 0.84rem;
  color: var(--gray-warm);
  line-height: 1.8;
  font-weight: 300;
  padding: 0 0 1.25rem;
}

.certs {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.certs-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 1100px) {
  .certs-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .certs-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.certs-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-warm);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .certs-label {
    margin-bottom: 0.5rem;
  }
}

.certs-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .certs-divider {
    display: none;
  }
}

.certs-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--anthracite);
  letter-spacing: 0.01em;
  transition: all 0.3s;
  cursor: default;
  white-space: nowrap;
}
.cert-badge:hover {
  color: var(--red);
}
.cert-badge:hover .cert-icon {
  border-color: var(--red);
  background: rgba(227, 0, 15, 0.03);
}
.cert-badge:hover .cert-icon svg {
  color: var(--red);
}

.cert-name {
  display: block;
}

.cert-sublabel {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gray-warm);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.cert-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.cert-icon svg {
  width: 14px;
  height: 14px;
  color: var(--slate);
}

.cta {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.cta-card {
  background: var(--anthracite);
  border-radius: 20px;
  padding: clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 90% 20%, rgba(227, 0, 15, 0.05), transparent 50%);
}
@media (max-width: 1100px) {
  .cta-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.cta-hex {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.02);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.cta-hex:nth-child(1) {
  width: 280px;
  height: 320px;
  top: -70px;
  right: -50px;
}
.cta-hex:nth-child(2) {
  width: 130px;
  height: 150px;
  bottom: -30px;
  right: 25%;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.cta-content h2 .accent {
  color: var(--red);
}
.cta-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.cta-features {
  position: relative;
  z-index: 1;
}

.cta-feat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cta-feat:last-child {
  border-bottom: none;
}
.cta-feat span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.cta-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: center;
}
.cta-badges .tech-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}
.cta-badges .tech-pill:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(227, 0, 15, 0.1);
}

.cta-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .cta-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.cta-stat {
  padding: 0.5rem 0;
}

.cta-stat-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.cta-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.cta-chk {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(227, 0, 15, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-chk svg {
  width: 11px;
  height: 11px;
  color: var(--red);
}

.newsletter {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.nl-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 1100px) {
  .nl-inner {
    grid-template-columns: 1fr;
  }
}

.nl-left h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.nl-left p {
  font-size: 0.82rem;
  color: var(--gray-warm);
  font-weight: 300;
}

.nl-form {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .nl-form {
    flex-direction: column;
  }
}

.nl-input {
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  color: var(--anthracite);
  width: 280px;
  outline: none;
  transition: all 0.3s;
}
.nl-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.06);
}
.nl-input::placeholder {
  color: var(--gray-300);
}
@media (max-width: 768px) {
  .nl-input {
    width: 100%;
  }
}

.nl-btn {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nl-btn:hover {
  background: var(--red-deep);
  box-shadow: 0 4px 16px rgba(227, 0, 15, 0.25);
  transform: translateY(-1px);
}

.nl-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.nl-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--gray-warm);
}
.nl-social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(227, 0, 15, 0.03);
}
.nl-social a svg {
  width: 14px;
  height: 14px;
}

.page-hero {
  padding: clamp(140px, 16vh, 180px) 0 clamp(3rem, 5vh, 5rem);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb span {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a {
  color: var(--gray-warm);
  transition: color 0.3s;
}
.page-hero .breadcrumb a:hover {
  color: var(--red);
}
.page-hero .breadcrumb .sep {
  color: var(--gray-300);
}
.page-hero .breadcrumb .current {
  color: var(--red);
  font-weight: 700;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}
.page-hero h1 .accent {
  color: var(--red);
}
.page-hero p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--gray-warm);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

.featured {
  padding: clamp(3.5rem, 6vh, 5rem) 0;
  background: var(--white);
}

.feat-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.feat-card:hover {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.feat-card:hover .feat-img-bg {
  transform: scale(1.04);
}
@media (max-width: 1100px) {
  .feat-card {
    grid-template-columns: 1fr;
  }
}

.feat-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .feat-img {
    min-height: 260px;
  }
}

.feat-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2332, var(--anthracite), #2a3a4a);
  transition: transform 0.6s var(--ease);
}

.feat-img-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.feat-img-hex {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feat-body {
  padding: clamp(2.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.feat-body p {
  font-size: 0.88rem;
  color: var(--gray-warm);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.feat-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feat-tag {
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 0, 15, 0.04);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}

.feat-date {
  font-family: var(--font-head);
  font-size: 0.65rem;
  color: var(--gray-warm);
  font-weight: 400;
}

.feat-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  transition: all 0.3s;
}
.feat-read:hover {
  gap: 0.8rem;
}
.feat-read svg {
  width: 14px;
  height: 14px;
}

.feat-reading {
  font-family: var(--font-head);
  font-size: 0.6rem;
  color: var(--gray-300);
  font-weight: 400;
  margin-top: 0.75rem;
}

.filters {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
}

.filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .filters-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.filter-tabs {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-warm);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.filter-tab:hover {
  color: var(--anthracite);
  background: var(--gray-100);
}
.filter-tab.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.filter-count {
  font-family: var(--font-head);
  font-size: 0.65rem;
  color: var(--gray-300);
  font-weight: 400;
}

.articles {
  padding: clamp(3rem, 5vh, 4.5rem) 0;
  background: var(--white);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
@media (max-width: 1100px) {
  .art-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}

.art-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--gray-300);
}
.art-card:hover .art-card-img-bg {
  transform: scale(1.05);
}
.art-card:hover .art-card-read {
  opacity: 1;
  transform: translateX(0);
}
.art-card h3 {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin-bottom: 0.55rem;
  flex: 1;
}
.art-card p {
  font-size: 0.78rem;
  color: var(--gray-warm);
  line-height: 1.65;
  font-weight: 300;
}

.art-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.art-card-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.art-card:nth-child(6n+1) .art-card-img-bg {
  background: linear-gradient(135deg, #1a2332, var(--anthracite));
}
.art-card:nth-child(6n+2) .art-card-img-bg {
  background: linear-gradient(135deg, #2d1a1a, #4a2525);
}
.art-card:nth-child(6n+3) .art-card-img-bg {
  background: linear-gradient(135deg, #1a2d2d, #254a4a);
}
.art-card:nth-child(6n+4) .art-card-img-bg {
  background: linear-gradient(135deg, #2d2a1a, #4a4525);
}
.art-card:nth-child(6n+5) .art-card-img-bg {
  background: linear-gradient(135deg, #1a1a2d, #25254a);
}
.art-card:nth-child(6n+6) .art-card-img-bg {
  background: linear-gradient(135deg, #2a1a2d, #45254a);
}

.art-card-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 1;
}

.art-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.art-card-date {
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--gray-warm);
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.art-card-footer {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.art-card-read {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.35s var(--ease);
}
.art-card-read svg {
  width: 10px;
  height: 10px;
}

.art-card-time {
  font-family: var(--font-head);
  font-size: 0.55rem;
  color: var(--gray-300);
  font-weight: 400;
}

.pagination {
  padding: 2rem 0 clamp(4rem, 8vh, 6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-warm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.page-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.page-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.page-btn.arrow {
  border: none;
  background: none;
}
.page-btn.arrow:hover {
  color: var(--red);
}
.page-btn.arrow svg {
  width: 14px;
  height: 14px;
}

.nl-bar {
  background: var(--anthracite);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.nl-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 30%, rgba(227, 0, 15, 0.04), transparent);
}
.nl-bar h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.nl-bar p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  margin-top: 0.3rem;
}

.nl-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1100px) {
  .nl-bar-inner {
    grid-template-columns: 1fr;
  }
}

.nl-bar-form {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .nl-bar-form {
    flex-direction: column;
  }
}

.nl-bar-input {
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  width: 280px;
  outline: none;
  transition: all 0.3s;
}
.nl-bar-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.1);
}
.nl-bar-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .nl-bar-input {
    width: 100%;
  }
}

.nl-bar-btn {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.nl-bar-btn:hover {
  background: var(--red-deep);
  box-shadow: 0 4px 16px rgba(227, 0, 15, 0.3);
  transform: translateY(-1px);
}

.a1-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.a1-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 45%;
  height: 140%;
  background: var(--gray-50);
  transform: translateY(-50%);
  border-left: 1px solid var(--gray-200);
}
.a1-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  width: 100%;
}
.a1-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.05em;
  line-height: 0.94;
  max-width: 550px;
  margin: 0.75rem 0 1.25rem;
}
.a1-hero h1 .accent {
  color: var(--red);
}
.a1-hero-desc {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--slate);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.a1-stats {
  padding: clamp(4rem, 6vh, 5rem) 0;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}
.a1-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}
.a1-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.a1-stat-val {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.a1-stat-val .accent {
  color: var(--red);
  font-weight: 300;
}

.a1-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 0.3rem;
}

.a1-story {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.a1-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.a1-story-year {
  font-family: var(--font-head);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  letter-spacing: -0.04em;
  position: sticky;
  top: 100px;
}
.a1-story-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.a1-story-content p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.a1-values {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--gray-50);
}
.a1-values-head {
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.a1-values-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.04em;
  margin: 0.5rem 0;
}
.a1-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.a1-value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: all 0.5s var(--ease);
}
.a1-value-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(50, 60, 70, 0.06);
}
.a1-value-card h3 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.35rem;
}
.a1-value-card p {
  font-size: 0.8rem;
  color: var(--gray-warm);
  line-height: 1.75;
}

.a1-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(227, 0, 15, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.a1-value-icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  opacity: 0.5;
}

.a1-team {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.a1-team-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.a1-team-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.04em;
  margin: 0.5rem 0;
}
.a1-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.a1-team-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.a1-team-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(50, 60, 70, 0.05);
}
.a1-team-avatar {
  height: 200px;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a1-team-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(227, 0, 15, 0.04), transparent 60%);
}
.a1-team-avatar-initial {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
}
.a1-team-info {
  padding: 1rem 1.25rem;
}
.a1-team-info h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
}
.a1-team-info p {
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-warm);
  margin-top: 0.15rem;
}

@media (max-width: 1100px) {
  .a1-story-grid {
    grid-template-columns: 1fr;
  }
  .a1-story-year {
    position: static;
  }
  .a1-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .a1-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .a1-values-grid {
    grid-template-columns: 1fr;
  }
  .a1-team-grid {
    grid-template-columns: 1fr;
  }
  .a1-stats-grid {
    grid-template-columns: 1fr;
  }
}
.a2-hero {
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, #151a1f 0%, var(--anthracite) 50%, #2a333d 100%);
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(4rem, 6vh, 6rem);
}
.a2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
}
.a2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(227, 0, 15, 0.04), transparent 60%);
}
.a2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  width: 100%;
}
.a2-hero-sub {
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.28);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.a2-hero-stats {
  display: flex;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 3vh, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.a2-hero-stat-val {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.a2-hero-stat-val .accent {
  color: var(--red);
  font-weight: 300;
}
.a2-hero-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  margin-top: 0.2rem;
}

.a2-manifesto {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 0.96;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.a2-manifesto .thin {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.2);
}
.a2-manifesto .accent {
  color: var(--red);
}

.a2-mission {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--white);
}
.a2-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.a2-mission-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0.5rem 0 1rem;
}
.a2-mission-left h2 .accent {
  color: var(--red);
}
.a2-mission-left p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}
.a2-mission-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.a2-pill {
  display: grid;
  grid-template-columns: 3px 1fr;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0 14px 14px 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.a2-pill:hover {
  border-color: var(--red);
}
.a2-pill-bar {
  background: var(--red);
  opacity: 0.2;
  transition: opacity 0.3s;
}
.a2-pill:hover .a2-pill-bar {
  opacity: 1;
}
.a2-pill-body {
  padding: 1.25rem 1.5rem;
}
.a2-pill-body h3 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.2rem;
}
.a2-pill-body p {
  font-size: 0.76rem;
  color: var(--gray-warm);
  line-height: 1.7;
}

.a2-timeline {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.a2-timeline-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.a2-timeline-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.04em;
  margin: 0.5rem 0;
}

.a2-tl-items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.a2-tl-items::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--gray-200);
}

.a2-tl-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.a2-tl-item:first-child .a2-tl-dot {
  background: var(--red);
}
.a2-tl-item h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.25rem;
}
.a2-tl-item p {
  font-size: 0.8rem;
  color: var(--gray-warm);
  line-height: 1.75;
}

.a2-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
  justify-self: center;
}

.a2-tl-year {
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.15rem;
}

.a2-cta {
  padding: clamp(5rem, 8vh, 7rem) 0;
  background: var(--anthracite);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.a2-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(227, 0, 15, 0.04), transparent 60%);
}
.a2-cta-inner {
  position: relative;
  z-index: 1;
}
.a2-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.a2-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.28);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .a2-mission-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .a2-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.a3-hero {
  padding: clamp(120px, 15vh, 180px) 0 clamp(4rem, 7vh, 6rem);
  background: var(--white);
}
.a3-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.a3-hero-top h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.06em;
  line-height: 0.9;
  flex: 1;
}
.a3-hero-top h1 .accent {
  color: var(--red);
}
.a3-hero-top p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.85;
  max-width: 340px;
  flex-shrink: 0;
  text-align: right;
}

.a3-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.a3-b-statement {
  grid-column: span 8;
  background: var(--anthracite);
  border-radius: 18px;
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.a3-b-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(227, 0, 15, 0.05), transparent);
  pointer-events: none;
}
.a3-b-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.a3-b-statement h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.12;
  position: relative;
  z-index: 1;
  max-width: 400px;
}
.a3-b-statement h2 .thin {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.2);
}
.a3-b-statement p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  max-width: 350px;
  line-height: 1.7;
}

.a3-b-stat {
  grid-column: span 4;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.a3-b-stat:hover {
  border-color: var(--red);
}
.a3-b-stat-val {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.03em;
  line-height: 1;
}
.a3-b-stat-val .accent {
  color: var(--red);
  font-weight: 300;
}
.a3-b-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-warm);
  margin-top: 0.25rem;
}

.a3-b-value {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  transition: all 0.4s var(--ease);
}
.a3-b-value:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(50, 60, 70, 0.05);
}
.a3-b-value-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(227, 0, 15, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.a3-b-value-icon svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  opacity: 0.5;
}
.a3-b-value h3 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
}
.a3-b-value p {
  font-size: 0.72rem;
  color: var(--gray-warm);
  line-height: 1.6;
  margin-top: 0.15rem;
}

.a3-b-quote {
  grid-column: span 6;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.a3-b-quote:hover {
  border-color: var(--red);
}
.a3-b-quote-mark {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.15;
  line-height: 0.7;
  margin-bottom: 0.4rem;
}
.a3-b-quote p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--anthracite);
  line-height: 1.7;
  font-style: italic;
}
.a3-b-quote cite {
  display: block;
  font-family: var(--font-head);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.5rem;
  font-style: normal;
}

.a3-b-cta {
  grid-column: span 6;
  background: var(--red);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.a3-b-cta:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(227, 0, 15, 0.2);
}
.a3-b-cta h3 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.a3-b-cta p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.a3-b-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s;
}
.a3-b-cta-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.a3-certs {
  padding: clamp(4rem, 6vh, 5rem) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.a3-certs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.a3-cert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-warm);
}
.a3-cert-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.a3-cert-icon svg {
  width: 12px;
  height: 12px;
  color: var(--red);
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .a3-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .a3-hero-top p {
    text-align: left;
  }
  .a3-bento {
    grid-template-columns: 1fr 1fr;
  }
  .a3-b-statement,
  .a3-b-quote,
  .a3-b-cta {
    grid-column: span 2;
  }
  .a3-b-stat,
  .a3-b-value {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .a3-bento {
    grid-template-columns: 1fr;
  }
  .a3-b-statement,
  .a3-b-quote,
  .a3-b-cta,
  .a3-b-stat,
  .a3-b-value {
    grid-column: span 1;
  }
}
.ft1 {
  padding: clamp(120px, 15vh, 180px) 0 clamp(4rem, 7vh, 6rem);
  background: var(--white);
}

.ft1-inner {
  max-width: 680px;
  margin: 0 auto;
}

.ft1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.ft1-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}

.ft1 h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.ft1-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}
.ft1-meta span {
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-warm);
}
.ft1-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-300);
}

.ft1-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 500;
  color: var(--anthracite);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.ft1 .prose {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 2;
  margin-bottom: 1.75rem;
}
.ft1 .prose-head {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.75rem;
}
.ft1 blockquote {
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--anthracite);
  line-height: 1.8;
  font-style: italic;
}

.ft2 {
  padding: clamp(120px, 15vh, 180px) 0 clamp(4rem, 7vh, 6rem);
  background: var(--gray-50);
}

.ft2-hero {
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.ft2-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.05em;
  line-height: 0.94;
  max-width: 600px;
  margin: 0.75rem 0 0;
}
.ft2-hero h1 .accent {
  color: var(--red);
}

.ft2-rule {
  height: 3px;
  background: var(--red);
  width: 60px;
  margin: clamp(2rem, 3vh, 3rem) 0;
}

.ft2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: start;
}
.ft2-grid .prose {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 2;
  margin-bottom: 1.5rem;
}
.ft2-grid .prose:first-of-type::first-letter {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  float: left;
  line-height: 0.8;
  padding-right: 0.5rem;
  padding-top: 0.2rem;
}
.ft2-grid .prose-head {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .ft2-grid {
    grid-template-columns: 1fr;
  }
}

.ft2-pullquote {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin: 1.5rem 0;
}
.ft2-pullquote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--anthracite);
  line-height: 1.75;
  font-style: italic;
}
.ft2-pullquote cite {
  display: block;
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.6rem;
  font-style: normal;
}

.ft3 {
  padding: clamp(120px, 15vh, 180px) 0 clamp(4rem, 7vh, 6rem);
  background: var(--white);
}

.ft3-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 1100px) {
  .ft3-layout {
    grid-template-columns: 1fr;
  }
}

.ft3-main h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0.75rem 0 0.5rem;
}
.ft3-main .ft-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-warm);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}
.ft3-main .prose {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 2;
  margin-bottom: 1.5rem;
}
.ft3-main .prose-head {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.01em;
  margin: 2rem 0 0.5rem;
}

.ft3-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 1100px) {
  .ft3-sidebar {
    position: static;
  }
}

.ft3-side-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.ft3-side-title {
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-warm);
  margin-bottom: 0.75rem;
}

.ft3-side-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--anthracite);
  transition: color 0.3s;
}
.ft3-side-item:last-child {
  border-bottom: none;
}
.ft3-side-item:hover {
  color: var(--red);
}
.ft3-side-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.3;
  flex-shrink: 0;
}

.ft3-cta-card {
  background: var(--anthracite);
  border-radius: 14px;
  padding: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ft3-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(227, 0, 15, 0.08), transparent 60%);
}
.ft3-cta-card h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
}
.ft3-cta-card p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ft3-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.ft3-cta-btn:hover {
  background: var(--red-deep);
}

.ft4 {
  padding: clamp(120px, 15vh, 180px) 0 clamp(4rem, 7vh, 6rem);
  background: var(--anthracite);
  position: relative;
}
.ft4::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.ft4 h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.ft4 h1 .thin {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.25);
}
.ft4 .prose {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 2.05;
  margin-bottom: 1.5rem;
}
.ft4 .prose-head {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.5rem;
}

.ft4-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ft4-inner .eyebrow {
  color: var(--red);
  margin-bottom: 1rem;
}
.ft4-inner .eyebrow::before {
  background: var(--red);
}

.ft4-rule {
  height: 2px;
  background: var(--red);
  width: 50px;
  margin: 1.5rem 0 2rem;
}

.ft4-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
@media (max-width: 768px) {
  .ft4-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.ft4-stat-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.ft4-stat-val .accent {
  color: var(--red);
  font-weight: 300;
}

.ft4-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 0.2rem;
}

.ft4-highlight {
  background: rgba(227, 0, 15, 0.04);
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}
.ft4-highlight p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  font-style: italic;
}

.ft5 {
  padding: 0;
  background: var(--white);
}

.ft5-cover {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, #1a2028 0%, var(--anthracite) 100%);
  position: relative;
  padding: clamp(120px, 15vh, 160px) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 5vh, 4rem);
}
.ft5-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(227, 0, 15, 0.04), transparent 60%);
}
.ft5-cover h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 0.96;
  max-width: 600px;
  margin: 0.75rem 0 1rem;
}
.ft5-cover h1 .thin {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.25);
}

.ft5-cover-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.ft5-cover-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.ft5-cover-meta span {
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.ft5-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 5vh, 4rem) clamp(1.5rem, 5vw, 5rem);
}
.ft5-body .lead {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--anthracite);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.ft5-body .prose {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 2.05;
  margin-bottom: 1.5rem;
}
.ft5-body .prose-head {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.75rem;
}

.ft5-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.ft5-divider::before, .ft5-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.ft5-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ft5-inline-card {
  display: grid;
  grid-template-columns: 4px 1fr;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  margin: 2rem 0;
}

.ft5-inline-card-bar {
  background: var(--red);
}

.ft5-inline-card-body {
  padding: 1.25rem 1.5rem;
}
.ft5-inline-card-body h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.3rem;
}
.ft5-inline-card-body p {
  font-size: 0.8rem;
  color: var(--gray-warm);
  line-height: 1.7;
}

.v1-hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.v1-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
}

.v1-hero-angle {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: var(--anthracite);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.v1-hero-angle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
}
.v1-hero-angle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 60% 40%, rgba(227, 0, 15, 0.04), transparent);
}

.v1-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.v1-content {
  max-width: 480px;
  padding-top: clamp(80px, 12vh, 120px);
}
.v1-content h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--anthracite);
  margin: 0.75rem 0 1.2rem;
}
.v1-content .section-desc {
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  color: var(--slate);
  max-width: 400px;
  margin-bottom: 2rem;
}

.v1-kpis {
  position: absolute;
  right: clamp(2rem, 6vw, 5rem);
  bottom: clamp(2rem, 4vh, 3rem);
  display: flex;
  gap: 2.5rem;
  z-index: 2;
}

.v1-kpi {
  text-align: center;
}

.v1-kpi-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.v1-kpi-val .accent {
  color: var(--red);
  font-weight: 300;
}

.v1-kpi-lbl {
  font-family: var(--font-head);
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 0.2rem;
}

@media (max-width: 1100px) {
  .v1-hero-angle {
    width: 48%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media (max-width: 768px) {
  .v1-hero-angle {
    display: none;
  }
  .v1-kpis {
    position: static;
    margin-top: 2rem;
  }
  .v1-kpis .v1-kpi-val {
    color: var(--anthracite);
  }
  .v1-kpis .v1-kpi-lbl {
    color: var(--gray-warm);
  }
}
.v2-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 14vh, 160px) 2rem clamp(3rem, 5vh, 5rem);
  background: var(--gray-50);
  position: relative;
}
.v2-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 0, 15, 0.03), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.v2-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--anthracite);
  letter-spacing: -0.05em;
  line-height: 0.98;
  max-width: 700px;
  margin: 0.75rem 0 1.5rem;
}
.v2-hero h1 .accent {
  color: var(--red);
}
.v2-hero .section-desc {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--gray-warm);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.v2-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.v2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  width: 100%;
}

.v2-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  text-align: left;
  transition: all 0.5s var(--ease);
}
.v2-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(50, 60, 70, 0.06);
}

.v2-card-num {
  font-family: var(--font-head);
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.v2-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.v2-card p {
  font-size: 0.78rem;
  color: var(--gray-warm);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .v2-cards {
    grid-template-columns: 1fr;
  }
}
.v3-hero {
  padding: clamp(100px, 12vh, 140px) 0 clamp(3rem, 5vh, 4rem);
  background: var(--white);
}

.v3-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1rem;
}

.v3-main {
  grid-column: 1/8;
  grid-row: 1/3;
  background: var(--anthracite);
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.v3-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(227, 0, 15, 0.06), transparent);
  pointer-events: none;
}
.v3-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.v3-main h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin: 0.5rem 0 1rem;
  position: relative;
  z-index: 1;
}
.v3-main .section-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 400px;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.v3-main .eyebrow-light {
  position: relative;
  z-index: 1;
}

.v3-stat {
  grid-column: span 5;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.v3-stat:hover {
  border-color: var(--red);
}

.v3-stat-val {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.03em;
  line-height: 1;
}
.v3-stat-val .accent {
  color: var(--red);
  font-weight: 300;
}

.v3-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-warm);
  margin-top: 0.25rem;
}

.v3-svc {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  transition: all 0.4s var(--ease);
}
.v3-svc:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(50, 60, 70, 0.05);
}

.v3-svc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(227, 0, 15, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.v3-svc-icon svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  opacity: 0.5;
}

.v3-svc h3 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
  letter-spacing: -0.01em;
}

.v3-svc p {
  font-size: 0.72rem;
  color: var(--gray-warm);
  line-height: 1.6;
  margin-top: 0.2rem;
}

@media (max-width: 1100px) {
  .v3-bento {
    grid-template-columns: 1fr 1fr;
  }
  .v3-main {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 320px;
  }
  .v3-stat {
    grid-column: span 1;
  }
  .v3-svc {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .v3-bento {
    grid-template-columns: 1fr;
  }
  .v3-stat,
  .v3-svc {
    grid-column: span 1;
  }
}
.v4-hero {
  padding: clamp(120px, 15vh, 180px) 0 clamp(4rem, 7vh, 6rem);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.v4-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 4vh, 4rem);
}
.v4-top h1 {
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  color: var(--anthracite);
  letter-spacing: -0.06em;
  line-height: 0.9;
  flex: 1;
}
.v4-top h1 .accent {
  color: var(--red);
}

.v4-top-meta {
  flex-shrink: 0;
  text-align: right;
  max-width: 260px;
}
.v4-top-meta p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.v4-rule {
  height: 3px;
  background: var(--red);
  margin-bottom: clamp(2rem, 3.5vh, 3rem);
}

.v4-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
}

.v4-col h3 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.v4-col p {
  font-size: 0.82rem;
  color: var(--gray-warm);
  line-height: 1.8;
}

.v4-col-accent {
  border-left: 2px solid var(--red);
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1100px) {
  .v4-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .v4-top-meta {
    text-align: left;
  }
  .v4-cols {
    grid-template-columns: 1fr;
  }
}
.v5-hero {
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, #1a2028 0%, var(--anthracite) 50%, #2a333d 100%);
  position: relative;
  overflow: hidden;
}
.v5-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
}
.v5-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(227, 0, 15, 0.04), transparent 60%);
}

.v5-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(4rem, 6vh, 6rem);
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}
.v5-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 0.96;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.v5-content h1 .thin {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.3);
}
.v5-content p {
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.3);
  max-width: 450px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.v5-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(227, 0, 15, 0.08);
  border: 1px solid rgba(227, 0, 15, 0.12);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.v5-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: v5Pulse 2s ease-in-out infinite;
}

@keyframes v5Pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.v5-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: clamp(2rem, 3vh, 3rem);
  margin-top: 1rem;
}

.v5-kpis {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.v5-kpi-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.v5-kpi-val .accent {
  color: var(--red);
  font-weight: 300;
}

.v5-kpi-lbl {
  font-family: var(--font-head);
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 0.2rem;
}

.v6-hero {
  padding: clamp(100px, 12vh, 140px) 0 0;
  background: var(--white);
}

.v6-top {
  margin-bottom: clamp(2rem, 4vh, 3rem);
}
.v6-top h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--anthracite);
  margin: 0.5rem 0 1rem;
}
.v6-top .section-desc {
  font-size: 0.9rem;
  color: var(--slate);
  max-width: 450px;
}

.v6-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(2.5rem, 4vh, 3.5rem);
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.v6-scroll::-webkit-scrollbar {
  display: none;
}

.v6-card {
  flex: 0 0 clamp(280px, 30vw, 340px);
  scroll-snap-align: start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.v6-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(50, 60, 70, 0.06);
}
.v6-card:nth-child(1) .v6-card-visual {
  background: linear-gradient(135deg, #1e2830, #2c3640);
}
.v6-card:nth-child(2) .v6-card-visual {
  background: linear-gradient(135deg, #2a1520, #3c2030);
}
.v6-card:nth-child(3) .v6-card-visual {
  background: linear-gradient(135deg, #1a2535, #283545);
}
.v6-card:nth-child(4) .v6-card-visual {
  background: linear-gradient(135deg, #251e1a, #382e28);
}
.v6-card:nth-child(5) .v6-card-visual {
  background: linear-gradient(135deg, #1e2a1e, #2c3c2c);
}

.v6-card-visual {
  height: 180px;
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}
.v6-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 36px 36px;
}

.v6-card-visual-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.02em;
}

.v6-card-body {
  padding: clamp(1.25rem, 2vw, 1.5rem);
}
.v6-card-body h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.3rem;
}
.v6-card-body p {
  font-size: 0.76rem;
  color: var(--gray-warm);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .v6-card {
    flex: 0 0 85vw;
  }
}
.v7-hero {
  padding: clamp(100px, 12vh, 140px) 0 clamp(3rem, 5vh, 4rem);
  background: var(--gray-50);
}

.v7-head {
  margin-bottom: clamp(3rem, 5vh, 4rem);
}
.v7-head h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  color: var(--anthracite);
  margin: 0.5rem 0 1rem;
}
.v7-head .section-desc {
  font-size: 0.9rem;
  color: var(--slate);
  max-width: 460px;
}

.v7-panels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.v7-panel {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: default;
}
.v7-panel:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(50, 60, 70, 0.05);
}

.v7-panel-left {
  background: var(--anthracite);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.v7-panel-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(227, 0, 15, 0.04), transparent 60%);
}
.v7-panel-left h3 {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.v7-panel-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.v7-panel-right {
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v7-panel-right p {
  font-size: 0.84rem;
  color: var(--gray-warm);
  line-height: 1.8;
  max-width: 500px;
}

.v7-panel-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.v7-tag {
  font-family: var(--font-head);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 0, 15, 0.03);
  border: 1px solid rgba(227, 0, 15, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .v7-panel {
    grid-template-columns: 1fr;
  }
}
.v8-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vh, 140px) 0 clamp(3rem, 5vh, 5rem);
}
.v8-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--gray-50);
  border-left: 1px solid var(--gray-200);
}

.v8-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.v8-left h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  color: var(--anthracite);
  margin: 0.5rem 0 1rem;
}
.v8-left .section-desc {
  font-size: 0.88rem;
  color: var(--slate);
  max-width: 380px;
  margin-bottom: 2rem;
}

.v8-dashboard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(50, 60, 70, 0.06);
  overflow: hidden;
}

.v8-dash-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.v8-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}
.v8-dot:first-child {
  background: #ff5f57;
}
.v8-dot:nth-child(2) {
  background: #febc2e;
}
.v8-dot:nth-child(3) {
  background: #28c840;
}

.v8-dash-title {
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--gray-warm);
  margin-left: 0.5rem;
}

.v8-dash-body {
  padding: clamp(1rem, 2vw, 1.5rem);
}
.v8-dash-body:hover .v8-bar:nth-child(odd) {
  background: rgba(227, 0, 15, 0.25);
}

.v8-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.v8-dash-card {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--gray-200);
}

.v8-dash-card-label {
  font-family: var(--font-head);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-warm);
  margin-bottom: 0.4rem;
}

.v8-dash-card-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.02em;
}
.v8-dash-card-val .accent {
  color: var(--red);
  font-weight: 300;
}

.v8-dash-chart {
  grid-column: 1/-1;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.v8-bar {
  flex: 1;
  background: var(--gray-200);
  border-radius: 3px 3px 0 0;
  transition: all 0.4s var(--ease);
}
.v8-bar:nth-child(odd) {
  background: rgba(227, 0, 15, 0.12);
}

@media (max-width: 1100px) {
  .v8-inner {
    grid-template-columns: 1fr;
  }
  .v8-hero::before {
    display: none;
  }
}
.v9-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 86vh;
}

.v9-left {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vh, 5rem) clamp(2rem, 3.5vw, 3.5rem) clamp(3rem, 5vh, 5rem) clamp(1.5rem, 5vw, 5rem);
}
.v9-left h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--anthracite);
  margin: 0.5rem 0 1rem;
}
.v9-left .section-desc {
  font-size: 0.88rem;
  color: var(--slate);
  max-width: 400px;
  margin-bottom: 2rem;
}

.v9-right {
  background: var(--anthracite);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.v9-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(227, 0, 15, 0.04), transparent);
}

.v9-quote {
  position: relative;
  z-index: 1;
}

.v9-quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.v9-quote p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

.v9-quote-author {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.v9-quote-role {
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 0.15rem;
}

.v9-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.v9-trust-item {
  font-family: var(--font-head);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .v9-hero {
    grid-template-columns: 1fr;
  }
}
.v10-hero {
  padding: clamp(120px, 15vh, 180px) 0 0;
  background: var(--white);
  overflow: hidden;
}

.v10-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(2rem, 3.5vh, 3rem);
}
.v10-top .section-desc {
  font-size: 0.88rem;
  color: var(--slate);
  max-width: 350px;
  text-align: right;
  flex-shrink: 0;
}

.v10-mega {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.06em;
  line-height: 0.88;
  white-space: nowrap;
}
.v10-mega .accent {
  color: var(--red);
}

.v10-rule {
  height: 3px;
  background: var(--red);
  width: 80px;
  margin: clamp(1.5rem, 2.5vh, 2rem) 0;
}

.v10-ticker {
  background: var(--anthracite);
  padding: clamp(1.5rem, 2.5vw, 2rem) 0;
  overflow: hidden;
  position: relative;
}
.v10-ticker::before, .v10-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.v10-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--anthracite), transparent);
}
.v10-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--anthracite), transparent);
}

.v10-ticker-inner {
  display: flex;
  animation: v10Scroll 25s linear infinite;
  width: max-content;
}
.v10-ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes v10Scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.v10-ticker-item {
  flex-shrink: 0;
  padding: 0 clamp(2rem, 3.5vw, 3rem);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v10-ticker-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.3;
}

.v10-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
}

.v10-svc {
  padding: clamp(2rem, 3vw, 2.5rem);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
}
.v10-svc:nth-child(3n) {
  border-right: none;
}
.v10-svc:hover {
  background: var(--gray-50);
}

.v10-svc-num {
  font-family: var(--font-head);
  font-size: 0.48rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.v10-svc h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.35rem;
}

.v10-svc p {
  font-size: 0.76rem;
  color: var(--gray-warm);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .v10-services {
    grid-template-columns: 1fr 1fr;
  }
  .v10-svc:nth-child(3n) {
    border-right: 1px solid var(--gray-200);
  }
  .v10-svc:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .v10-mega {
    font-size: clamp(2.5rem, 12vw, 4rem);
    white-space: normal;
  }
  .v10-services {
    grid-template-columns: 1fr;
  }
  .v10-svc {
    border-right: none;
  }
}
.hero-home {
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
  background: linear-gradient(180deg, var(--n-0) 0%, var(--n-50) 100%);
}
.hero-home .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-home .hero-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: var(--n-100);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--n-600);
  margin-bottom: var(--space-6);
}
.hero-home .hero-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero-home .hero-title {
    font-size: var(--text-3xl);
  }
}
.hero-home .hero-subtitle {
  font-size: var(--text-lg);
  color: var(--n-500);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}
.hero-home .hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.section-cta {
  padding: var(--space-20) 0;
}
.section-cta .cta-card {
  text-align: center;
  background: var(--n-900);
  color: var(--n-0);
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-8);
}
.section-cta .cta-card h2 {
  color: var(--n-0);
  margin-bottom: var(--space-4);
}
.section-cta .cta-card .subtitle {
  color: var(--n-300);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
.section-cta .cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta .cta-buttons .btn-outline {
  border-color: var(--n-500);
  color: var(--n-0);
}
.section-cta .cta-buttons .btn-outline:hover {
  border-color: var(--n-0);
  background: rgba(255, 255, 255, 0.1);
}

.section-contact-form {
  padding: var(--space-20) 0;
}
.section-contact-form h2 {
  margin-bottom: var(--space-3);
}
.section-contact-form .subtitle {
  color: var(--n-500);
  margin-bottom: var(--space-8);
}
.section-contact-form .contact-grid {
  max-width: 720px;
  margin: 0 auto;
}

.dynamic-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--n-700);
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--n-200);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast) var(--ease-out);
  background: var(--n-0);
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.1);
}

.form-group-checkbox .checkbox-label {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-weight: 400;
  cursor: pointer;
}
.form-group-checkbox .checkbox-label input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
}
.form-group-checkbox .checkbox-label span {
  font-size: var(--text-sm);
  color: var(--n-600);
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: var(--space-12) var(--space-6);
}
.form-success h3 {
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.form-error {
  padding: var(--space-4);
  background: rgba(227, 0, 15, 0.05);
  border: 1px solid rgba(227, 0, 15, 0.2);
  border-radius: var(--radius-sm);
  color: var(--brand-primary);
  margin-top: var(--space-4);
}
