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

:root {
  --bg: #EDEEF1;
  --white: #ffffff;
  --transparent: #f7f7f700;
  --transparent-80: #ffffffdd;
  --black: #111111;
  --gray-100: #F5F5F7;
  --gray-200: #E8E9ED;
  --gray-400: #9B9CA1;
  --gray-500: #7A7B80;
  --gray-600: #5A5B60;
  --red: #E8503A;
  --purple: #8B6FE8;
  --purple-light: #C4B1F7;
  --yellow: #F5D23B;
  --cyan: #38BDF8;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
  --shadow-soft: 0 4px 40px rgba(0, 0, 0, 0.06);

  /* Brand Blue */
  --brand_blue-100: #283584;
  --brand_blue-80: #4F5A9D;
  --brand_blue-60: #7880B6;
  --brand_blue-40: #A1A7CF;
  --brand_blue-30: #BABEE0;
  --brand_blue-20: #D3D6EB;
  --brand_blue-15: #E5E7F3;
  --brand_blue-10: #F0F1F8;

  /* Brand Green */
  --brand_green-100: #6BA895;
  --brand_green-80: #89BAA9;
  --brand_green-60: #A7CCBE;
  --brand_green-40: #C5DDD3;
  --brand_green-30: #D9EBE4;
  --brand_green-20: #E8F2EE;
  --brand_green-15: #F1F7F5;
  --brand_green-10: #F8FBFA;

  /* Brand Red */
  --brand_red-100: #EA493A;
  --brand_red-80: #EE6E61;
  --brand_red-60: #F29388;
  --brand_red-40: #F7B8B1;
  --brand_red-30: #FACCC7;
  --brand_red-20: #FCDDD9;
  --brand_red-15: #FDECEA;
  --brand_red-10: #FEF5F4;

  /* Accent */
  --accent_pressed: #8B2920;

  /* Amber/Warning */
  --amber-100: #D97706;
  --amber-20: #FEF3C7;

  /* Backgrounds */
  --background_white: #FAFAFA;
  --background_lightgrey: #F5F5F5;
  --background_lightgrey-alt: #F0F0F0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand_blue-100);
}

h3 {
  font-family: var(--font-display);
}

.page-wrapper {
  max-width: 1280px;
  margin: 20px auto;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: clip;
  position: relative;
}

.page-wrapper>section {
  min-height: 70vh;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 40px;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 40px;
  margin: 20px 40px 0;

}

.navbar-inner {
  display: flex;
  align-items: center;
  background: var(--transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 8px 8px 8px 20px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  height: 52px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  margin-right: 32px;
  white-space: nowrap;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 450;
  padding: 8px 14px;
  border-radius: 30px;
}

/* ===== DESKTOP DROPDOWN MENUS ===== */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-links .dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-links .has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 420px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: var(--transparent-80);
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 24px 28px;
  display: none;
  z-index: 1000;
  margin-top: 9px;

}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-links .has-dropdown:hover .dropdown-menu {
  display: flex;
  gap: 40px;

}

.dropdown-menu-single {
  min-width: 280px;
}

.nav-links .has-dropdown:hover .dropdown-menu-single {
  display: block;
}

.dropdown-column h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu ul li {
  margin-bottom: 4px;
}

.dropdown-menu ul li a {
  display: block;
  padding: 10px 12px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 450;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu ul li a:hover {
  background: var(--gray-100);
  color: var(--black);
}

.dropdown-menu-single ul li a {
  white-space: normal;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-signin {
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  height: 36px;
  box-sizing: border-box;
}

.btn-demo {
  text-decoration: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 30px;
  background: var(--brand_red-100);
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 36px;
  box-sizing: border-box;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 8px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px;
  box-sizing: border-box;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: var(--black);
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
}

.mobile-menu-links li {
  margin-bottom: 8px;
}

.mobile-menu-links a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu-links a:hover {
  background: var(--gray-100);
}

/* ===== MOBILE DROPDOWN MENUS ===== */
.mobile-has-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-dropdown-trigger:hover {
  background: var(--gray-100);
}

.mobile-dropdown-trigger .dropdown-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.mobile-has-dropdown.active .mobile-dropdown-trigger .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  padding: 0 16px 16px;
}

.mobile-has-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-dropdown-content h6 {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 16px 0 8px 0;
  padding: 0;
}

.mobile-dropdown-content h6:first-child {
  margin-top: 8px;
}

.mobile-dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-dropdown-content ul li {
  margin-bottom: 2px;
}

.mobile-dropdown-content ul li a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 450;
  color: var(--gray-600);
  border-radius: 8px;
}

.mobile-dropdown-content ul li a:hover {
  background: var(--gray-100);
  color: var(--black);
}

