/* ── Montserrat Font Faces ── */
@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Global Theme & Color Tokens ── */
:root {
  /* Dark Mode Default Tokens */
  --bg-dark: #030806;
  --bg-card: rgba(8, 24, 19, 0.75);
  --bg-card-hover: rgba(12, 38, 29, 0.92);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --cyan: #c3ff00;
  /* Design 2 / Design 3 Neon Lime */
  --lime: #8ee000;
  /* Logo Vivid Accent */
  --emerald: #0f4032;
  /* Dark Emerald */
  --neon-lime: #c3ff00;
  /* Design 3 Neon */
  --vivid-green: #8ee000;
  --cyber-emerald: #10b981;

  --white: #ffffff;
  --text-main: #ffffff;
  --muted: #cbd5e1;
  --text-muted: #cbd5e1;
  --text-dim: #9ca3af;

  --border-line: rgba(195, 255, 0, 0.16);
  --border-hover: rgba(195, 255, 0, 0.48);
  --border-glass: rgba(195, 255, 0, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --glow-cyan: 0 0 25px rgba(52, 211, 153, 0.22);
  --glow-lime: 0 0 25px rgba(16, 185, 129, 0.22);
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.65);

  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-full: 9999px;

  --container: min(1240px, calc(100% - 48px));
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Mode Token & Element Overrides */
[data-theme="light"] {
  --bg-dark: #ebf2ed;
  --bg-card: #f8fbf9;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(0, 0, 0, 0.03);

  --cyan: #16a34a;
  --lime: #15803d;
  --neon-lime: #16a34a;
  --vivid-green: #15803d;

  --white: #061710;
  --text-main: #061710;
  --muted: #2d443a;
  --text-muted: #2d443a;
  --text-dim: #546e63;

  --border-line: rgba(22, 163, 74, 0.25);
  --border-hover: rgba(22, 163, 74, 0.6);
  --border-glass: rgba(22, 163, 74, 0.22);
  --border-subtle: rgba(0, 0, 0, 0.08);

  --glow-cyan: 0 0 25px rgba(22, 163, 74, 0.15);
  --glow-lime: 0 0 25px rgba(22, 163, 74, 0.15);
  --shadow-card: 0 15px 35px rgba(10, 30, 22, 0.06);
}

[data-theme="light"] .ambient-bg {
  opacity: 0.08;
}

[data-theme="light"] #site-preloader {
  background: #ebf2ed;
}

[data-theme="light"] .header {
  background: rgba(235, 242, 237, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .header.is-scrolled {
  background: rgba(245, 249, 246, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav-link {
  color: #2b453a;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: #061710;
}

[data-theme="light"] .theme-toggle-btn,
[data-theme="light"] .lang-toggle-btn {
  background: #ffffff;
  border: 1px solid rgba(22, 163, 74, 0.28);
  color: #16a34a;
  box-shadow: 0 4px 12px rgba(10, 30, 22, 0.06);
}

[data-theme="light"] .lang-toggle-btn svg,
[data-theme="light"] .theme-toggle-btn svg {
  color: #16a34a;
}

[data-theme="light"] .theme-toggle-btn:hover,
[data-theme="light"] .lang-toggle-btn:hover {
  background: rgba(22, 163, 74, 0.1);
  border-color: #16a34a;
  color: #15803d;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.2);
}

[data-theme="light"] .sub-tag {
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.25);
}

[data-theme="light"] .section-header h2 {
  color: #061710;
}

[data-theme="light"] .section-header p {
  color: #2d443a;
}

[data-theme="light"] .hero-clean {
  background: radial-gradient(circle at 75% 30%, rgba(22, 163, 74, 0.1) 0%, #f6faf7 75%);
}

[data-theme="light"] .hero-subtag {
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.25);
}

[data-theme="light"] .hero-title {
  color: #061710;
}

[data-theme="light"] .gradient-headline {
  background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: none;
}

[data-theme="light"] .hero-description {
  color: #2d443a;
}

[data-theme="light"] .metric-number {
  color: #061710;
}

[data-theme="light"] .metric-label {
  color: #546e63;
}

[data-theme="light"] .btn-hero-glass {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
  color: #061710;
}

[data-theme="light"] .btn-hero-glass:hover {
  background: rgba(22, 163, 74, 0.1);
  border-color: #16a34a;
  color: #16a34a;
}

[data-theme="light"] .ball-spinner-wrapper {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.2);
}

/* Ecosystem Roles Rich Glass Cards in Light Theme */
[data-theme="light"] .role-grid-card {
  background: rgba(8, 22, 16, 0.92) !important;
  border-color: rgba(195, 255, 0, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

[data-theme="light"] .role-grid-card:hover {
  border-color: #c3ff00;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 30px rgba(195, 255, 0, 0.2);
}

[data-theme="light"] .card-bg-overlay {
  display: block !important;
  opacity: 0.55 !important;
}

[data-theme="light"] .card-bg-player .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 13, 0.4) 0%, rgba(4, 12, 9, 0.9) 100%),
    url('assessits/images/player_card_bg_1785069679622.png');
}

[data-theme="light"] .card-bg-coach .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 13, 0.4) 0%, rgba(4, 12, 9, 0.9) 100%),
    url('assessits/images/coach_card_bg_1785069694184.png');
}

[data-theme="light"] .card-bg-agent .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 13, 0.4) 0%, rgba(4, 12, 9, 0.9) 100%),
    url('assessits/images/agent_card_bg_1785069706766.png');
}

[data-theme="light"] .card-bg-club .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 13, 0.4) 0%, rgba(4, 12, 9, 0.9) 100%),
    url('assessits/images/club_card_bg_1785069719702.png');
}

[data-theme="light"] .player-tag {
  color: #c3ff00;
  background: rgba(195, 255, 0, 0.12);
  border-color: rgba(195, 255, 0, 0.3);
}

