/* ==========================================================================
   GenCoreX IT Solutions - Master Design System & Stylesheet
   Version: 2026.1.0
   Author: GenCoreX Senior Engineering Team
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #050b14;
  --bg-secondary: #0a1324;
  --bg-card: rgba(14, 25, 45, 0.7);
  --bg-card-hover: rgba(20, 36, 65, 0.85);
  --bg-card-solid: #0d192f;
  --bg-glass: rgba(10, 20, 38, 0.65);
  --bg-glass-heavy: rgba(7, 14, 28, 0.88);

  /* Primary & Accent Glows (Cyan / Electric Sky / Tech Blue) */
  --accent-cyan: #38bdf8;
  --accent-cyan-light: #7dd3fc;
  --accent-cyan-glow: rgba(56, 189, 248, 0.35);
  --accent-cyan-subtle: rgba(56, 189, 248, 0.08);
  --accent-blue: #0284c7;
  --accent-blue-deep: #0369a1;
  --accent-teal: #14b8a6;
  --accent-teal-glow: rgba(20, 184, 166, 0.3);
  --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #0284c7 50%, #00f2fe 100%);
  --accent-gradient-glow: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(2, 132, 199, 0.1) 100%);
  --border-gradient: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(255, 255, 255, 0.05), rgba(20, 184, 166, 0.3));

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-light: #ffffff;
  --text-cyan: #38bdf8;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(56, 189, 248, 0.18);
  --border-active: rgba(56, 189, 248, 0.6);

  /* Shadows & Elevating */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(56, 189, 248, 0.15);
  --shadow-glow: 0 0 35px rgba(56, 189, 248, 0.3);
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --header-height: 108px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(2, 132, 199, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(20, 184, 166, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

::selection {
  background: rgba(56, 189, 248, 0.3);
  color: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-muted); font-size: 1.05rem; }

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #7dd3fc 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.section-padding {
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.12);
}

.section-title {
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* --- UI Buttons & Actions --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  font-size: 0.975rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #03121b;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-cyan-glow);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.55);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Glassmorphic Cards & Panels --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%, rgba(56,189,248,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  z-index: 1001;
}

.brand-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(56, 189, 248, 0.25));
  transition: all var(--transition-fast);
}

.site-header.scrolled .brand-logo img {
  height: 60px;
}

.brand-logo:hover img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 4px;
  transition: all var(--transition-normal);
}

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

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

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  top: 15%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
}

.hero-glow-2 {
  bottom: 20%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: rgba(14, 25, 45, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  margin-bottom: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-cta-group .btn {
  height: 52px;
  padding: 0 1.85rem;
  font-size: 0.975rem;
  font-weight: 600;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.45;
}

/* --- Hero Visual Card Display --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-tech-card {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.92), rgba(8, 16, 30, 0.96));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(56, 189, 248, 0.1);
  position: relative;
  z-index: 1;
}

.tech-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tech-card-title {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.tech-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
}

.tech-card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.tech-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tech-service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.tech-service-item:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateX(4px);
}

.tech-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.tech-service-text h5 {
  font-size: 0.925rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--text-light);
}

.tech-service-text p {
  font-size: 0.775rem;
  color: var(--text-dim);
}

.floating-badge {
  position: absolute;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-1 {
  top: -16px;
  right: -16px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: -16px;
  left: -16px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   About Us & Mission / Vision
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-title {
  margin-bottom: 1.25rem;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.about-highlights-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(14, 25, 45, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.about-highlight-item:hover {
  background: rgba(56, 189, 248, 0.06);
  border-color: var(--border-glass);
  transform: translateX(4px);
}

.about-hl-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-hl-text h5 {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.about-hl-text p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.about-cta-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}

.about-cta-group .btn {
  height: 48px;
  padding: 0 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Mission & Vision Right Column */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.mv-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.75), rgba(8, 16, 30, 0.9));
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.mv-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.12);
}

.mv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.mv-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 0.3rem 0.85rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
}

.mv-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-light);
}

.mv-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.mv-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-card {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.75), rgba(8, 16, 30, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  background: linear-gradient(145deg, rgba(18, 32, 58, 0.85), rgba(10, 20, 38, 0.95));
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
}

.value-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all var(--transition-fast);
}

.value-card:hover .value-icon {
  background: var(--accent-cyan);
  color: #03121b;
  transform: scale(1.05);
}

.value-number-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.value-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 0.4rem;
}

.value-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