.mobile-menu-actions {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-actions .btn-signin,
.mobile-menu-actions .btn-demo {
  justify-content: center;
  height: 44px;
  font-size: 15px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 180px 60px 180px;
  position: relative;
  overflow: hidden;
  min-height: 600px;

}

.hero-screenshot {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 40%;
  height: auto;
  z-index: 2;
  border-radius: 12px 0 0 0;
}

/* ===== FULL-SCREEN NETWORK BACKGROUND ===== */
.network-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.network-bg canvas {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0;
  position: relative;
  z-index: 3;
}

.knight-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.knight-img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.knight-link:hover .knight-img {
  filter: drop-shadow(0 0 8px rgba(234, 73, 58, 0.9)) drop-shadow(0 0 16px rgba(234, 73, 58, 0.7)) drop-shadow(0 0 24px rgba(234, 73, 58, 0.5));
  transform: scale(1.05);
}

.hero p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 18px auto 0;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}

.tiny {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.6rem;
  color: var(--gray-400);
}

.btn-hero {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 14px;
  padding: 16px 48px;
  background: var(--brand_red-100);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(234, 73, 58, 0.3);
  position: relative;
  z-index: 3;
}

.btn-ghost {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  color: var(--brand_red-100);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid var(--brand_red-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--brand_red-60);
  color: var(--white);
  border-color: var(--brand_red-60);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 73, 58, 0.3);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 180px 60px;
  text-align: center;
}

.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
}

.problem-card-image {
  width: 100%;
  height: 160px;
  background: var(--gray-200);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.problem-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  color: var(--black);
  line-height: 1.3;
}

.problem-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== SOCIAL PROOF (Trusted By) ===== */
.social-proof {
  flex-direction: row;
  text-align: center;
  align-content: center;
  padding: 80px 60px 100px;
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* ===== VERTICAL LOGO SCROLLER ===== */
.logo-scroller {
  position: relative;
  height: 500px;
  width: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-scroller::before,
.logo-scroller::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-scroller::before {
  top: 0;
  background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
}

.logo-scroller::after {
  bottom: 0;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.logo-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-scroll-track.scroll-up {
  animation: scrollUp 25s linear infinite;
}

.logo-scroll-track.scroll-down {
  animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.scroll-logo {
  width: 100px;
  height: 70px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.scroll-logo svg {
  width: 36px;
  height: 36px;
  opacity: 0.7;
}

.scroll-logo img {
  width: 90px;
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
}

.social-proof h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1px;
}

.social-proof p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.btn-purple {
  display: inline-block;
  margin-top: 26px;
  padding: 16px 48px;
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(139, 111, 232, 0.3);
}

/* Ghost Button */
.btn-ghost {
  display: inline-block;
  /* margin-top: 16px; */
  padding: 12px 24px;
  background: var(--white);
  color: var(--brand_red-100);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  border: 1.5px solid var(--brand_red-100);
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: var(--brand_red-60);
  color: var(--white);
  border-color: var(--brand_red-60);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 73, 58, 0.25);
}

.social-proof .content-z {
  position: relative;
  z-index: 2;
}

/* ===== BUILT FOR EVERYONE ===== */
.built-for {
  padding: 80px 50px;
}

.built-for-header {
  text-align: center;
  margin-bottom: 48px;
}

.built-for-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1px;
}

.built-for-header p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.feature-row {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

/* Odd rows: feature on left (1.5fr), quote on right (1fr) */
.feature-row:nth-of-type(odd) {
  grid-template-columns: 1fr 1.5fr;
}

/* Even rows: quote on left (1fr), feature on right (1.5fr) */
.feature-row:nth-of-type(even) {
  grid-template-columns: 1.5fr 1fr;
}

/* Quote card styling */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card blockquote {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  margin: 0 0 24px 0;
  font: var(--font-display);
  font-style: italic;
}

.quote-card .quote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-card .quote-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.quote-card .quote-logo-placeholder {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 6px;
  align-content: center;
}

.quote-card .quote-author {
  font-size: 14px;
  color: var(--gray-600);
}

.quote-card .quote-author strong {
  color: var(--black);
  display: block;
}

.feature-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 28px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.35s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-visual {
  height: 200px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Attendance card */
.card-attendance {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
}

.card-attendance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
}

.card-attendance-header span:last-child {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: calc(100% - 36px);
}

.chart-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.chart-row span {
  font-size: 10px;
  color: var(--gray-500);
  width: 26px;
  text-align: right;
}

.chart-row .bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  flex: 1;
  height: 100%;
}

.chart-row .bar {
  flex: 1;
  border-radius: 4px;
  min-height: 8px;
}

.bar-purple {
  background: var(--purple);
}

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

.bar-light {
  background: var(--gray-200);
}

/* Insights card */
.card-insights {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-orbit {
  width: 200px;
  height: 200px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  position: relative;
}

.insights-orbit::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
}

.insight-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 30px;
  padding: 8px 16px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 2;
}

.insight-pill .dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-red {
  background: var(--red);
}

.dot-cyan {
  background: var(--cyan);
}

.insight-pill .dot svg {
  width: 16px;
  height: 16px;
  color: white;
}

/* Legal card */
.card-legal {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-docs {
  position: relative;
  width: 120px;
  height: 140px;
}

.legal-doc {
  position: absolute;
  width: 90px;
  height: 110px;
  background: var(--gray-200);
  border-radius: 10px;
}

.legal-doc:nth-child(1) {
  left: 0;
  top: 0;
  transform: rotate(-6deg);
}

.legal-doc:nth-child(2) {
  left: 15px;
  top: -5px;
  transform: rotate(3deg);
  opacity: 0.8;
}

.legal-doc:nth-child(3) {
  left: 30px;
  top: -10px;
  transform: rotate(8deg);
  opacity: 0.6;
}

.legal-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 111, 232, 0.3);
  z-index: 2;
}