[data-theme="light"] .coach-tag {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="light"] .agent-tag {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

[data-theme="light"] .club-tag {
  color: #c084fc;
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

[data-theme="light"] .player-icon {
  color: #c3ff00;
  background: rgba(195, 255, 0, 0.12);
  border-color: rgba(195, 255, 0, 0.25);
}

[data-theme="light"] .coach-icon {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

[data-theme="light"] .agent-icon {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
}

[data-theme="light"] .club-icon {
  color: #c084fc;
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
}

[data-theme="light"] .role-card-title {
  color: #ffffff;
}

[data-theme="light"] .role-card-desc {
  color: #a4b8b0;
}

[data-theme="light"] .role-card-features li {
  color: #e2eae5;
}

[data-theme="light"] .role-card-features svg {
  color: #c3ff00;
}

[data-theme="light"] .btn-card-link {
  background: rgba(195, 255, 0, 0.1);
  border-color: rgba(195, 255, 0, 0.25);
  color: #c3ff00;
}

[data-theme="light"] .role-grid-card:hover .btn-card-link {
  background: #c3ff00;
  border-color: #c3ff00;
  color: #030806;
  box-shadow: 0 0 25px rgba(195, 255, 0, 0.45);
}

/* Scroll Showcase Light Theme */
[data-theme="light"] .scroll-showcase-section {
  background: #111e17;
}

[data-theme="light"] .frame-vignette-overlay {
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 30, 23, 0.2) 0%, rgba(17, 30, 23, 0.75) 90%),
    linear-gradient(180deg, rgba(235, 242, 237, 0.9) 0%, transparent 20%, transparent 80%, rgba(235, 242, 237, 0.9) 100%);
}

[data-theme="light"] .story-step-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: 0 25px 60px rgba(10, 30, 22, 0.18);
  backdrop-filter: blur(16px);
}

[data-theme="light"] .story-step-title {
  color: #05140d;
}

[data-theme="light"] .story-step-desc {
  color: #2e4438;
}

[data-theme="light"] .stat-lbl {
  color: #546e63;
}

/* Focus Regions Light Theme */
[data-theme="light"] .focus-regions-section {
  background: radial-gradient(circle at 50% 40%, rgba(22, 163, 74, 0.08) 0%, #f6faf7 80%);
}

[data-theme="light"] .focus-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .focus-card-title {
  color: #05140d;
}

[data-theme="light"] .focus-card-desc {
  color: #2e4438;
}

[data-theme="light"] .country-pill {
  background: #f1f5f3;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .focus-highlights-list strong {
  color: #05140d;
}

[data-theme="light"] .focus-highlights-list p {
  color: #2e4438;
}

[data-theme="light"] .focus-corridor-banner {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.4);
  color: #15803d;
  box-shadow: 0 10px 25px rgba(10, 30, 22, 0.08);
}

/* Download App Light Theme */
[data-theme="light"] .download-banner-glass {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.25);
  box-shadow: 0 20px 50px rgba(10, 30, 22, 0.08);
}

[data-theme="light"] .download-text-col h2 {
  color: #05140d;
}

[data-theme="light"] .download-text-col p {
  color: #2e4438;
}

[data-theme="light"] .store-badge-card {
  background: #f1f5f3;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .store-badge-card:hover {
  background: rgba(22, 163, 74, 0.12);
  border-color: #16a34a;
}

[data-theme="light"] .qr-glow-card {
  background: #e6f4ed;
  border-color: rgba(22, 163, 74, 0.3);
}

/* Footer Light Theme */
[data-theme="light"] .footer-modern {
  background: #e6efe9;
  border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-link-group h4 {
  color: #05140d;
}

[data-theme="light"] .footer-link-group a {
  color: #2e4438;
}

[data-theme="light"] .footer-link-group a:hover {
  color: #16a34a;
}

[data-theme="light"] .footer-bottom-row {
  color: #546e63;
  border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-socials a {
  color: #2e4438;
}

[data-theme="light"] .footer-socials a:hover {
  color: #16a34a;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(195, 255, 0, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(15, 64, 50, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(142, 224, 0, 0.06) 0%, transparent 40%);
}

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

/* Shared Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.sub-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(195, 255, 0, 0.08);
  border: 1px solid rgba(195, 255, 0, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  color: var(--muted);
  font-size: 17px;
}

/* ==========================================================================
   1. PRELOADER (Design 3 100% Exact)
   ========================================================================== */
#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #030906;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
}

#site-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  max-width: 440px;
  width: 100%;
}

.preloader-logo {
  height: 160px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  margin-bottom: 28px;
  animation: logoPulse 2s ease-in-out infinite alternate;
}

[data-theme="light"] .preloader-logo {
  filter: none;
}

@keyframes logoPulse {
  0% {
    transform: scale(0.97);
    opacity: 0.88;
  }

  100% {
    transform: scale(1.03);
    opacity: 1;
  }
}

.preloader-ball-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
}

.preloader-ball-svg {
  width: 100%;
  height: 100%;
  animation: ballSpin 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.preloader-orbit-svg {
  position: absolute;
  inset: -15px;
  width: 120px;
  height: 120px;
  animation: orbitSpin 3.5s linear infinite;
}

@keyframes ballSpin {
  0% {
    transform: rotate(0deg) scale(0.95);
  }

  50% {
    transform: rotate(180deg) scale(1.05);
  }

  100% {
    transform: rotate(360deg) scale(0.95);
  }
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.preloader-tagline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--neon-lime);
  margin-bottom: 6px;
}

.preloader-status {
  font-size: 0.95rem;
  color: #a3b8b0;
  margin-bottom: 20px;
}

.preloader-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(195, 255, 0, 0.2);
  margin-bottom: 12px;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c3ff00, #8ee000);
  border-radius: 999px;
  box-shadow: 0 0 12px #c3ff00;
  transition: width 0.15s ease-out;
}

.preloader-count {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--neon-lime);
  font-weight: 700;
}

