* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --bg-main: #06070b;
  --bg-nav: rgba(8, 10, 16, 0.72);
  --surface: rgba(18, 22, 31, 0.66);
  --surface-2: rgba(21, 27, 38, 0.8);
  --text-main: #ffffff;
  --text-soft: #c9d1de;
  --text-menu: #e3e9f3;
  --red-primary: #d91f26;
  --red-glow: #ff4d57;
  --red-soft: rgba(217, 31, 38, 0.1);
  --purple: #11131a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 77, 87, 0.18);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.56);
  --radius: 24px;
}

*::selection {
  background: rgba(255, 0, 0, 0.15);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 82, 92, 0.12), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(185, 22, 30, 0.11), transparent 22%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.025), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(120, 18, 28, 0.12), transparent 36%),
    linear-gradient(155deg, #0b0c11 0%, #06070b 28%, #0a0c12 55%, #030407 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
  opacity: 0.18;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 88, 98, 0.11), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(205, 28, 38, 0.1), transparent 16%),
    linear-gradient(125deg, transparent 4%, rgba(255, 77, 87, 0.035) 34%, transparent 58%),
    linear-gradient(300deg, transparent 8%, rgba(255, 255, 255, 0.016) 42%, transparent 70%);
  filter: blur(16px);
  opacity: 0.9;
  z-index: -1;
}

ul,
li {
  list-style: none;
}

.section-divider {
  display: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(6, 7, 11, 0.94),
    rgba(8, 10, 16, 0.78),
    rgba(8, 10, 16, 0.38),
    transparent
  );
  
  border-bottom: none;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;

  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.logo-text {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--text-menu);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.25s ease;
  position: relative;
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff0000, #ff3b3b);
  transition: 0.3s ease;
}

.nav-menu > li > a:hover {
  color: #fff;
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

.services-arrow {
  font-size: 11px;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 290px;

  background: rgba(9, 11, 17, 0.96); 

  border: 1px solid rgba(255,255,255,0.07); 

  border-radius: 18px;
  padding: 12px 0;

  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;

  box-shadow:
    0 24px 60px rgba(0,0,0,0.62),
    0 0 24px rgba(255,77,87,0.06);

  z-index: 999;
  backdrop-filter: blur(18px);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0 10px;
}

.dropdown-menu li a {
  display: block;
  color: #dce5f3;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn,
.consultation-badge {
  border-radius: 999px;
}

.cta-btn {
  background: linear-gradient(135deg, #c91722, #ff4d57);
  box-shadow: 0 14px 34px rgba(180, 20, 30, 0.34);
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 24px rgba(255, 77, 87, 0.36),
    0 16px 40px rgba(180, 20, 30, 0.42);
}

.navbar .cta-btn {
  background: linear-gradient(135deg, #ff3b3b, #ff0000);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.navbar .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.45);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: calc(100vh - 85px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px 54px;
  overflow: hidden;
  background: transparent;
}

.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

.hero-content {
  max-width: 980px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-content::before,
.hero-content::after {
  display: none !important;
  content: none !important;
}

.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #dbe4f4;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: none;
  backdrop-filter: none;
}

.trusted-dot {
  width: 10px;
  height: 10px;
  background: #9be7c4;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(155, 231, 196, 0.45);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-title {
  font-size: 74px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: none;
}

.typing-line {
  display: block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.typing-line-1 {
  color: #ffffff;
  width: 0;
  margin: 0 auto;
  animation:
    typingLine1 2.2s steps(17, end) 0.3s forwards,
    caretBlink 0.8s step-end 0.3s infinite;
}

.typing-line-2 {
  width: 0;
  margin: 8px auto 0;
  opacity: 0;
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #ffffff;
  text-shadow: none;
  animation:
    showLine 0.01s linear 2.65s forwards,
    typingLine2 2.4s steps(17, end) 2.65s forwards,
    caretBlink 0.8s step-end 2.65s infinite;
}

.hero-text {
  max-width: 920px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: none;
  animation: fadeUp 1s ease 5.2s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 58px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 5.45s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 196px;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3b3b, #ff0000);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ff4d4d;
  border: 1px solid rgba(255, 0, 0, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-3px);
}

.btn-arrow,
.play-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary:hover .play-icon {
  transform: scale(1.08);
}

.stats-row {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.stat-item {
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item h3 {
  font-size: 30px;
  font-weight: 800;
  color: #ff3b3b;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 10px rgba(255, 0, 0, 0.6),
    0 0 20px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.stat-item p {
  font-size: 13px;
  color: #8fa0b8;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-item:hover h3 {
  text-shadow:
    0 0 20px rgba(255, 0, 0, 0.9),
    0 0 40px rgba(255, 0, 0, 0.6);
}

.stat-item:hover p {
  color: #ffffff;
}

.stat-item::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: rgba(255, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s ease;
}

.stat-item:hover::after {
  opacity: 1;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: none;
  background: transparent !important;
  backdrop-filter: none;
  padding: 18px 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.partners-container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.partners-label {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 42px;
  letter-spacing: -0.5px;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: none;
  border-radius: 999px;
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 18px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: scrollPartners 28s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  filter: brightness(1) contrast(1.05);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.partner-logo:hover img {
  transform: scale(1.08);
  opacity: 1;
}

/* ABOUT */
.about-section {
  position: relative;
  padding: 110px 20px 100px;
  background: none !important;
  border-top: none;
}

.about-container {
  max-width: 1320px;
  margin: 0 auto;
}

.about-header {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  color: #e6e6e6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(12px);
}

.about-header h2,
.contact-box h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin-bottom: 18px;
}

.about-header p,
.contact-box p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-features-wrap,
.about-board-wrap {
  position: relative;
}

.about-mini-tag,
.board-badge,
.consultation-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  color: #e6e6e6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.about-mini-tag,
.board-badge {
  margin-bottom: 16px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.88), rgba(7, 9, 14, 0.8)); 
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 22px 20px;
  min-height: 185px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.03);

  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 0, 0, 0.25);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.8),
    0 0 25px rgba(255,0,0,0.15);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  background: rgba(10, 12, 18, 0.9); 
  border: 1px solid rgba(255,255,255,0.06);
}

.feature-card h3 {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  color: #9fb0ca;
  font-size: 14px;
  line-height: 1.7;
}

.consultation-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.consultation-badge {
  min-width: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.consultation-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.about-board {
  position: relative;
  min-height: 560px;
  max-width: 500px;
  margin-left: auto;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;

  background: linear-gradient(180deg, rgba(8, 10, 16, 0.96), rgba(4, 6, 11, 0.92)); 

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.05);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.about-board::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.03),
      rgba(10, 12, 18, 0.6),
      rgba(5, 7, 12, 0.95)
    );

  pointer-events: none;
}

.board-overlay-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 0, 0.05),
      transparent 40%,
      transparent 60%,
      rgba(255, 0, 0, 0.04)
    );
  pointer-events: none;
  z-index: 1;
}