.legal-badge svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* Blocked sites card */
.card-blocked {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
}

.card-blocked-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-blocked-header span:first-child {
  font-size: 12px;
  font-weight: 600;
}

.card-blocked-header span:last-child {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}

.blocked-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blocked-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blocked-label {
  font-size: 11px;
  color: var(--gray-600);
  width: 85px;
  flex-shrink: 0;
}

.blocked-bar-container {
  flex: 1;
  height: 24px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
}

.blocked-bar {
  height: 100%;
  border-radius: 6px;
  width: 0;
}

.blocked-bar.bar-red {
  background: var(--brand_red-100);
}

.blocked-bar.bar-purple {
  background: var(--purple);
}

.blocked-bar.bar-light {
  background: var(--gray-400);
}

.blocked-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  width: 28px;
  text-align: right;
}

/* Device Protection Report card */
.card-device-report {
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
}

.card-device-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-device-header span:first-child {
  font-size: 12px;
  font-weight: 600;
}

.card-device-header span:last-child {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}

.device-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.device-table thead tr {
  border-bottom: 1px solid var(--gray-200);
}

.device-table th {
  text-align: left;
  padding: 6px 4px;
  font-weight: 600;
  color: var(--gray-500);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.device-table td {
  padding: 8px 4px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.device-table tbody tr:last-child td {
  border-bottom: none;
}

.incident-icon {
  margin-right: 4px;
}

.severity-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
}

.severity-high {
  background: var(--brand_red-20);
  color: var(--brand_red-100);
}

.severity-medium {
  background: var(--amber-20);
  color: var(--amber-100);
}

.severity-low {
  background: var(--brand_green-20);
  color: var(--brand_green-100);
}

/* Human Risk Control card */
.card-human-risk {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
}

.card-human-risk .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-human-risk .card-header span:first-child {
  font-size: 8px;
  font-weight: 600;
}

.card-human-risk .card-header .see-all {
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 400;
}

.dept-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.dept-tag {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--gray-100);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.dept-tag:hover {
  background: var(--gray-200);
}

.dept-tag.active {
  background: var(--brand_blue-100);
  color: white;
}

.dept-tag .count {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 4px;
  font-size: 8px;
}

.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.staff-table th {
  text-align: left;
  padding: 4px 6px;
  font-weight: 600;
  color: var(--gray-500);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
}

.staff-table td {
  padding: 8px 6px;
  font-size: 11px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.staff-table tbody tr:last-child td {
  border-bottom: none;
}

.staff-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.staff-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.staff-name span {
  font-weight: 500;
  color: var(--black);
}

.grade-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.grade-a {
  background: var(--brand_green-20);
  color: var(--brand_green-100);
}

.grade-b {
  background: var(--amber-20);
  color: var(--amber-100);
}

.grade-c {
  background: var(--brand_red-20);
  color: var(--brand_red-100);
}

.status-ok {
  color: var(--brand_green-100);
  font-size: 10px;
}

.status-warning {
  color: var(--amber-100);
  font-size: 10px;
}

.status-alert {
  color: var(--brand_red-100);
  font-size: 10px;
}

.training-chart {
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  flex: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.training-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.training-header span {
  font-size: 12px;
  font-weight: 600;
}

.training-tabs {
  display: flex;
  gap: 4px;
}

.training-tab {
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--gray-100);
  font-weight: 500;
}

.training-tab.active {
  background: var(--purple);
  color: white;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding-top: 10px;
}

.mini-bar {
  flex: 1;
  background: var(--gray-200);
  border-radius: 4px;
  position: relative;
}

.mini-bar.highlight {
  background: var(--purple);
}

.mini-bar-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: var(--white);
  background: var(--purple);
  padding: 1px 5px;
  border-radius: 4px;
  white-space: nowrap;
}

.card-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-badge svg {
  width: 22px;
  height: 22px;
}

.card-badge.red {
  background: rgba(232, 80, 58, 0.1);
  color: var(--red);
}

/* Teams card */
.card-teams .card-visual {
  height: auto;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.team-orbit {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
}

.team-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.team-center svg {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
}

.team-face {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: var(--gray-200);
}

.team-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-face:nth-child(3) {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.team-face:nth-child(4) {
  top: 18%;
  right: -2px;
}

.team-face:nth-child(5) {
  bottom: 18%;
  right: -2px;
}

.team-face:nth-child(6) {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.team-face:nth-child(7) {
  bottom: 18%;
  left: -2px;
}

.team-face:nth-child(8) {
  top: 18%;
  left: -2px;
}

/* Cyber Checklist Card */
.cyber-checklist {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.checklist-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.checklist-header {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.checklist-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 50%;
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.progress-bar-track {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #4ECDC4, #6BD5CE);
  border-radius: 3px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 6px;
  /* border: 1px solid var(--gray-200); */
  border-radius: 10px;
  transition: all 0.2s ease;
}

.checklist-item.active {
  border-color: var(--gray-400);
  background: var(--gray-100);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #1E3C72;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  color: #1E3C72;
}

.check-icon.empty {
  border-color: var(--gray-400);
}

.check-icon.empty svg {
  opacity: 0;
}

.checklist-item.completed .check-icon {
  background: transparent;
}

.checklist-item.completed span {
  text-decoration: line-through;
  color: var(--gray-500);
}

.checklist-item span {
  flex: 1;
  font-size: 13px;
  font-weight: 450;
  color: var(--gray-600);
}

.item-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.item-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
}

.item-arrow.filled {
  background: #1E3C72;
  border-color: #1E3C72;
}

.item-arrow.filled svg {
  color: white;
}

/* ===== ONBOARDING CARD ===== */
.card-onboarding {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 12px;
  width: 100%;
}

.onboarding-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.onboarding-tasks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.onboarding-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.task-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.task-icon svg {
  width: 16px;
  height: 16px;
}

.task-icon-team {
  background: #E8F4FD;
  color: #1E3C72;
}

.task-icon-device {
  background: #FEF3E8;
  color: #D97706;
}

.task-icon-lock {
  background: #F3E8FE;
  color: #7C3AED;
}

.task-content {
  flex: 1;
  min-width: 0;
}

.task-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-sub {
  font-size: 10px;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.task-progress {
  font-size: 10px;
  color: var(--gray-500);
  background: var(--gray-200);
  padding: 2px 6px;
  border-radius: 4px;
}

.effort-tag {
  font-size: 9px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.effort-low {
  background: #DCFCE7;
  color: #166534;
}

.effort-medium {
  background: #FEF3C7;
  color: #92400E;
}

.onboarding-subtask {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 50px;
  font-size: 10px;
  color: var(--gray-600);
  background: var(--white);
  border-left: 2px solid var(--gray-200);
  margin-left: 26px;
}

.subtask-check {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--gray-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.onboarding-subtask span:first-of-type {
  flex: 1;
}

.subtask-action {
  color: var(--brand_blue-100);
  font-weight: 600;
  font-size: 10px;
}

/* ===== CTA SECTION ===== */
.cta {
  min-height: 300px;
  margin: 100px 0px;
  width: 100%;
  padding: 80px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(45deg, var(--brand_blue-100) 0%, var(--brand_blue-60) 100%);
  border-radius: var(--radius);
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--white);
  margin: 0 0 16px 0;
}

.cta p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 24px;
}

.cta .btn-hero {
  background: var(--brand_red-100);
  color: var(--white);
}

.cta .btn-hero:hover {
  background: var(--brand_red-80);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.cta .tiny {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  display: inline-block;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 24px;
    min-height: 250px;
  }
}

/* ===== OBJECTIONS / FAQ ===== */
.objections {
  padding: 80px 50px;
  text-align: center;
}

.objections h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin: 0 0 20px 0;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
}

.objections p {
  color: var(--gray-500);
  margin: 0 0 20px 0;

}

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

.objection-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.objection-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 16px 0;
  color: var(--black);
}

.objection-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 900px) {
  .objections-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .objections {
    padding: 60px 24px;
  }
}

/* ===== INTEGRATIONS ===== */
.integrations {
  padding: 40px 50px 80px;
}

.integrations-card {
  border-radius: var(--radius);
  padding: 100px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.integrations-text {
  text-align: left;
}

.integrations-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin: 0 0 24px 0;
}

.integrations-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

.integrations-video {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.integrations-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .integrations-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 30px;
  }

  .integrations-text {
    text-align: center;
  }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 80, 58, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(139, 111, 232, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 40px 0;
}

.btn-hero-light {
  display: inline-block;
  background: #ffffff;
  color: #1a1a2e;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.final-cta-fine-print {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 24px 0 0 0;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 80px 24px;
  }

  .btn-hero-light {
    padding: 16px 28px;
    font-size: 15px;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 0 50px;
}

.footer-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 60px 50px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--brand_blue-100);
  margin-bottom: 40px;
}

.footer-logo img {
  height: 40px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--brand_blue-100);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--brand_blue-100);
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--brand_blue-100);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col h6 {
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0 12px;
  color: var(--black);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brand_blue-100);
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: var(--black);
}