/* ==========================================================================
   2. HEADER NAVBAR (Design 2 100% Exact + Light/Dark Switcher Button)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: all 0.35s ease;
  backdrop-filter: blur(16px);
  background: rgba(3, 9, 7, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.is-scrolled {
  padding: 10px 0;
  background: rgba(3, 9, 7, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(195, 255, 0, 0.18);
}

.header.header-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 92px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease, transform 0.25s ease;
  filter: none;
  transform: scale(1.2);
  transform-origin: left center;
}

[dir="rtl"] .brand-logo {
  transform-origin: right center;
}

.header.is-scrolled .brand-logo {
  height: 92px;
  transform: scale(1.2);
}

[data-theme="light"] .brand-logo {
  filter: none;
}

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

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Light / Dark Mode Toggle Button */
.theme-toggle-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-line);
  color: var(--cyan);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: rgba(195, 255, 0, 0.15);
  border-color: var(--cyan);
  transform: scale(1.08) rotate(15deg);
  box-shadow: var(--glow-cyan);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  position: absolute;
}

[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="light"] .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="light"] .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

/* Language Toggle Button Style */
.lang-toggle-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-line);
  color: var(--cyan);
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Cairo', var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-toggle-btn:hover {
  background: rgba(195, 255, 0, 0.15);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.lang-toggle-btn svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), #88d400);
  color: #030907;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(195, 255, 0, 0.3);
}

.btn-glow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(195, 255, 0, 0.55);
}

.btn-glow:hover svg {
  transform: translateX(4px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

[data-theme="light"] .mobile-toggle {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
}

[data-theme="light"] .mobile-toggle span {
  background: #061710;
}

/* ==========================================================================
   3. HERO SECTION (Design 3 Clean Hero 100% Exact)
   ========================================================================== */
.hero-clean {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 60px;
  background: radial-gradient(circle at 75% 30%, rgba(12, 42, 30, 0.4) 0%, #030806 75%);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 50px;
  align-items: center;
}

.hero-subtag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--neon-lime);
  background: rgba(195, 255, 0, 0.08);
  border: 1px solid rgba(195, 255, 0, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.gradient-headline {
  background: linear-gradient(135deg, #c3ff00 0%, #00ff87 50%, #34d399 100%);
  color: #c3ff00;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none;
  filter: none;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 44px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #c3ff00 0%, #00ff87 100%);
  color: #030806;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(195, 255, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e2ff66;
  flex-shrink: 0;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #d5ff33 0%, #34d399 100%);
  color: #000000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 28px rgba(195, 255, 0, 0.35), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-hero-glass:hover {
  background: rgba(195, 255, 0, 0.15);
  border-color: #c3ff00;
  color: #c3ff00;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(195, 255, 0, 0.25);
}

.btn-hero-form {
  background: rgba(195, 255, 0, 0.07);
  border: 1px solid rgba(195, 255, 0, 0.28);
  color: var(--neon-lime);
}

.btn-hero-form:hover {
  background: rgba(195, 255, 0, 0.18);
  border-color: var(--neon-lime);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(195, 255, 0, 0.3);
}

.hero-metrics-strip,
.story-step-stat,
.focus-stat-item,
.focus-stat-wrapper,
.metric-item,
.team-stats-row {
  display: none !important;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.metric-number span {
  color: var(--neon-lime);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 4px;
}

/* Hero Visual 100% Design 3 Exact (Pristine App Mockup Drop Shadow without background box) */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 35px rgba(195, 255, 0, 0.2));
  background: none;
  padding: 0;
  border: none;
}

.app-image-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 45px rgba(195, 255, 0, 0.35));
}

.app-screen-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

/* ==========================================================================
   4. SPINNING FOOTBALL SVG SEPARATOR (Design 2 100% Exact)
   ========================================================================== */
.ball-separator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto;
  padding: 0;
  width: 100%;
  max-width: var(--container);
  z-index: 2;
}

.sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(195, 255, 0, 0.35) 50%, transparent);
}

.ball-spinner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 24px;
  background: rgba(3, 9, 7, 0.95);
  border: 1px solid var(--border-line);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(195, 255, 0, 0.3);
}

.ball-spinner-wrapper::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(195, 255, 0, 0.4);
  animation: spinBallReverse 12s linear infinite;
}

.spinning-ball {
  width: 36px;
  height: 36px;
  object-fit: contain;
  animation: spinBall 6s linear infinite;
  filter: drop-shadow(0 0 8px rgba(195, 255, 0, 0.8));
}

@keyframes spinBall {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinBallReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* ==========================================================================
   5. ECOSYSTEM ROLES SECTION (Design 3 100% Exact "Built for the 4 Pillars of Football")
   ========================================================================== */
.roles-grid-section {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.roles-4grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 25px;
}

.role-grid-card {
  position: relative;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 440px;
}

.role-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-lime), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 3;
}

.role-grid-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), var(--glow-lime);
}

.role-grid-card:hover::before {
  opacity: 1;
}

.card-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0.45;
}

.role-grid-card:hover .card-bg-overlay {
  transform: scale(1.08);
  opacity: 0.65;
}

.card-content-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 1. Player Card Background */
.card-bg-player {
  background: linear-gradient(180deg, rgba(7, 26, 19, 0.92) 0%, rgba(4, 11, 8, 0.96) 100%);
}

.card-bg-player .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(7, 26, 19, 0.75) 0%, rgba(4, 11, 8, 0.95) 100%),
    url('assessits/images/player_card_bg_1785069679622.png');
}

/* 2. Coach Card Background */
.card-bg-coach {
  background: linear-gradient(180deg, rgba(8, 28, 42, 0.92) 0%, rgba(4, 11, 8, 0.96) 100%);
}

.card-bg-coach .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(8, 28, 42, 0.75) 0%, rgba(4, 11, 8, 0.95) 100%),
    url('assessits/images/coach_card_bg_1785069694184.png');
}

/* 3. Agent Card Background */
.card-bg-agent {
  background: linear-gradient(180deg, rgba(32, 24, 10, 0.92) 0%, rgba(4, 11, 8, 0.96) 100%);
}