.value-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.value-footer-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Why Choose GenCoreX
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.75), rgba(8, 16, 30, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  background: linear-gradient(145deg, rgba(18, 32, 58, 0.85), rgba(10, 20, 38, 0.95));
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.why-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all var(--transition-fast);
}

.why-card:hover .why-badge-icon {
  background: var(--accent-cyan);
  color: #03121b;
  transform: scale(1.05);
}

.why-pill-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 0.25rem 0.75rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
}

.why-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

.why-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.why-footer-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Master Partnership Highlight Banner */
.why-partnership-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(14, 25, 45, 0.9) 0%, rgba(7, 14, 28, 0.95) 50%, rgba(2, 132, 199, 0.15) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(56, 189, 248, 0.08);
  margin-top: 1rem;
}

.why-partnership-left h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 0.85rem;
  color: var(--text-light);
}

.why-partnership-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.why-partnership-icon-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-partnership-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.why-partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-light);
}

.why-partnership-right {
  background: rgba(5, 11, 20, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-partnership-right h4 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.why-partnership-right p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.why-partnership-right .btn {
  width: 100%;
  height: 48px;
}

/* ==========================================================================
   Services Showcase
   ========================================================================== */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.75), rgba(7, 14, 28, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(18, 32, 58, 0.85), rgba(10, 20, 38, 0.95));
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(56, 189, 248, 0.12);
  transform: translateY(-4px);
}

.service-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-icon-large {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-large {
  background: var(--accent-cyan);
  color: #03121b;
  transform: scale(1.05);
}

.service-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  padding: 0.3rem 0.8rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
}

.service-intro h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

.service-intro p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-sla-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
}

.service-inquire-btn {
  height: 48px;
  padding: 0 1.75rem;
}

.service-capabilities {
  background: rgba(5, 11, 20, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capabilities-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.capability-item:hover {
  background: rgba(56, 189, 248, 0.05);
}

.capability-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Commitment & Delivery Model (The GenCoreX Promise)
   ========================================================================== */
.commitment-card {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.9) 0%, rgba(7, 14, 28, 0.95) 50%, rgba(2, 132, 199, 0.15) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 4vw, 3.75rem);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(56, 189, 248, 0.08);
  position: relative;
  overflow: hidden;
}

.commitment-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.commitment-header h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
}

.commitment-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.commitment-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.commitment-pillar {
  background: rgba(5, 11, 20, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.commitment-pillar:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  background: rgba(8, 18, 34, 0.85);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.1);
}

.commitment-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.commitment-pillar h4 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.commitment-pillar p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.commitment-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.commitment-footer .btn {
  height: 52px;
  padding: 0 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

/* ==========================================================================
   Contact Hub & Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info-card {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.85), rgba(7, 14, 28, 0.95));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-card-header p {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: auto;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-text h5 {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

.contact-item-text a:hover {
  color: var(--accent-cyan);
}

.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.contact-item-label-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.whatsapp-active-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.contact-phone-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-link-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #38bdf8;
}

.contact-link-highlight:hover {
  color: #25d366 !important;
}

.contact-divider {
  color: var(--text-dim);
}

.contact-link-secondary {
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-link-secondary:hover {
  color: var(--text-light) !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee06e 0%, #159d8d 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.quick-connect-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-connect-buttons .btn {
  height: 48px;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

/* Contact Form Right Panel */
.contact-form-panel {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.85), rgba(7, 14, 28, 0.95));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-panel-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.form-panel-header p {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: linear-gradient(145deg, rgba(14, 25, 45, 0.85), rgba(7, 14, 28, 0.95));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(5, 11, 20, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
  background: rgba(8, 16, 30, 0.95);
}

.form-control::placeholder {
  color: var(--text-dim);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* Captcha Protection Widget */
.captcha-protection-box {
  background: rgba(5, 11, 20, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.captcha-protection-box:hover {
  border-color: var(--border-glass);
  background: rgba(8, 16, 30, 0.95);
}

.captcha-protection-box.verified {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.05);
}

.captcha-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  user-select: none;
}

.captcha-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-captcha-checkbox {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  position: relative;
}

.captcha-checkbox-label:hover .custom-captcha-checkbox {
  border-color: var(--accent-cyan);
}

.captcha-check-svg {
  display: none;
}

.captcha-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(56, 189, 248, 0.2);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: captchaSpin 0.6s linear infinite;
}

@keyframes captchaSpin {
  to { transform: rotate(360deg); }
}

.captcha-protection-box.verifying .captcha-spinner {
  display: block;
}

.captcha-protection-box.verified .custom-captcha-checkbox {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
}

.captcha-protection-box.verified .captcha-check-svg {
  display: block;
}

.captcha-label-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: inherit;
}