/* ===== ANIMATIONS (GSAP handles these) ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.mobile-br {
  display: none;
}

@media (max-width: 900px) {
  .mobile-br {
    display: block;
  }

  .page-wrapper {
    border-radius: 0;
    margin: 0;
  }

  .navbar {
    margin: 8px auto 0;
    width: 80%;
    padding: 0;
  }

  .navbar-inner {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 120px 20px 40px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .knight-link {
    pointer-events: none;
    cursor: default;
  }

  .knight-link:hover .knight-img {
    filter: none;
    transform: none;
  }

  .hero-screenshot {
    position: relative;
    bottom: auto;
    right: auto;
    width: 90%;
    max-width: none;
    margin-top: 40px;
    border-radius: 12px;
  }

  .problem-header h2 {
    margin-bottom: 40px;
  }

  .problem-section {
    padding: 60px 20px;
    text-align: center;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-card-image {
    height: 140px;
  }

  .social-proof,
  .built-for,
  .integrations {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-row {
    grid-template-columns: 1fr !important;
  }

  .feature-row .quote-card {
    order: 2;
  }

  .feature-row .feature-card {
    order: 1;
  }

  .footer {
    padding: 0 16px;
  }

  .footer-card {
    padding: 40px 24px 30px;
  }

  .footer-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    margin-right: 0;
  }

  .nav-logo span {
    display: none;
  }

  .nav-actions .btn-signin {
    display: none;
  }

  .nav-actions .btn-demo {
    padding: 8px 14px;
    font-size: 12px;
    height: 32px;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .social-proof {
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding-bottom: 40px;
  }

  .social-proof .content-z {
    display: block;
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  /* Hide all logo scrollers by default on mobile, then show specific ones */
  .social-proof>.logo-scroller {
    display: none;
  }

  /* Show 1st scroller (scroll-up for left animation) and 4th scroller (scroll-down for right animation) */
  .social-proof>.logo-scroller:nth-child(1) {
    display: block;
    order: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: auto;
    overflow: hidden;
    position: relative;
  }

  .social-proof>.logo-scroller:nth-child(4) {
    display: block;
    order: 3;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: auto;
    overflow: hidden;
    position: relative;
  }

  .logo-scroller::before,
  .logo-scroller::after {
    display: none;
  }

  .logo-scroll-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 12px 0;
    width: max-content;
  }

  .logo-scroll-track.scroll-up,
  .logo-scroll-track.scroll-down {
    animation: none;
  }

  .logo-scroll-track.scroll-up {
    animation: scrollLeftMobile 25s linear infinite;
  }

  .logo-scroll-track.scroll-down {
    animation: scrollRightMobile 25s linear infinite;
  }

  @keyframes scrollLeftMobile {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

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

    100% {
      transform: translateX(0);
    }
  }

  .scroll-logo {
    width: 90px;
    height: 60px;
    flex-shrink: 0;
  }

  .scroll-logo img {
    width: 80px;
    height: 36px;
  }

  /* Utility: Hide on mobile */
  .hidden-mobile {
    display: none !important;
  }
}