.card-bg-agent .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(32, 24, 10, 0.75) 0%, rgba(4, 11, 8, 0.95) 100%),
    url('assessits/images/agent_card_bg_1785069706766.png');
}

/* 4. Club Card Background */
.card-bg-club {
  background: linear-gradient(180deg, rgba(28, 12, 38, 0.92) 0%, rgba(4, 11, 8, 0.96) 100%);
}

.card-bg-club .card-bg-overlay {
  background-image:
    linear-gradient(180deg, rgba(28, 12, 38, 0.75) 0%, rgba(4, 11, 8, 0.95) 100%),
    url('assessits/images/club_card_bg_1785069719702.png');
}

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

.role-card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(195, 255, 0, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--neon-lime);
}

.player-tag {
  color: var(--neon-lime);
  border-color: rgba(195, 255, 0, 0.3);
}

.coach-tag {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.08);
}

.agent-tag {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}

.club-tag {
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.08);
}

.role-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(15, 64, 50, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: var(--neon-lime);
}

.role-avatar-circle svg {
  width: 24px;
  height: 24px;
}

.player-icon {
  color: var(--neon-lime);
  background: rgba(195, 255, 0, 0.1);
  border-color: rgba(195, 255, 0, 0.3);
}

.coach-icon {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.agent-icon {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.club-icon {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

.role-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.role-card-desc {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.62;
  margin-bottom: 28px;
}

.role-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  margin-top: auto;
}

.role-card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

.role-card-features svg {
  width: 18px;
  height: 18px;
  color: var(--neon-lime);
  flex-shrink: 0;
}

.btn-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(195, 255, 0, 0.08);
  border: 1px solid rgba(195, 255, 0, 0.28);
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.btn-card-link svg {
  width: 18px;
  height: 18px;
  color: #c3ff00;
  transition: transform 0.3s ease;
}

.role-grid-card:hover .btn-card-link {
  background: linear-gradient(135deg, #c3ff00 0%, #00ff87 100%);
  border-color: #e2ff66;
  color: #030806;
  box-shadow: 0 0 25px rgba(195, 255, 0, 0.5);
}

.role-grid-card:hover .btn-card-link svg {
  color: #030806;
  transform: translateX(5px);
}

/* ==========================================================================
   6. FRAME SHOWCASE SECTION (Design 3 100% Exact Scroll Animation)
   ========================================================================== */
.scroll-showcase-section {
  position: relative;
  padding: 0;
  height: 380vh;
  background: #030806;
  z-index: 2;
}

.sticky-scroll-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-frame-viewport {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-screen-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.active-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-vignette-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 11, 8, 0.45) 0%, rgba(4, 11, 8, 0.95) 90%),
    linear-gradient(180deg, rgba(4, 11, 8, 0.9) 0%, transparent 35%, rgba(4, 11, 8, 0.95) 100%);
}

.story-cards-container {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 24px;
}

.story-step-card {
  position: absolute;
  max-width: 540px;
  width: calc(100% - 48px);
  background: rgba(6, 20, 15, 0.92);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 54px 58px;
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(195, 255, 0, 0.22);
  opacity: 0;
  transform: translateY(35px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-step-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.story-step-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--neon-lime);
  background: rgba(195, 255, 0, 0.1);
  border: 1px solid var(--border-glass);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.story-step-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.story-step-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.story-step-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
}

.stat-big {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--neon-lime);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dim);
}

/* ==========================================================================
   7. DOWNLOAD APP SECTION (Design 2 100% Exact)
   ========================================================================== */
.download-app-section {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.download-banner-glass {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.download-text-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.download-text-col p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 540px;
}

.store-badge-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.store-badge-card:hover {
  background: rgba(195, 255, 0, 0.12);
  border-color: var(--neon-lime);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(195, 255, 0, 0.25);
}

.store-logo-svg {
  flex-shrink: 0;
  display: block;
}

.store-logo-img {
  height: 32px;
  width: auto;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
}

.store-badge-text small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.store-badge-text strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
}

.download-qr-col {
  display: flex;
  justify-content: center;
}

.qr-glow-card {
  background: rgba(15, 64, 50, 0.4);
  border: 1px solid var(--border-line);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--glow-cyan);
}

.qr-image-wrapper {
  background: #ffffff;
  padding: 12px;
  border-radius: var(--radius-md);
  display: flex;
}

.qr-img {
  width: 160px;
  height: 160px;
  display: block;
}

.qr-scan-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   8. FOOTER (Design 2 Modern 100% Exact)
   ========================================================================== */