.board-grid {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.board-grid span {
  background: rgba(8, 10, 15, 0.6);
}

.board-grid span:nth-child(odd) {
  background: rgba(12, 14, 20, 0.6);
}

.board-grid span:nth-child(2),
.board-grid span:nth-child(4),
.board-grid span:nth-child(5),
.board-grid span:nth-child(7),
.board-grid span:nth-child(10),
.board-grid span:nth-child(12),
.board-grid span:nth-child(13),
.board-grid span:nth-child(15) {
  background: rgba(5, 7, 12, 0.5);
}

.board-grid span::after {
  content: "";
  position: absolute;
  inset: 0;
  border: none;
}

.chess-item {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  width: 150px;
}

.chess-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), rgba(20,25,35,0.6), rgba(10,15,25,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.5),
    0 0 12px rgba(255,0,0,0.08);
  transition: transform 0.3s ease;
}

.chess-item h3 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #f4f8ff;
  max-width: 180px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.chess-item:hover .chess-icon {
  transform: translateY(-6px) scale(1.05);
}

.chess-item-1 {
  top: 62px;
  left: 46px;
  animation: chessMove1 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chess-item-2 {
  top: 64px;
  right: 34px;
  animation: chessMove2 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chess-item-3 {
  bottom: 72px;
  left: 46px;
  animation: chessMove3 2.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chess-item-4 {
  bottom: 70px;
  right: 34px;
  animation: chessMove4 2.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* CONTACT */
.contact-section {
  padding: 0 20px 110px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box {
  padding: 38px 34px;
  border-radius: 28px;

  border: 1px solid rgba(255,255,255,0.05); 

  background: linear-gradient(180deg, rgba(8, 10, 16, 0.98), rgba(4, 6, 11, 0.94)); 

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.03); 

  text-align: center;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.75;
  }
}

@keyframes typingLine1 {
  from { width: 0; }
  to { width: 17ch; }
}

@keyframes typingLine2 {
  from { width: 0; }
  to { width: 17ch; }
}

@keyframes caretBlink {
  0%, 50% { border-color: rgba(255, 255, 255, 0.9); }
  51%, 100% { border-color: transparent; }
}

@keyframes showLine {
  from { opacity: 1; }
  to { opacity: 1; }
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes chessMove1 {
  0% {
    opacity: 0;
    transform: translate(94px, 56px) scale(0.82);
  }
  30% {
    opacity: 1;
    transform: translate(34px, 0) scale(1);
  }
  62% {
    transform: translate(34px, 34px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes chessMove2 {
  0% {
    opacity: 0;
    transform: translate(-94px, 58px) scale(0.82);
  }
  28% {
    opacity: 1;
    transform: translate(-36px, 0) scale(1);
  }
  65% {
    transform: translate(-36px, 34px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes chessMove3 {
  0% {
    opacity: 0;
    transform: translate(90px, -62px) scale(0.82);
  }
  34% {
    opacity: 1;
    transform: translate(32px, 0) scale(1);
  }
  68% {
    transform: translate(32px, -34px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes chessMove4 {
  0% {
    opacity: 0;
    transform: translate(-96px, -62px) scale(0.82);
  }
  32% {
    opacity: 1;
    transform: translate(-34px, 0) scale(1);
  }
  66% {
    transform: translate(-34px, -34px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .navbar {
    padding: 18px 28px;
  }

  .nav-menu {
    gap: 26px;
  }

  .hero {
    padding: 48px 20px 40px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-text {
    font-size: 19px;
    max-width: 820px;
  }

  .stats-row {
    gap: 20px;
  }

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

  .about-board {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-menu.mobile-open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 9, 16, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
    z-index: 1001;
  }

  .nav-menu.mobile-open .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 14px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 56px 20px 42px;
  }

  .hero-title {
    font-size: 54px;
    letter-spacing: -1.4px;
  }

  .hero-text {
    font-size: 18px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-section {
    padding: 90px 20px 82px;
  }

  .about-header h2,
  .contact-box h2 {
    font-size: 40px;
  }

  .about-header p,
  .contact-box p {
    font-size: 17px;
  }

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

  .about-board {
    min-height: 520px;
    max-width: 460px;
  }

  .chess-item {
    width: 138px;
  }

  .chess-icon {
    width: 64px;
    height: 64px;
    font-size: 27px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 16px;
  }

  .logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #fff;
    line-height: 1;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .typing-line {
    white-space: nowrap;
  }

  .hero-text {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .trusted-badge {
    font-size: 13px;
    padding: 0;
  }

  .hero-buttons {
    margin-bottom: 42px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-item h3 {
    font-size: 34px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .partners-section {
    padding: 56px 16px;
  }

  .partners-label {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .partners-track {
    gap: 54px;
    animation-duration: 18s;
  }

  .partner-logo img {
    height: 38px;
  }

  .about-section {
    padding: 72px 16px 64px;
  }

  .section-tag {
    font-size: 13px;
    padding: 9px 14px;
  }

  .about-header {
    margin-bottom: 36px;
  }

  .about-header h2,
  .contact-box h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .about-header p,
  .contact-box p {
    font-size: 16px;
    line-height: 1.7;
  }

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

  .feature-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .consultation-wrap {
    margin-top: 18px;
  }

  .consultation-badge {
    min-width: 100%;
  }

  .about-board {
    min-height: 560px;
    max-width: 100%;
    padding: 16px;
    border-radius: 20px;
  }

  .board-grid {
    inset: 16px;
    border-radius: 16px;
  }

  .about-mini-tag,
  .board-badge,
  .consultation-badge {
    font-size: 11px;
    padding: 8px 12px;
  }

  .chess-item {
    width: 120px;
    gap: 8px;
  }

  .chess-item h3 {
    font-size: 13px;
  }

  .chess-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .chess-item-1 {
    top: 58px;
    left: 18px;
  }

  .chess-item-2 {
    top: 58px;
    right: 18px;
  }

  .chess-item-3 {
    bottom: 64px;
    left: 18px;
  }

  .chess-item-4 {
    bottom: 64px;
    right: 18px;
  }

  .contact-section {
    padding: 0 16px 72px;
  }

  .contact-box {
    padding: 28px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .about-board {
    min-height: 520px;
  }

  .chess-item {
    width: 108px;
  }

  .chess-item h3 {
    font-size: 12px;
  }

  .chess-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}


/* SERVICES COMMAND CENTER */
.services-command-section {
  padding: 30px 0 0;
}

.services-command-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 45, 58, 0.12), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(57, 84, 158, 0.12), transparent 23%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.84), rgba(5, 8, 14, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 28px 70px rgba(0, 0, 0, 0.28);
}

.services-command-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    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: 90px 90px;
  opacity: 0.12;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
}

.services-command-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 15%, rgba(214, 45, 58, 0.05) 34%, transparent 54%),
    linear-gradient(300deg, transparent 28%, rgba(94, 115, 188, 0.06) 49%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.9;
}

.services-command-top,
.services-command-panels {
  position: relative;
  z-index: 1;
}

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

.services-command-heading {
  max-width: 700px;
}

.services-command-tag {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  margin-bottom: 10px;
}

.services-command-heading h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  max-width: 640px;
}

.services-command-heading p {
  max-width: 670px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(216, 226, 240, 0.86);
}

.services-command-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid rgba(146, 203, 176, 0.18);
  border-radius: 999px;
  color: rgba(234, 242, 255, 0.96);
  background: rgba(10, 18, 31, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  white-space: nowrap;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9ef0c5;
  box-shadow: 0 0 12px rgba(158, 240, 197, 0.45);
}

.services-command-tabs {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.services-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 16, 26, 0.5);
  color: rgba(233, 239, 247, 0.92);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  backdrop-filter: blur(10px);
}

.services-tab:hover,
.services-tab.active {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(150, 181, 255, 0.18);
  background: linear-gradient(180deg, rgba(49, 80, 147, 0.9), rgba(32, 57, 110, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 10px 25px rgba(16, 35, 78, 0.28);
}

.services-command-panels {
  display: grid;
  grid-template-columns: 1.18fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.services-panel {
  display: none;
  min-height: 402px;
  padding: 20px 20px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 72% 18%, rgba(52, 88, 170, 0.12), transparent 21%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.74), rgba(4, 8, 14, 0.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.services-panel.active {
  display: flex;
  flex-direction: column;
}

.services-panel-label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 249, 252, 0.94);
  margin-bottom: 16px;
}

.services-panel-value {
  font-size: clamp(4rem, 7vw, 5.2rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.services-panel p {
  max-width: 94%;
  color: rgba(220, 228, 240, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.services-progress-list {
  margin-top: auto;
}

.services-progress-item + .services-progress-item {
  margin-top: 10px;
}

.services-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 6px;
  color: rgba(245, 248, 252, 0.96);
  font-weight: 700;
  font-size: 0.98rem;
}

.services-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.services-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(190, 225, 255, 0.98), rgba(126, 178, 232, 0.96));
}

.services-readiness-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.services-readiness-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(rgba(145, 201, 255, 0.96) 0 342deg, rgba(255, 255, 255, 0.18) 342deg 360deg);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  position: relative;
}

.advisory-ring {
  background:
    conic-gradient(rgba(145, 201, 255, 0.96) 0 334.8deg, rgba(255, 255, 255, 0.18) 334.8deg 360deg);
}

.solutions-ring {
  background:
    conic-gradient(rgba(145, 201, 255, 0.96) 0 338.4deg, rgba(255, 255, 255, 0.18) 338.4deg 360deg);
}

.services-readiness-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.96), rgba(7, 12, 22, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.services-readiness-inner {
  position: relative;
  z-index: 1;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.services-readiness-caption {
  align-self: flex-start;
  color: rgba(243, 247, 252, 0.94);
  font-size: 0.98rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .services-command-shell {
    width: min(1180px, calc(100% - 30px));
    padding: 26px 18px 20px;
  }

  .services-command-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-command-status {
    padding: 12px 16px;
  }

  .services-command-heading h2 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    max-width: 560px;
  }

  .services-command-panels {
    grid-template-columns: 1fr;
  }

  .services-panel {
    min-height: unset;
  }

  .services-readiness-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .services-command-section {
    padding-top: 24px;
  }

  .services-command-shell {
    width: min(1180px, calc(100% - 20px));
    border-radius: 24px;
    padding: 22px 14px 16px;
  }

  .services-command-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .services-command-heading p {
    font-size: 0.95rem;
  }

  .services-tab {
    width: 100%;
    justify-content: center;
  }

  .services-panel {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .services-panel-value {
    font-size: clamp(3.2rem, 16vw, 4.2rem);
  }

  .services-readiness-ring {
    width: 122px;
    height: 122px;
  }
}
/* SERVICES OVERVIEW PANEL */
.services-overview-section {
  padding: 0 20px 82px;
}

.services-overview-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(4, 10, 22, 0.94), rgba(3, 8, 18, 0.98)),
    radial-gradient(circle at top right, rgba(166,216,255,0.10), transparent 28%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.services-overview-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(166,216,255,0.08), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(143,93,255,0.08), transparent 16%);
  pointer-events: none;
}

.services-panel-header,
.services-pill-row,
.services-dashboard-grid {
  position: relative;
  z-index: 1;
}

.services-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.services-panel-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #eef5ff;
}

.services-panel-header h2 {
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.9px;
  margin-bottom: 10px;
}

.services-panel-subtext {
  max-width: 640px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.services-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(166, 216, 255, 0.14);
  background: rgba(14, 22, 38, 0.8);
  color: #eff6ff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.status-dot {
  width: 10px;
  height: 8px;
  border-radius: 50%;
  background: #9be7c4;
  box-shadow: 0 0 12px rgba(155, 231, 196, 0.55);
}

.services-pill-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #d7e2f1;
  font-size: 15px;
  transition: 0.25s ease;
  cursor: pointer;
  appearance: none;
  outline: none;
}

.service-pill.active,
.service-pill:hover {
  border-color: rgba(120, 174, 255, 0.35);
  background: linear-gradient(180deg, rgba(27, 52, 108, 0.85), rgba(18, 32, 70, 0.85));
  color: #ffffff;
  box-shadow: inset 0 0 18px rgba(166, 216, 255, 0.08);
}

.services-dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 14px;
}

.services-dashboard-card {
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.96), rgba(7, 11, 19, 0.96));
  padding: 16px 14px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.services-card-label {
  color: #f0f5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.services-card-metric,
.services-card-highlight {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.services-card-copy {
  color: #c6d1df;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 440px;
}

.services-progress-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: #dfe8f5;
  font-size: 14px;
}

.progress-head strong {
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b9e2ff, #9fd3ff);
}

.readiness-ring-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 12px;
}

.readiness-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#9fd3ff 0 342deg, rgba(255,255,255,0.10) 342deg 360deg);
  position: relative;
}

.readiness-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #031027;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.readiness-ring-inner {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
}

.readiness-caption {
  font-size: 15px;
  font-weight: 600;
  color: #ebf2ff;
}

.services-solutions-card {
  grid-column: 1 / -1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.solution-mini-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(11, 17, 29, 0.95), rgba(8, 13, 23, 0.95));
  padding: 18px 16px;
}

.solution-mini-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #ffffff;
}

.solution-mini-card p {
  color: #c6d1df;
  font-size: 14px;
  line-height: 1.65;
}

.services-tab-content {
  display: none;
}

.services-tab-content.active {
  display: block;
}

.advisory-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.advisory-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisory-point {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(11, 17, 29, 0.95), rgba(8, 13, 23, 0.95));
  padding: 16px 14px;
}

.advisory-point h3 {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 10px;
}

.advisory-point p {
  color: #c6d1df;
  font-size: 13.5px;
  line-height: 1.65;
}

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

/* DISABLE HEAVY EFFECTS INSIDE SERVICES COMMAND CENTER */
#services-overview .tilt-card,
#services-overview .services-dashboard-card,
#services-overview .services-solutions-card,
#services-overview .solution-mini-card,
#services-overview .advisory-point,
#services-overview .service-pill,
#services-overview .services-status-badge,
#services-overview .readiness-ring,
#services-overview .progress-bar span {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

#services-overview .service-pill:hover {
  box-shadow: none !important;
}

#services-overview .services-dashboard-card:hover,
#services-overview .services-solutions-card:hover,
#services-overview .solution-mini-card:hover,
#services-overview .advisory-point:hover,
#services-overview .service-pill:hover {
  transform: none !important;
}

@media (max-width: 992px) {
  .services-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-panel-header h2 {
    font-size: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .services-overview-section {
    padding: 0 16px 72px;
  }

  .services-overview-container {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .services-panel-eyebrow {
    font-size: 12px;
  }

  .services-panel-header h2 {
    font-size: 28px;
  }

  .services-panel-subtext,
  .services-card-copy,
  .solution-mini-card p {
    font-size: 14px;
  }

  .service-pill {
    min-width: 100px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .services-card-metric,
  .services-card-highlight {
    font-size: 42px;
  }

  .readiness-ring {
    width: 136px;
    height: 136px;
  }

  .readiness-ring-inner {
    font-size: 26px;
  }

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

  .solution-mini-card h3 {
    font-size: 17px;
  }

  .solutions-grid-full {
    grid-template-columns: 1fr;
  }
}
/* MISSION SECTION */
.mission-section {
  padding: 0 20px 82px;
  background: transparent;
}

.mission-container {
  max-width: 1180px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.mission-visual-wrap {
  min-width: 0;
}

.mission-image-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.02);
  min-height: 100%;
}

.mission-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mission-content {
  min-width: 0;
}

.mission-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(166, 216, 255, 0.16);
  background: rgba(255,255,255,0.03);
  color: #dff3ff;
  font-size: 12px;
  font-weight: 700;
}

.mission-content h2 {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.9px;
  margin-bottom: 16px;
  color: #ffffff;
}

.mission-text {
  color: #c4cedd;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.mission-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.mission-point-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(12, 18, 29, 0.96), rgba(8, 12, 21, 0.96));
  padding: 16px 15px;
}

.mission-point-card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #ffffff;
}

.mission-point-card p {
  color: #c6d1df;
  font-size: 13.5px;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 0 16px 72px;
  }

  .mission-grid {
    padding: 18px;
    border-radius: 20px;
    gap: 18px;
  }

  .mission-image {
    min-height: 240px;
  }

  .mission-content h2 {
    font-size: 26px;
  }

  .mission-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .mission-points-grid {
    grid-template-columns: 1fr;
  }

  .mission-point-card h3 {
    font-size: 16px;
  }

  .mission-point-card p {
    font-size: 13px;
  }
}

/* PERFORMANCE OPTIMIZATIONS */
.partners-section,
.about-section,
.services-overview-section,
.services-command-section,
.mission-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

img {
  max-width: 100%;
  height: auto;
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* FIX: remove only the outer box from Our Services Command Center */
.services-overview-container {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.services-overview-container::before {
  content: none !important;
  display: none !important;
}


/* CONTACT SHOWCASE SECTION */
.contact-showcase-section {
  padding: 0 20px 110px;
}

.contact-showcase-container {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-showcase-info,
.contact-form-shell {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.94), rgba(6, 9, 16, 0.94));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.contact-showcase-info {
  padding: 34px 28px;
}

.contact-showcase-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 70, 70, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f7ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-showcase-info h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1.3px;
  color: #ffffff;
  margin-bottom: 16px;
  max-width: 540px;
}

.contact-showcase-intro {
  font-size: 15px;
  line-height: 1.85;
  color: #c2cfdf;
  margin-bottom: 24px;
  max-width: 560px;
}

.contact-info-stack {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.contact-info-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.18), rgba(255, 77, 77, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.contact-info-card span {
  display: block;
  font-size: 13px;
  color: #9fb2c9;
  margin-bottom: 6px;
}

.contact-info-card strong,
.contact-mini-title {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-mini-title {
  margin-bottom: 10px;
}

.contact-benefits-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: #d9e3f0;
}

.contact-benefits-list li::marker {
  color: #ff3b3b;
}

.contact-form-shell {
  padding: 26px;
}

.contact-form-grid {
  display: grid;
  gap: 16px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  font-size: 15px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
  color: #90a2b9;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-color: rgba(255, 59, 59, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.08);
}

.contact-form-grid textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-submit-btn {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c91722, #ff3b3b);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(180, 20, 30, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(180, 20, 30, 0.36);
}

@media (max-width: 992px) {
  .contact-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-showcase-info h2 {
    font-size: 34px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .contact-showcase-section {
    padding: 0 16px 72px;
  }

  .contact-showcase-info,
  .contact-form-shell {
    border-radius: 22px;
  }

  .contact-showcase-info {
    padding: 26px 20px;
  }

  .contact-form-shell {
    padding: 20px;
  }

  .contact-showcase-info h2 {
    font-size: 28px;
  }

  .contact-showcase-intro,
  .contact-info-card strong,
  .contact-mini-title {
    font-size: 15px;
  }

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


.hp-field{position:absolute !important;left:-9999px !important;opacity:0 !important;pointer-events:none !important;height:0 !important;width:0 !important;}