/* ===========================
   FEATURES PAGE
   =========================== */

.features-hero {
  padding: 180px 60px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.features-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--black);
  margin: 0 0 24px;
}

.features-hero p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 18px auto 0;
  line-height: 1.6;
}

.features-list {
  padding: 40px 40px 80px;
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature-section:last-child {
  border-bottom: none;
}

.feature-section.reverse {
  direction: rtl;
}

.feature-section.reverse>* {
  direction: ltr;
}

.feature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--brand_blue-100);
  margin-bottom: 20px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand_blue-100);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-points {
  list-style: none;
  padding: 0;
}

.feature-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.6;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--brand_blue-100);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* Cyberscan CTA */
.cyberscan-cta {
  background: linear-gradient(135deg, var(--brand_blue-100) 0%, var(--brand_blue-80) 100%);
  padding: 80px 40px;
  text-align: center;
}

.cyberscan-content {
  max-width: 700px;
  margin: 0 auto;
}

.cyberscan-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cyberscan-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cyberscan-text .btn-hero {
  background: var(--white);
  color: var(--brand_blue-100);
}

.cyberscan-text .btn-hero:hover {
  background: var(--gray-100);
}

/* Features page mobile */
@media (max-width: 900px) {
  .features-hero {
    padding: 120px 20px 60px;
  }

  .features-hero h1 {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -0.5px;
  }

  .features-hero p {
    font-size: 15px;
  }

  .features-list {
    padding: 20px 24px 60px;
  }

  .feature-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .feature-section.reverse {
    direction: ltr;
  }

  .feature-visual {
    order: -1;
  }

  .feature-content h2 {
    font-size: 1.5rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .cyberscan-cta {
    padding: 60px 24px;
  }

  .cyberscan-text h2 {
    font-size: 1.4rem;
  }

  .cyberscan-text p {
    font-size: 0.95rem;
  }
}

/* ===========================
   SOLUTIONS PAGES
   =========================== */

/* Solutions Hero - Two Column Layout */
.solutions-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 160px 60px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-hero-content {
  text-align: left;
}

.solutions-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--black);
  margin: 0 0 24px;
}

.solutions-hero-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.solutions-hero-content .btn-hero {
  margin-top: 16px;
}