.footer-modern {
  background: #030907;
  border-top: 1px solid var(--border-line);
  padding: 70px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand-meta .brand-logo {
  height: 96px;
  max-width: 320px;
  object-fit: contain;
}

.footer-brand-meta p {
  color: var(--muted);
  font-size: 15px;
  margin: 18px 0 24px;
  max-width: 320px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.footer-link-group h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-link-group a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

.footer-link-group a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.footer-terms-link {
  justify-self: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-terms-link:hover {
  color: var(--cyan);
}

.powered-by-qtech {
  justify-self: end;
}

.powered-by-qtech {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(195, 255, 0, 0.08);
  border: 1px solid rgba(195, 255, 0, 0.2);
  padding: 6px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.powered-by-qtech:hover {
  background: rgba(195, 255, 0, 0.16);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(195, 255, 0, 0.3);
}

.powered-by-qtech strong {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.04em;
}

[data-theme="light"] .powered-by-qtech {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
  color: #2d443a;
}

[data-theme="light"] .powered-by-qtech:hover {
  background: rgba(22, 163, 74, 0.15);
  border-color: #16a34a;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

[data-theme="light"] .powered-by-qtech strong {
  color: #16a34a;
}

/* ==========================================================================
   STRATEGIC FOCUS REGIONS SECTION (Design 3 100% Exact)
   ========================================================================== */
.focus-regions-section {
  position: relative;
  padding: 30px 0;
  background: radial-gradient(circle at 50% 40%, rgba(12, 38, 28, 0.45) 0%, #030806 80%);
  overflow: hidden;
  z-index: 2;
}

.focus-container-inner {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin-inline: auto;
}

.focus-2grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 38px;
}

@media (max-width: 1024px) {
  .focus-2grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.focus-card {
  position: relative;
  background: rgba(5, 18, 13, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

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

.gulf-card:hover {
  border-color: rgba(195, 255, 0, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.8), 0 0 35px rgba(195, 255, 0, 0.18);
}

.europe-card:hover {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.8), 0 0 35px rgba(96, 165, 250, 0.18);
}

.africa-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.18);
}

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

.focus-flag-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(195, 255, 0, 0.1);
  border: 1px solid rgba(195, 255, 0, 0.28);
  border-radius: var(--radius-full);
}

.europe-badge {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.28);
}

.region-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--neon-lime);
}

.europe-tag {
  color: #60a5fa;
}

.region-code {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.europe-code {
  color: rgba(96, 165, 250, 0.7);
}

.africa-badge {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.28);
}

.africa-tag {
  color: #f59e0b;
}

.africa-code {
  color: rgba(245, 158, 11, 0.75);
}

.focus-card-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.focus-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.country-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.country-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.gulf-card .country-pill:hover {
  background: rgba(195, 255, 0, 0.14);
  border-color: rgba(195, 255, 0, 0.35);
  color: var(--neon-lime);
}

.europe-card .country-pill:hover {
  background: rgba(96, 165, 250, 0.14);
  border-color: rgba(96, 165, 250, 0.35);
  color: #60a5fa;
}

.africa-card .country-pill:hover {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: #f59e0b;
}

.focus-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: auto;
}

.focus-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.focus-highlights-list strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.focus-highlights-list p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.38;
  margin: 0;
}

.focus-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.focus-stat-item {
  display: flex;
  flex-direction: column;
}

.focus-stat-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--neon-lime);
}

.europe-text {
  color: #60a5fa;
}

.focus-stat-lbl {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 2px;
}

.focus-corridor-banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(8, 26, 19, 0.85);
  border: 1px solid rgba(195, 255, 0, 0.28);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-lime);
  text-align: center;
}



/* ==========================================================================
   PARTNERSHIP & COLLABORATION FORM SECTION
   ========================================================================== */
.partnership-section {
  position: relative;
  padding: 30px 0;
  background: radial-gradient(circle at 50% 30%, rgba(12, 42, 30, 0.5) 0%, #030806 85%);
  z-index: 2;
}

.partnership-container-inner {
  max-width: 920px;
  margin-inline: auto;
}

.partnership-glass-card {
  margin-top: 40px;
  background: rgba(5, 18, 13, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(195, 255, 0, 0.08);
}

.partnership-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.label-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(195, 255, 0, 0.15);
  border: 1px solid var(--neon-lime);
  color: var(--neon-lime);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.required-star {
  color: var(--neon-lime);
  font-weight: 800;
}

/* Strict SVG Sizing Guard for Partnership Form */
.partnership-form svg {
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-block;
}

.partnership-form .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  color: var(--text-dim);
  pointer-events: none;
  transition: color var(--transition-fast);
}

[dir="rtl"] .partnership-form .input-icon {
  left: auto;
  right: 16px;
}

.input-icon-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

[dir="rtl"] .form-input {
  padding: 14px 46px 14px 16px;
}

.form-input:focus {
  outline: none;
  background: rgba(195, 255, 0, 0.04);
  border-color: var(--neon-lime);
  box-shadow: 0 0 16px rgba(195, 255, 0, 0.2);
}

.form-input:focus+.input-icon {
  color: var(--neon-lime);
}

/* Objective Cards Options */
.objective-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.objective-option-card {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.objective-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.card-option-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.objective-option-card:hover .card-option-content {
  border-color: rgba(195, 255, 0, 0.4);
  background: rgba(195, 255, 0, 0.04);
}

.objective-checkbox:checked+.card-option-content {
  background: rgba(195, 255, 0, 0.08);
  border-color: var(--neon-lime);
  box-shadow: 0 0 20px rgba(195, 255, 0, 0.15);
}

.checkbox-indicator {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.checkbox-indicator svg {
  width: 14px;
  height: 14px;
  color: #030806;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-fast);
}

.objective-checkbox:checked+.card-option-content .checkbox-indicator {
  background: var(--neon-lime);
  border-color: var(--neon-lime);
}

.objective-checkbox:checked+.card-option-content .checkbox-indicator svg {
  opacity: 1;
  transform: scale(1);
}

.option-text-group {
  display: flex;
  flex-direction: column;
}

.option-text-group strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.option-subtext {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  resize: vertical;
  min-height: 90px;
  transition: all var(--transition-fast);
}

.form-textarea:focus {
  outline: none;
  background: rgba(195, 255, 0, 0.04);
  border-color: var(--neon-lime);
  box-shadow: 0 0 16px rgba(195, 255, 0, 0.2);
}

/* File Upload Dropzone */
.file-upload-dropzone {
  position: relative;
  margin-top: 10px;
  border: 2px dashed rgba(195, 255, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px;
  background: rgba(195, 255, 0, 0.02);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-upload-dropzone:hover,
.file-upload-dropzone.dragover {
  border-color: var(--neon-lime);
  background: rgba(195, 255, 0, 0.06);
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(195, 255, 0, 0.1);
  border: 1px solid rgba(195, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-lime);
}

.upload-icon-circle svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
}

.dropzone-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}

.dropzone-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.file-selected-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--neon-lime);
  font-size: 0.88rem;
  font-weight: 700;
}

.file-selected-info svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.btn-remove-file {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0 4px;
}

/* Contact Inputs 3-Grid */
.contact-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.form-submit-row {
  margin-top: 10px;
}

.btn-submit-glow {
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #c3ff00 0%, #8ae600 100%);
  border: none;
  border-radius: var(--radius-full);
  color: #040b08;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(195, 255, 0, 0.4);
  transition: all var(--transition-fast);
}

.btn-submit-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(195, 255, 0, 0.6);
}