.captcha-badge-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}

.captcha-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.captcha-badge-text span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
}

.captcha-badge-text small {
  font-size: 0.55rem;
  color: var(--text-dim);
}

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1.25rem;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #03070f;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.footer-brand .brand-logo img {
  height: 74px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  position: relative;
}

.footer-links,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-contact-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: var(--accent-cyan);
  transform: translateX(3px);
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Floating Action Utilities (Back to top / WhatsApp)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  text-decoration: none;
}

.floating-whatsapp {
  background: #25d366;
  border-color: #2ee06e;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(5, 11, 20, 0.95);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Cookie & Security Consent Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 580px;
  background: linear-gradient(145deg, rgba(8, 16, 30, 0.95) 0%, rgba(4, 8, 16, 0.98) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-text h5 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

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

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-card-stack {
    max-width: 440px;
    margin: 0 auto;
  }

  .floating-badge {
    display: none !important;
  }

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

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

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

  .why-partnership-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 88px;
  }

  .brand-logo img {
    height: 58px;
    width: auto;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding: 3rem 2rem;
    transition: right var(--transition-normal);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
  }

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

  /* Prevent floating badges from overlapping on mobile/tablet */
  .floating-badge {
    display: none;
  }

  .hero-tech-card {
    padding: 1.75rem 1.5rem;
  }

  .tech-card-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

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

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

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

  .commitment-pillars-grid {
    grid-template-columns: 1fr;
  }

  .commitment-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .commitment-cta-group .btn {
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
    flex-direction: row;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .service-capabilities {
    padding: 1.5rem 1.25rem;
  }

  .partner-card {
    padding: 1.5rem 1.25rem;
  }

  .commitment-card {
    padding: 2rem 1.25rem;
  }

  .contact-info-card,
  .contact-form-panel {
    padding: 1.75rem 1.25rem;
  }
}

/* ==========================================================================
   Technology Partners Section - Refined & Elegant
   ========================================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.partner-card {
  background: linear-gradient(180deg, rgba(14, 25, 45, 0.75) 0%, rgba(9, 18, 33, 0.85) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 16px 32px rgba(56, 189, 248, 0.18);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.partner-logo-container {
  background: #ffffff;
  border-radius: var(--radius-md);
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.partner-card:hover .partner-logo-container {
  transform: scale(1.02);
}

.partner-logo-img {
  max-height: 52px !important;
  max-width: 150px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}

.partner-category-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.partner-name {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  min-height: 3rem;
  display: flex;
  align-items: flex-start;
}

.partner-desc {
  font-size: 0.885rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
  min-height: 4.8rem;
}

.partner-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  min-height: 2.3rem;
  align-content: flex-start;
}

.partner-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-cyan-light);
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.16);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.partner-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 5.5rem;
  justify-content: flex-end;
}

.partner-detail-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.825rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.partner-detail-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.partner-detail-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color var(--transition-fast);
  word-break: break-word;
}

.partner-detail-item a:hover {
  color: var(--accent-cyan);
}

.partner-card-action {
  width: 100%;
}

.partner-action-btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.partner-action-btn:hover {
  background: var(--accent-cyan);
  color: #03121b;
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.partnership-synergy-banner {
  background: linear-gradient(135deg, rgba(14, 25, 45, 0.85) 0%, rgba(8, 16, 30, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.partnership-synergy-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gradient);
}

.synergy-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.synergy-content {
  flex: 1;
}

.synergy-content h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.synergy-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.synergy-action {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partner-name,
  .partner-desc,
  .partner-services-tags,
  .partner-details-list {
    min-height: auto;
  }
  .partnership-synergy-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .partnership-synergy-banner::before {
    width: 100%;
    height: 4px;
    top: 0;
  }
  .synergy-action {
    width: 100%;
  }
  .synergy-action .btn {
    width: 100%;
  }
}

/* Animations Trigger Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Web Accessibility (ADA / WCAG 2.1 AA) Suite Styles
   ========================================================================== */
.a11y-floating-trigger {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
}

.a11y-trigger-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--accent-blue);
  color: #ffffff;
  border: 2px solid rgba(56, 189, 248, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4), 0 0 15px rgba(56, 189, 248, 0.3);
  transition: all var(--transition-fast);
  position: relative;
}

.a11y-trigger-btn:hover,
.a11y-trigger-btn:focus-visible {
  transform: scale(1.08);
  background: var(--accent-cyan);
  color: #03121b;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
}