.solutions-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Solutions Challenges */
.solutions-challenges {
  padding: 80px 40px;
  background: var(--gray-50);
}

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

.solutions-challenges h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 48px;
  color: var(--black);
}

.solutions-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
  padding: 0 20px;
}

/* Solutions Testimonial */
.solutions-testimonial {
  padding: 80px 40px;
  background: var(--gray-50);
}

.solutions-testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
}

.solutions-testimonial h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
}

/* Testimonial with Photo */
.testimonial-with-photo {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-photo {
  display: flex;
  justify-content: center;
}

.testimonial-photo img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-content {
  text-align: left;
}

.testimonial-content blockquote {
  font-family: var(--font-body);
  /* font-size: 1.15rem; */
  font-style: italic;
  color: var(--gray-700);
  /* line-height: 1.6; */
  margin: 0 0 16px;
}

.testimonial-content blockquote::before {
  content: none;
}

.quote-badge {
  display: inline-block;
  background: var(--brand_blue-100);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.quote-highlight {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--brand_blue-100);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.testimonial-content .quote-attribution {
  margin-top: 16px;
  display: flex;
  place-content: space-between;
}

.testimonial-content .quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-content .quote-author strong {
  font-size: 1rem;
  color: var(--black);
}

/* Solutions mobile */
@media (max-width: 900px) {
  .solutions-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .solutions-hero-content {
    text-align: center;
    order: 1;
  }

  .solutions-hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .solutions-hero-image {
    order: 2;
  }

  .solutions-hero-image img {
    max-width: 90%;
  }

  .solutions-challenges {
    padding: 60px 24px;
  }

  .solutions-challenges h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .solutions-section-title {
    font-size: 1.5rem;
  }

  .solutions-testimonial {
    padding: 60px 24px;
  }

  .solutions-testimonial h2 {
    font-size: 1.5rem;
  }

  .testimonial-with-photo {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .testimonial-photo img {
    width: 120px;
    height: 120px;
  }

  .testimonial-content {
    text-align: center;
  }

  .testimonial-content .quote-author {
    align-items: center;
  }
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  padding: 160px 60px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.faq-hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px 100px;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--brand_blue-100);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand_red-100);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--gray-100);
}

.faq-answer {
  padding: 20px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.faq-answer a {
  color: var(--brand_red-100);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--brand_red-80);
}

/* FAQ Mobile */
@media (max-width: 768px) {
  .faq-hero {
    padding: 120px 24px 60px;
  }

  .faq-container {
    padding: 0 24px 60px;
  }

  .faq-category-title {
    font-size: 1.5rem;
  }

  .faq-item summary {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}

/* Pricing Hero */
.pricing-hero {
  padding: 180px 60px 80px;
  text-align: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url("/assets/images/landing_page_bg.avif");

  /* background-image: url("/assets/images/landing_page_bg.avif"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -60px;
  min-height: 50vh !important;

}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 32px;
}

.pricing-toggle-div {
  /* display: flex; */
  margin-top: 100px;
  justify-content: center;
  text-align: center;
}

/* Toggle */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.pricing-toggle-label {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
  transition: color 0.2s;
}

.pricing-toggle-label.active {
  color: var(--black);
  font-weight: 600;
}

.pricing-toggle {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.pricing-toggle.annual {
  background: var(--brand_blue-100);
}

.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.pricing-toggle.annual .pricing-toggle-knob {
  transform: translateX(28px);
}

.pricing-savings {
  font-size: 14px;
  color: var(--brand_green-100);
  font-weight: 500;
  margin-bottom: 40px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-card-icon {
  width: 40px;
  height: 40px;
}

.pricing-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand_blue-100);
  /* text-transform: uppercase; */
}

.pricing-card-description {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-card-price {
  margin-bottom: 8px;
}

.price-strikeout {
  font-size: 20px;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-current {
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
}

.price-period {
  font-size: 14px;
  color: var(--gray-500);
}

.price-offer {
  font-size: 13px;
  color: var(--brand_red-100);
  font-style: italic;
  margin-bottom: 24px;
}

.price-tba {
  font-size: 18px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 24px;
}

.pricing-features-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-feature-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-feature-item {
  /* display: flex; */
  /* align-items: flex-start; */
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
}

.pricing-feature-item::before {
  content: "✓";
  color: var(--brand_green-100);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-feature-item .coming-soon {
  font-style: italic;
  color: var(--gray-400);
  font-size: 13px;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn-hero {
  width: 100%;
  text-align: center;
}

.pricing-cta .btn-ghost {
  width: 100%;
  text-align: center;
  display: block;
  padding: 14px 28px;
  border: 2px solid var(--brand_blue-100);
  color: var(--brand_blue-100);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-cta .btn-ghost:hover {
  background: var(--brand_blue-10);
}

/* Add-ons Section */
.addons-section {
  background: var(--gray-100);
  padding: 80px 40px;
}

.addons-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 12px;
}

.addons-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.addon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.addon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.addon-icon {
  width: 32px;
  height: 32px;
}

.addon-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand_blue-100);
  /* text-transform: uppercase; */
}

.addon-description {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.addon-price {
  margin-top: auto;
}

/* Cyber Scan Section */
.cyberscan-section {
  background: var(--brand_blue-100);
  padding: 80px 40px;
  align-content: center;
}

.cyberscan-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;

}

.cyberscan-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: white;
  margin-bottom: 16px;
}

.cyberscan-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cyberscan-image img {
  max-width: 280px;
  border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 24px 60px;
  }

  .pricing-hero {
    padding: 60px 24px 30px;
  }

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

  .addons-section {
    padding: 60px 24px;
  }

  .cyberscan-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cyberscan-section {
    padding: 60px 24px;
  }

  .cyberscan-image img {
    max-width: 200px;
  }
}

/* Case Study Hero */
.case-study-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  align-items: center;
  /* background: linear-gradient(135deg, var(--brand_blue-10) 0%, var(--brand_blue-15) 100%); */
}