.btn-submit-glow svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn-submit-glow:hover svg {
  transform: translateX(4px);
}

/* Form Success Confirmation Banner */
.form-success-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(195, 255, 0, 0.12);
  border: 1px solid var(--neon-lime);
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

.success-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neon-lime);
  color: #040b08;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-text-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.success-text-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Light Theme Overrides for Form */
[data-theme="light"] .partnership-section {
  background: radial-gradient(circle at 50% 30%, rgba(22, 163, 74, 0.08) 0%, #f6faf7 85%);
}

[data-theme="light"] .partnership-glass-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px rgba(10, 30, 22, 0.07);
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .card-option-content {
  background: #f1f5f3;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus {
  background: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.2);
}

[data-theme="light"] .file-upload-dropzone {
  border-color: rgba(22, 163, 74, 0.4);
  background: rgba(22, 163, 74, 0.03);
}

[data-theme="light"] .file-upload-dropzone:hover {
  background: rgba(22, 163, 74, 0.08);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
/* RTL Arabic Typography & Orientation Overrides */
[dir="rtl"] {
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .section-header h2,
[dir="rtl"] .role-card-title,
[dir="rtl"] .story-step-title,
[dir="rtl"] .focus-card-title,
[dir="rtl"] .download-text-col h2,
[dir="rtl"] .footer-link-group h4 {
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

[dir="rtl"] .btn-glow svg,
[dir="rtl"] .btn-hero-primary svg,
[dir="rtl"] .btn-card-link svg {
  transform: scaleX(-1);
}

[dir="rtl"] .btn-glow:hover svg,
[dir="rtl"] .btn-hero-primary:hover svg,
[dir="rtl"] .btn-card-link:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

[dir="rtl"] .story-cards-container {
  padding-left: 0;
  padding-right: 24px;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }

  .brand-logo {
    height: 76px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-metrics-strip {
    justify-content: center;
  }

  .roles-4grid {
    grid-template-columns: 1fr;
  }

  .focus-2grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .objective-options-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .download-banner-glass {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-text-col p {
    margin-inline: auto;
  }

  .store-badge-row {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-actions .btn-glow {
    display: none !important;
  }

  .brand-logo {
    height: 48px;
    max-width: 150px;
  }

  .header.is-scrolled .brand-logo {
    height: 48px;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-toggle-btn {
    padding: 5px 10px;
    font-size: 13px;
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-menu.mobile-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background: rgba(3, 9, 7, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    border-radius: 20px;
    border: 1px solid rgba(195, 255, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    z-index: 99;
  }

  [data-theme="light"] .nav-menu.mobile-open {
    background: rgba(235, 242, 237, 0.98);
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  .mobile-toggle {
    display: flex !important;
    width: 36px;
    height: 36px;
  }

  .hero-clean {
    min-height: 100vh;
    padding: 130px 0 40px;
  }

  .hero-title {
    font-size: clamp(26px, 7.5vw, 38px);
    line-height: 1.15;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-glass {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center;
    padding: 14px 20px;
  }

  .hero-metrics-strip {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-line);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .metric-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
  }

  .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .roles-4grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .role-grid-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .role-card-title {
    font-size: 24px;
  }

  .story-cards-container {
    padding-left: 0;
    padding-right: 0;
  }

  .story-step-card {
    max-width: calc(100% - 24px);
    margin-inline: 12px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .story-step-title {
    font-size: 22px;
  }

  .download-banner-glass {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .store-badge-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .store-badge-card {
    width: 100%;
    justify-content: center;
  }

  .section,
  .roles-grid-section,
  .download-app-section,
  .focus-regions-section,
  .partnership-section {
    padding: 20px 0;
  }

  .scroll-showcase-section {
    padding: 0;
  }

  .focus-2grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-top: 24px;
  }

  .focus-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .focus-card-title {
    font-size: 1.35rem;
  }

  .country-pills-list {
    gap: 6px;
    margin-bottom: 18px;
  }

  .country-pill {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .focus-card-footer {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .focus-corridor-banner {
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .partnership-glass-card {
    margin-top: 24px;
    padding: 24px 16px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  }

  .partnership-form {
    gap: 20px;
  }

  .objective-options-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .form-label {
    font-size: 0.88rem;
    gap: 8px;
  }

  .label-step-num {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.88rem;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 10px;
  }

  .file-upload-dropzone {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .dropzone-prompt p {
    font-size: 0.85rem;
  }

  .dropzone-prompt span {
    font-size: 0.75rem;
  }

  .btn-submit-form {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 0.95rem;
    border-radius: 999px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer-brand-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-meta .brand-logo {
    height: 72px;
  }

  .footer-brand-meta p {
    margin-inline: auto;
  }

  .status-indicator {
    justify-content: center;
  }

  .footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 40px;
    max-width: 125px;
  }

  .lang-toggle-btn {
    padding: 4px 8px;
    font-size: 12px;
  }

  .theme-toggle-btn {
    width: 32px;
    height: 32px;
  }

  .mobile-toggle {
    width: 32px;
    height: 32px;
  }

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

  .metric-number {
    font-size: 28px;
  }
}

/* ==========================================================================
   Subpage Design Extensions — Custom Feature Cards, Timelines, FAQs & Specs
   ========================================================================== */

.subpage-hero-banner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.timeline-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.timeline-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-card), var(--glow-cyan);
}

.timeline-step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 12px;
}

.timeline-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.timeline-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature Matrix Cards */
.feature-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.feature-matrix-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-smooth);
}

.feature-matrix-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-card), var(--glow-cyan);
  transform: translateY(-4px);
}

.matrix-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(195, 255, 0, 0.12);
  border: 1px solid var(--border-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.matrix-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.matrix-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.matrix-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(195, 255, 0, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

/* FAQ Accordion Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
}

.faq-card:hover {
  border-color: var(--cyan);
  background: var(--bg-card-hover);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-question-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Technical Specs Table Card */
.specs-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 40px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.spec-item-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 0, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.spec-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.spec-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan);
}

/* Light Theme Overrides for Subpage Elements */
[data-theme="light"] .timeline-step-card,
[data-theme="light"] .feature-matrix-card,
[data-theme="light"] .faq-card,
[data-theme="light"] .specs-card-wrapper {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 10px 30px rgba(10, 30, 22, 0.05);
}

[data-theme="light"] .timeline-step-card:hover,
[data-theme="light"] .feature-matrix-card:hover,
[data-theme="light"] .faq-card:hover {
  border-color: #16a34a;
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

[data-theme="light"] .timeline-step-title,
[data-theme="light"] .matrix-card-title,
[data-theme="light"] .faq-question {
  color: #061710;
}

[data-theme="light"] .timeline-step-desc,
[data-theme="light"] .matrix-card-desc,
[data-theme="light"] .faq-answer {
  color: #2d443a;
}

[data-theme="light"] .matrix-icon-box {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.25);
  color: #16a34a;
}

[data-theme="light"] .timeline-step-num,
[data-theme="light"] .spec-value {
  color: #16a34a;
}

[data-theme="light"] .spec-item-box {
  background: rgba(22, 163, 74, 0.04);
  border-color: rgba(22, 163, 74, 0.15);
}

/* Modern Bezel-Less Smartphone Mockup Frame */
.phone-mockup-frame {
  position: relative;
  width: 285px;
  height: 570px;
  background: #ffffff;
  border-radius: 46px;
  padding: 0;
  border: 9px solid #141f19;
  box-shadow: 
    0 0 0 1.5px rgba(255, 255, 255, 0.18),
    0 25px 60px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(195, 255, 0, 0.22);
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.phone-mockup-frame:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 0 0 1.5px rgba(195, 255, 0, 0.4),
    0 35px 70px rgba(0, 0, 0, 0.95),
    0 0 50px rgba(195, 255, 0, 0.35);
}

.phone-notch {
  display: none !important;
}

.phone-screen-viewport {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
  isolation: isolate;
}

/* Hide Scrollbars completely for Phone Viewport while preserving scroll functionality */
.phone-screen-viewport::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.phone-screen-viewport::-webkit-scrollbar-track,
.phone-screen-viewport::-webkit-scrollbar-thumb {
  display: none !important;
  background: transparent !important;
  border: none !important;
}

.phone-screen-img {
  width: 106% !important;
  max-width: 106% !important;
  margin-left: -3% !important;
  height: auto !important;
  min-height: 100%;
  display: block;
  user-select: none;
  border-radius: 35px 35px 0 0;
}

.phone-scroll-badge {
  display: none !important;
}

/* ==========================================================================
   Teams & Academies Selling Digital Shares Cards
   ========================================================================== */
.team-shares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.team-share-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.team-share-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-card), var(--glow-cyan);
}

.team-share-header {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.team-share-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-share-card:hover .team-share-bg-img {
  transform: scale(1.08);
}

.team-share-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 8, 6, 0.25) 0%, rgba(3, 8, 6, 0.95) 100%);
}

.team-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(8, 24, 19, 0.9);
  border: 1px solid var(--border-line);
  color: var(--neon-lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
  text-transform: uppercase;
}

.team-share-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.team-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.team-location {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.team-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  border-radius: var(--radius-md);
}

.team-stat-box {
  display: flex;
  flex-direction: column;
}

.team-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.team-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
}

.funding-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.funding-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}

.funding-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(195, 255, 0, 0.2);
}

