/* ========================================
         RESET & BASE
         ======================================== */

/* ========================================
         SKIP LINK (WCAG 2.4.1)
         ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-900, #0d1b2a);
  color: var(--white, #fff);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--yellow-400, #fbd84b);
  outline-offset: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-900: #0d1b2a;
  --blue-800: #1b2838;
  --blue-700: #1b3a5c;
  --blue-600: #1e4d7b;
  --blue-500: #2b6cb0;
  --blue-400: #4a90d9;
  --blue-300: #7fb3e6;
  --blue-200: #b3d4f5;
  --blue-100: #dceefb;

  --yellow-500: #f5c518;
  --yellow-400: #fbd84b;
  --yellow-300: #fce588;
  --yellow-200: #fef3c7;

  --white: #ffffff;
  --whitesmoke: #f5f5f5;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-600: #6b7280;
  --gray-800: #1f2937;

  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --glass-blur: blur(16px);

  --font-mono: "Courier New", "Lucida Console", "Consolas", "Monaco", monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
}

/* ========================================
         FOCUS INDICATOR (WCAG 2.4.7)
         ======================================== */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--yellow-400, #fbd84b);
  outline-offset: 2px;
}

body {
  font-family: var(--font-headings);
  color: var(--gray-800);
  background-color: var(--blue-900);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================================
         LAYOUT SHELL
         ======================================== */
.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-viewport {
  flex: 1;
  position: relative;
  margin-top: 72px;
}

/* ========================================
         UTILITY
         ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 3rem 0 5rem;
}

.text-center {
  text-align: center;
}

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--yellow-500);
  margin: 1rem auto;
  border-radius: 2px;
  border: none;
}

.section-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--yellow-500);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--blue-900);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ========================================
         GLASS CARD
         ======================================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-dark {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.glass-white {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

/* ========================================
         HEADER / NAV
         ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 72px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-cz {
  color: var(--yellow-400);
}

.logo-uk {
  color: var(--white);
}

.logo-suffix {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    color var(--transition),
    background var(--transition);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--yellow-400);
  background: rgba(245, 197, 24, 0.08);
}

.nav-cta {
  background: var(--yellow-500) !important;
  color: var(--blue-900) !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.35);
  background: var(--yellow-400) !important;
}

.nav-cta.active {
  background: var(--yellow-400) !important;
  color: var(--blue-900) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
         SPA PAGE TRANSITIONS
         ======================================== */
.spa-page {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}

.spa-page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.spa-page.leaving {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

/* Stagger children within active page */
.spa-page.active .stagger {
  opacity: 0;
  transform: translateY(16px);
  animation: staggerIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.spa-page.active .stagger:nth-child(1) {
  animation-delay: 0.1s;
}
.spa-page.active .stagger:nth-child(2) {
  animation-delay: 0.18s;
}
.spa-page.active .stagger:nth-child(3) {
  animation-delay: 0.26s;
}
.spa-page.active .stagger:nth-child(4) {
  animation-delay: 0.34s;
}
.spa-page.active .stagger:nth-child(5) {
  animation-delay: 0.42s;
}
.spa-page.active .stagger:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
         HERO
         ======================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 27, 42, 0.9) 0%,
    rgba(27, 58, 92, 0.65) 50%,
    rgba(13, 27, 42, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--yellow-400);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 50px;
  background: rgba(245, 197, 24, 0.06);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--yellow-400);
  display: block;
}

/* Hero entrance animations */
.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.spa-page.active .hero-line-inner {
  animation: heroLineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.spa-page.active .hero-line:nth-child(1) .hero-line-inner {
  animation-delay: 0.3s;
}

.spa-page.active .hero-line:nth-child(2) .hero-line-inner {
  animation-delay: 0.55s;
}

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-anim {
  opacity: 0;
  transform: translateY(20px);
}

.spa-page.active .hero-subtitle-anim {
  animation: heroFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.hero-actions-anim {
  opacity: 0;
  transform: translateY(16px);
}

.spa-page.active .hero-actions-anim {
  animation: heroFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.15s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--blue-900);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

/* ========================================
         ABOUT
         ======================================== */
.about {
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about .section-subtitle {
  color: var(--yellow-400);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(0.7) brightness(0.85);
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.about-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-content {
  padding: 1rem 0;
}

.about-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.about-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--yellow-400);
}

.about-feature-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ========================================
         SME SERVICES (dark section)
         ======================================== */
.sme-services {
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}

.sme-services::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.sme-services .section-subtitle {
  color: var(--yellow-400);
}

.sme-services .section-title {
  color: var(--white);
}

.sme-services .section-desc {
  color: rgba(255, 255, 255, 0.45);
}

.sme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.sme-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.sme-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sme-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.6) brightness(0.8);
  transition: opacity 0.4s ease;
}

.sme-card:hover .sme-card-bg img {
  opacity: 0.2;
}

.sme-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.15);
}

.sme-card-icon,
.sme-card h3,
.sme-card p {
  position: relative;
  z-index: 1;
}

.sme-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.sme-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.sme-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

/* ========================================
         TOOLKIT — CANDIDATE DETAIL SERVICES
         ======================================== */
.toolkit {
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}

.toolkit::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.toolkit .section-subtitle {
  color: var(--yellow-400);
}

.toolkit .section-title {
  color: var(--white);
}

.toolkit .section-desc {
  color: rgba(255, 255, 255, 0.45);
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.toolkit-card {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.toolkit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(245, 197, 24, 0.15);
}

.toolkit-card-image {
  height: 200px;
  overflow: hidden;
}

.toolkit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.7) brightness(0.8);
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.toolkit-card:hover .toolkit-card-image img {
  transform: scale(1.06);
  opacity: 0.65;
}

.toolkit-card-body {
  padding: 1.5rem;
}

.toolkit-card-body h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.toolkit-card-body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

/* ========================================
         CTA BANNER / CONTACT
         ======================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blue-700) 0%, var(--blue-900) 100%);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(127, 179, 230, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  padding: 2rem 1rem;
}

.cta-inner h2 {
  font-size: clamp(1.25rem, 3.5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
         FOOTER
         ======================================== */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.45);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.75rem;
  line-height: 1.9;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--yellow-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  /* display: flex;
  flex-direction: row; */
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.7rem;
}
.footer-bottom address {
  font-size: 0.7rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.footer-social a:hover {
  background: var(--yellow-500);
  border-color: var(--yellow-500);
  color: var(--blue-900);
}

/* ========================================
         RESPONSIVE
         ======================================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0.85rem;
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section-padding {
    padding: 2rem 0 3.5rem;
  }

  .hero-content {
    padding: 3rem 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .sme-grid,
  .toolkit-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 350px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ========================================
         REDUCE MOTION
         ======================================== */
@media (prefers-reduced-motion: reduce) {
  .spa-page.active,
  .spa-page.leaving {
    transition: none;
  }

  .spa-page.active .stagger {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .spa-page.active .hero-line-inner,
  .spa-page.active .hero-subtitle-anim,
  .spa-page.active .hero-actions-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .toolkit-card,
  .sme-card,
  .btn {
    transition: none;
  }

  .toolkit-card-image img,
  .about-image img {
    transition: none;
  }
}