.case-study-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.case-study-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.case-study-photo {
  text-align: center;
}

.case-study-photo img {
  width: 100%;
  /* height: 220px; */
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.case-study-photo-caption {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray-600);
}

.case-study-photo-caption strong {
  display: block;
  color: var(--black);
  font-size: 17px;
}

/* Case Study Content */
.case-study-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.case-study-section {
  margin-bottom: 60px;
}

.case-study-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--brand_blue-100);
  margin-bottom: 24px;
}

.case-study-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.case-study-quote {
  background: var(--gray-100);
  border-left: 4px solid var(--brand_blue-100);
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 0 12px 12px 0;
}

.case-study-quote p {
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}

/* Stats Banner */
.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--brand_blue-100);
  padding: 48px 40px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 900px) {
  .case-study-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }

  .case-study-hero-content {
    order: 2;
  }

  .case-study-photo {
    order: 1;
  }

  .case-study-photo img {
    width: 100%;
  }

  .case-study-content {
    padding: 60px 24px;
  }

  .case-study-stats {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }

  .stat-value {
    font-size: 36px;
  }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 60px 40px;
  background: var(--gray-50);
  text-align: center;
  align-content: center;
}

.partners-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--black);
}

.partners-section p {
  color: var(--gray-500);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-height: 55px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partners-section {
    padding: 48px 24px;
  }

  .partners-grid {
    gap: 24px 32px;
  }

  .partner-logo {
    height: 40px;
  }

  .partner-logo img {
    max-height: 40px;
    max-width: 110px;
  }
}

/* ===== NEWS & UPDATES PAGE ===== */
.news-hero {
  padding: 180px 60px 80px;
  text-align: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)), url("/assets/images/landing_page_bg.avif");

  /* background-image: url("/assets/images/landing_page_bg.avif"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -60px;
}

.news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.news-hero h1 small {
  font-size: 0.85em;
}

.news-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.news-grid-section {
  padding: 60px 40px;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand_blue-100) 0%, var(--gray-100) 100%);
}

.news-card-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--brand_blue-500);
  opacity: 0.5;
}

.news-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand_blue-500);
  margin-bottom: 8px;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-card-summary {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-400);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.news-card-author::before {
  content: "•";
  margin-right: 16px;
}

/* ===== ARTICLE PAGE STYLES ===== */
.article-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  align-items: center;
}

.article-hero.no-image {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.article-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.article-hero-content h1 small {
  font-size: 0.85em;
}

.article-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand_blue-500);
  margin-bottom: 16px;
}

.article-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--gray-500);
}

.article-hero-image {
  text-align: center;
}

.article-hero-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-hero-image-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px;
}

.article-section {
  margin-bottom: 40px;
}

.article-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.article-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.article-lead {
  font-size: 18px !important;
  color: var(--gray-700) !important;
  font-weight: 500;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.article-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--brand_blue-500);
  border-radius: 50%;
}

.article-quote {
  background: var(--brand_blue-50);
  border-left: 4px solid var(--brand_blue-500);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.article-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.article-quote cite {
  font-size: 14px;
  color: var(--gray-500);
  font-style: normal;
}

.about-expert {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 12px;
  margin-top: 48px;
}

.article-figure {
  margin: 40px 0;
}

.article-figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

.article-figure figcaption a {
  color: var(--brand_blue-500);
  text-decoration: none;
}

.article-figure figcaption a:hover {
  text-decoration: underline;
}

.article-author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-top: 48px;
}

.article-author-bio .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author-bio .author-info strong {
  display: block;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 4px;
}

.article-author-bio .author-info p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

.article-video-section {
  background: var(--gray-50);
  padding: 60px 40px;
}

.article-video-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .article-video-section {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding: 140px 24px 60px;
  }

  .news-grid-section {
    padding: 40px 24px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }

  .article-hero-content {
    order: 2;
  }

  .article-hero-image {
    order: 1;
  }

  .article-hero-image img {
    max-width: 280px;
  }

  .article-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
  }

  .article-content {
    padding: 40px 24px;
  }

  .article-quote {
    padding: 20px 24px;
    margin: 24px 0;
  }
}