.funding-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #c3ff00, #8ee000);
  border-radius: 999px;
}

.btn-team-invest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--neon-lime) 0%, var(--vivid-green) 100%);
  color: #030907;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 8px;
}

.btn-team-invest:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(195, 255, 0, 0.35);
}

/* Light Theme Overrides for Team Share Cards */
[data-theme="light"] .team-share-card {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 10px 30px rgba(10, 30, 22, 0.06);
}

[data-theme="light"] .team-share-card:hover {
  border-color: #16a34a;
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.18);
}

[data-theme="light"] .team-share-overlay {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, #ffffff 98%);
}

[data-theme="light"] .team-name {
  color: #061710;
}

[data-theme="light"] .team-badge-tag {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.3);
  color: #16a34a;
}

[data-theme="light"] .team-stats-row {
  background: rgba(22, 163, 74, 0.04);
  border-color: rgba(22, 163, 74, 0.15);
}

[data-theme="light"] .team-stat-val {
  color: #16a34a;
}

[data-theme="light"] .funding-bar-track {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
}

/* ==========================================================================
   Pricing & Feature Matrix Card High-Contrast Styling (Light & Dark)
   ========================================================================== */
.feature-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.feature-matrix-card {
  background: rgba(8, 24, 19, 0.85);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.feature-matrix-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-lime);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.player-plan-card {
  border-color: var(--neon-lime);
  box-shadow: 0 0 30px rgba(195, 255, 0, 0.15);
}

.matrix-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(195, 255, 0, 0.12);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.matrix-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.matrix-card-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon-lime);
  margin: 10px 0;
  letter-spacing: -0.02em;
}

.scout-plan-card .matrix-card-price {
  color: var(--cyan);
}

.club-plan-card .matrix-card-price {
  color: #ffffff;
}

.matrix-card-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(195, 255, 0, 0.15);
  color: var(--neon-lime);
  border: 1px solid rgba(195, 255, 0, 0.3);
  margin-bottom: 20px;
  width: fit-content;
}

.scout-plan-card .matrix-card-badge {
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan);
  border-color: rgba(0, 240, 255, 0.3);
}

.club-plan-card .matrix-card-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.role-card-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.role-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #e2e8f0;
  font-weight: 600;
}