.a11y-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: var(--bg-glass-heavy);
  color: var(--text-light);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.a11y-trigger-btn:hover .a11y-tooltip,
.a11y-trigger-btn:focus-visible .a11y-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Modal Overlay & Drawer Panel */
.a11y-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.a11y-overlay.open {
  opacity: 1;
  visibility: visible;
}

.a11y-panel {
  background: linear-gradient(180deg, rgba(12, 22, 42, 0.96) 0%, rgba(7, 14, 28, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.a11y-overlay.open .a11y-panel {
  transform: translateY(0) scale(1);
}

.a11y-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.a11y-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.a11y-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.a11y-title-wrap h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.1rem;
  font-weight: 700;
}

.a11y-subtitle {
  font-size: 0.725rem;
  color: var(--accent-cyan-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.a11y-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.a11y-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.a11y-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Control Card */
.a11y-control-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.a11y-control-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.65rem;
}

.a11y-level-badge {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.a11y-btn-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.a11y-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.a11y-action-btn span {
  font-size: 0.95rem;
  font-weight: 700;
}

.a11y-action-btn small {
  font-size: 0.685rem;
  color: var(--text-muted);
}

.a11y-action-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
}

/* Feature Tiles Grid */
.a11y-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.a11y-tile-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.a11y-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.a11y-tile-title {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-light);
}

.a11y-tile-btn:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
}

.a11y-tile-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.a11y-tile-btn.active .a11y-tile-icon {
  background: var(--accent-cyan);
  color: #03121b;
}

.a11y-tile-btn.active .a11y-tile-title {
  color: var(--accent-cyan-light);
}

.a11y-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.a11y-reset-btn {
  width: 100%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.a11y-reset-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ffffff;
}

/* Dynamic Reading Guide Bar */
.a11y-reading-bar {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 4px;
  background: #38bdf8;
  box-shadow: 0 0 12px #38bdf8, 0 0 24px rgba(56, 189, 248, 0.8);
  z-index: 99999;
  pointer-events: none;
  display: none;
  transform: translateY(-50%);
}

html.a11y-guide-active .a11y-reading-bar {
  display: block;
}

/* ==========================================================================
   Accessibility Modifier Classes (Applied to <html>)
   ========================================================================== */
/* Font Scaling */
html.a11y-scale-1 {
  font-size: 112% !important;
}

html.a11y-scale-2 {
  font-size: 125% !important;
}

html.a11y-scale-down {
  font-size: 90% !important;
}

/* High Contrast */
html.a11y-contrast {
  --bg-primary: #000000 !important;
  --bg-secondary: #0a0a0a !important;
  --bg-card: #000000 !important;
  --text-main: #ffffff !important;
  --text-muted: #e2e8f0 !important;
  --accent-cyan: #00ffff !important;
  --border-glass: #ffffff !important;
}

html.a11y-contrast * {
  border-color: #ffffff !important;
}

/* Invert Colors */
html.a11y-invert {
  filter: invert(1) hue-rotate(180deg) !important;
}

html.a11y-invert img,
html.a11y-invert video,
html.a11y-invert canvas,
html.a11y-invert .a11y-panel {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Monochrome / Grayscale */
html.a11y-grayscale {
  filter: grayscale(100%) !important;
}

/* Dyslexia-Friendly Font */
html.a11y-dyslexic * {
  font-family: 'Comic Sans MS', 'Trebuchet MS', sans-serif !important;
  letter-spacing: 0.05em !important;
  line-height: 1.75 !important;
}

/* Highlight Links */
html.a11y-links a {
  text-decoration: underline 2px solid #38bdf8 !important;
  text-underline-offset: 4px !important;
  font-weight: 700 !important;
  color: #38bdf8 !important;
}

/* Large Cursor */
html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='%2338bdf8' stroke='%23000000' stroke-width='2'%3E%3Cpolygon points='3 3 10.07 19.97 12.58 12.58 19.97 10.07 3 3'/%3E%3C/svg%3E"), auto !important;
}

/* Pause Motion / Reduced Motion */
html.a11y-motion-pause *,
html.a11y-motion-pause *::before,
html.a11y-motion-pause *::after {
  animation: none !important;
  transition: none !important;
}

/* Expanded Text Spacing */
html.a11y-spacing * {
  letter-spacing: 0.12em !important;
  word-spacing: 0.16em !important;
  line-height: 1.9 !important;
}

@media (max-width: 480px) {
  .a11y-floating-trigger {
    bottom: 20px;
    left: 20px;
  }
  .a11y-overlay {
    padding: 0;
  }
  .a11y-panel {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .a11y-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }
}