/* ==========================================
   404 GAME SECTION
   ========================================== */

.game-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 60px;
  background: #fff;
}

.game-iframe {
  width: 600px;
  height: 450px;
  border: none;
  border-radius: 12px;
  display: block;
  background: #000;
}

.game-hint {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

@media (max-width: 680px) {
  .game-iframe {
    width: 100%;
    height: 75vw;
    min-height: 260px;
  }
}


/* ==========================================
   LEGAL PAGES (Privacy, Terms)
   ========================================== */

.legal-hero {
  padding: 100px 60px 60px;
  background: linear-gradient(135deg, var(--brand_blue-10) 0%, var(--brand_green-10) 100%);
  text-align: center;
}

.legal-hero-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--brand_blue-100);
  margin-bottom: 20px;
}

.legal-hero-content p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-content {
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-updated {
  color: var(--gray-500);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand_blue-100);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand_blue-20);
}

.legal-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.legal-section ul ul {
  margin-top: 8px;
}

.legal-section a {
  color: var(--brand_blue-100);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--brand_blue-80);
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 80px 24px 40px;
  }

  .legal-hero-content h1 {
    font-size: 32px;
  }

  .legal-content {
    padding: 40px 24px;
  }

  .legal-section h2 {
    font-size: 24px;
  }
}


/* ==========================================
   PARTNERS PAGE
   ========================================== */

.partners-hero {
  padding: 100px 60px 60px;
  background: linear-gradient(135deg, var(--brand_blue-10) 0%, var(--brand_green-10) 100%);
  text-align: center;
}

.partners-hero-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--brand_blue-100);
  margin-bottom: 20px;
}

.partners-hero-content p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.partners-logos-section {
  padding: 60px 0;
  background: var(--white);
  align-content: center;
}

.partners-logos-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand_blue-100);
  text-align: center;
  margin-bottom: 40px;
}

.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.partner-logo {
  background: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.partner-logo img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
}

.partners-why-section {
  padding: 80px 0;
  background: var(--gray-100);
  align-content: center;
}

.partners-why-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand_blue-100);
  text-align: center;
  margin-bottom: 48px;
}

.partners-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.partner-reason-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.partner-reason-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.partner-reason-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.partner-reason-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
}

.partners-how-section {
  padding: 80px 0;
  background: var(--white);
}

.partners-how-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand_blue-100);
  text-align: center;
  margin-bottom: 48px;
}

.partners-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.partner-program-card {
  background: var(--gray-100);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.partner-program-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.partner-program-icon {
  width: 48px;
  height: 48px;
}

.partner-program-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand_blue-100);
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.partner-program-card>p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.partner-program-card .btn-primary {
  display: inline-block;
  background: var(--brand_red-100);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 32px;
  transition: background 0.3s ease;
}

.partner-program-card .btn-primary:hover {
  background: var(--accent_pressed);
}

.partner-program-steps h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.partner-program-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-program-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.partner-program-steps .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--brand_blue-100);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
}

@media (max-width: 900px) {

  .partners-reasons-grid,
  .partners-programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partners-hero {
    padding: 80px 24px 40px;
  }

  .partners-hero-content h1 {
    font-size: 32px;
  }

  .partners-container {
    padding: 0 24px;
  }

  .partners-logo-grid {
    gap: 24px;
  }

  .partner-logo {
    padding: 16px 24px;
  }

  .partner-logo img {
    max-height: 40px;
  }
}


/* ==========================================
   CONTACT FORM PAGE
   ========================================== */

.contact-hero {
  padding: 100px 60px 60px;
  background: linear-gradient(135deg, var(--brand_blue-10) 0%, var(--brand_green-10) 100%);
  text-align: center;
}

.contact-hero-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--brand_blue-100);
  margin-bottom: 20px;
}

.contact-hero-content p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-section {
  padding: 60px 40px 80px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

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

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-form .required {
  color: var(--brand_red-100);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand_blue-80);
  box-shadow: 0 0 0 3px var(--brand_blue-20);
}

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

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235A5B60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
}

.contact-form .checkbox-group {
  margin-bottom: 16px;
}

.contact-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}

.contact-form .checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-form .checkbox-label span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
}

.contact-form .checkbox-label a {
  color: var(--brand_blue-100);
  text-decoration: underline;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--brand_red-100);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.contact-form .btn-submit:hover {
  background: var(--accent_pressed);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--gray-100);
  padding: 32px;
  border-radius: var(--radius);
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--brand_blue-100);
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--brand_blue-100);
  text-decoration: underline;
}

.contact-social-links {
  display: flex;
  gap: 16px;
}

.contact-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  color: var(--brand_blue-100);
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-social-links .social-link:hover {
  background: var(--brand_blue-100);
  color: var(--white);
}

.contact-social-links .social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-wrapper {
    order: -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 24px 40px;
  }

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-form-section {
    padding: 40px 24px 60px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

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

  .contact-info-wrapper {
    flex-direction: column;
  }
}