.role-card-features li svg {
  width: 18px;
  height: 18px;
  color: var(--neon-lime);
  flex-shrink: 0;
}

/* Light Theme Overrides for Pricing Section */
[data-theme="light"] .feature-matrix-card {
  background: #ffffff !important;
  border-color: rgba(22, 163, 74, 0.25) !important;
  box-shadow: 0 10px 30px rgba(10, 30, 22, 0.08) !important;
}

[data-theme="light"] .feature-matrix-card:hover {
  border-color: #16a34a !important;
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.2) !important;
}

[data-theme="light"] .player-plan-card {
  border-color: #16a34a !important;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.18) !important;
}

[data-theme="light"] .matrix-icon-box {
  background: rgba(22, 163, 74, 0.12) !important;
  color: #16a34a !important;
}

[data-theme="light"] .matrix-card-title {
  color: #061710 !important;
}

[data-theme="light"] .matrix-card-price {
  color: #16a34a !important;
}

[data-theme="light"] .scout-plan-card .matrix-card-price {
  color: #0284c7 !important;
}

[data-theme="light"] .club-plan-card .matrix-card-price {
  color: #0f172a !important;
}

[data-theme="light"] .matrix-card-badge {
  background: rgba(22, 163, 74, 0.1) !important;
  color: #15803d !important;
  border-color: rgba(22, 163, 74, 0.3) !important;
}

[data-theme="light"] .scout-plan-card .matrix-card-badge {
  background: rgba(2, 132, 199, 0.1) !important;
  color: #0369a1 !important;
  border-color: rgba(2, 132, 199, 0.3) !important;
}

[data-theme="light"] .club-plan-card .matrix-card-badge {
  background: rgba(15, 23, 42, 0.08) !important;
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.2) !important;
}

[data-theme="light"] .feature-matrix-card .role-card-features li {
  color: #0f172a !important; /* Bold dark text in light mode so it's 100% visible on white cards */
  font-weight: 700 !important;
}

[data-theme="light"] .feature-matrix-card .role-card-features li svg {
  color: #16a34a !important;
}

[data-theme="light"] .role-grid-card .role-card-features li {
  color: #e2eae5 !important; /* Crisp light text for dark role glass cards */
  font-weight: 600 !important;
}

[data-theme="light"] .role-grid-card .role-card-features li svg {
  color: #c3ff00 !important;
}

[data-theme="light"] .feature-matrix-card .btn-hero-primary {
  background: #16a34a !important;
  color: #ffffff !important;
}

[data-theme="light"] .feature-matrix-card .btn-card-link {
  background: #16a34a !important;
  color: #ffffff !important;
  border: none;
}

[data-theme="light"] .feature-matrix-card .btn-card-link:hover {
  background: #15803d !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

/* ==========================================================================
   Objective Radio Option Cards in Partnership Form
   ========================================================================== */
.objective-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
  align-items: stretch;
}

.objective-card-option {
  position: relative;
  cursor: pointer;
  display: flex;
  height: 100%;
  width: 100%;
}

.objective-card-option:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 520px;
}

@media (max-width: 768px) {
  .objective-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .objective-card-option:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }
}

.radio-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.objective-card-content {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 16px 18px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.objective-card-option:hover .objective-card-content {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.04);
}

.radio-hidden:checked + .objective-card-content {
  border-color: var(--neon-lime);
  background: rgba(195, 255, 0, 0.08);
  box-shadow: 0 0 15px rgba(195, 255, 0, 0.15);
}

.objective-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(195, 255, 0, 0.12);
  color: var(--neon-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-hidden:checked + .objective-card-content .objective-icon-box {
  background: var(--neon-lime);
  color: #030907;
}

.objective-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.objective-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 3px;
}

.objective-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Light Theme Overrides for Objective Cards */
[data-theme="light"] .objective-card-content {
  background: #ffffff;
  border-color: rgba(22, 163, 74, 0.2);
}

[data-theme="light"] .objective-card-option:hover .objective-card-content {
  border-color: #16a34a;
  background: rgba(22, 163, 74, 0.04);
}

[data-theme="light"] .radio-hidden:checked + .objective-card-content {
  border-color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.15);
}

[data-theme="light"] .objective-text strong {
  color: #0f172a;
}

[data-theme="light"] .objective-text span {
  color: #475569;
}

[data-theme="light"] .objective-icon-box {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

[data-theme="light"] .radio-hidden:checked + .objective-card-content .objective-icon-box {
  background: #16a34a;
  color: #ffffff;
}

/* ==========================================================================
   Submit Inquiry Buttons (.btn-submit-partnership & .btn-submit-glow)
   ========================================================================== */
.btn-submit-partnership,
.btn-submit-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  margin-top: 14px;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #10b981 100%);
  color: #030907;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(195, 255, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-submit-partnership:hover,
.btn-submit-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(195, 255, 0, 0.5);
  background: linear-gradient(135deg, #d9ff36 0%, #059669 100%);
}

.btn-submit-partnership:active,
.btn-submit-glow:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(195, 255, 0, 0.3);
}

.btn-submit-partnership svg,
.btn-submit-glow svg {
  transition: transform 0.3s ease;
}

.btn-submit-partnership:hover svg,
.btn-submit-glow:hover svg {
  transform: translateX(4px);
}

/* RTL support for arrow icon inside submit buttons */
[dir="rtl"] .btn-submit-partnership svg,
[dir="rtl"] .btn-submit-glow svg {
  transform: scaleX(-1);
}

[dir="rtl"] .btn-submit-partnership:hover svg,
[dir="rtl"] .btn-submit-glow:hover svg {
  transform: scaleX(-1) translateX(4px);
}

/* Light Theme Overrides for Submit Buttons */
[data-theme="light"] .btn-submit-partnership,
[data-theme="light"] .btn-submit-glow {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

[data-theme="light"] .btn-submit-partnership:hover,
[data-theme="light"] .btn-submit-glow:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
}
