/* ============================================
   GENIA BRAND — Enterprise Light Mode Edition
   Clean White Base (#FFFFFF / #F4F5F7) & Crimson Red (#DE350B / #FF5630)
   Status Chips, Light Cards & Crimson 3D Matrix
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Fira+Code:wght@500;600;700&display=swap');

/* ---------- Genia Brand Enterprise Tokens ---------- */
:root {
  /* Clean White Base */
  --color-void-black: #FFFFFF;
  --color-dark-bg: #F4F5F7;
  --color-dark-card: #FFFFFF;
  --color-dark-card-hover: #FAFBFC;

  /* Primary Crimson Red (#DE350B / #FF5630) */
  --color-brand-red: #DE350B;
  --color-brand-red-light: #FF5630;
  --color-brand-red-hover: #BF2600;
  --color-brand-red-dark: #8C1C00;

  /* Status Color Tokens */
  --color-status-green: #006644;   /* DONE / RESOLVED (High contrast on white) */
  --color-status-yellow: #FF8B00;  /* IN PROGRESS */
  --color-status-red: #DE350B;     /* HIGH PRIORITY */
  --color-status-teal: #008DA6;    /* CLOUD / INFRA */

  /* High-Contrast Light Mode Typography */
  --color-text-bright: #091E42;
  --color-text-main: #172B4D;
  --color-text-muted: #5E6C84;

  /* Fonts */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Fira Code', SFMono-Regular, Consolas, monospace;

  /* Component Radius & Light Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;

  --border-subtle: 1px solid #DFE1E6;
  --border-brand-red: 1px solid rgba(222, 53, 11, 0.45);
  --border-brand-red-bright: 1px solid #DE350B;

  /* Light Depth Shadows */
  --shadow-brand-glow: 0 4px 20px rgba(222, 53, 11, 0.25);
  --shadow-card: 0 4px 20px rgba(9, 30, 66, 0.08);
  --shadow-card-hover: 0 12px 32px rgba(9, 30, 66, 0.15), 0 0 15px rgba(222, 53, 11, 0.2);

  /* Micro-Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-smooth: 0.25s ease-in-out;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-void-black);
  color: var(--color-text-main);
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* Keyboard Focus Ring */
:focus-visible {
  outline: 2px solid var(--color-brand-red-dark) !important;
  outline-offset: 3px !important;
}

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

a:hover {
  color: #BF2600;
  text-shadow: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-text-bright);
  letter-spacing: -0.02em;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------- 3D Canvas Background Layer ---------- */
.world-3d-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ---------- Container & Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
  background: transparent !important;
  border-bottom: none;
}

.section--alt {
  background: transparent !important;
}

.section--dark {
  background: transparent !important;
}

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

.text-gradient-green {
  background: linear-gradient(135deg, #091E42 0%, #DE350B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Status Chips ---------- */
.status-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.status-chip--blue,
.status-chip--blue {
  background: #DE350B;
  color: #FFFFFF;
  border: 1px solid #BF2600;
}

.status-chip--green,
.status-chip--green {
  background: #E3FCEF;
  color: #006644;
  border: 1px solid #ABF5D1;
}

.status-chip--yellow,
.status-chip--yellow {
  background: #FFF0B3;
  color: #172B4D;
  border: 1px solid #FFE380;
}

.status-chip--red,
.status-chip--red {
  background: #FFEBE6;
  color: #DE350B;
  border: 1px solid #FFBDAD;
}

/* Unit Code Tag Badge */
.unit-tag-id,
.unit-tag-id {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #DE350B;
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: inline-block;
  background: #FFEBE6;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  border: 1px solid #FFBDAD;
}

/* ---------- Header Navigation (Navbar) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #DFE1E6;
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(9, 30, 66, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: #091E42;
  border-radius: var(--radius-sm);
  border: 1px solid #172B4D;
  box-shadow: 0 2px 10px rgba(9, 30, 66, 0.15);
  transition: all var(--transition-fast);
}

.navbar__logo:hover {
  background: #172B4D;
  border-color: #DE350B;
  box-shadow: 0 4px 15px rgba(222, 53, 11, 0.25);
  transform: translateY(-1px);
}

.navbar__logo img {
  height: 34px;
  width: auto;
  filter: brightness(1.15) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  white-space: nowrap;
}

.navbar__link {
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}

.navbar__link:hover {
  color: #DE350B;
  background: #F4F5F7;
  border-color: #DFE1E6;
}

.navbar__link--active {
  color: #FFFFFF;
  background: var(--color-brand-red);
  border: 1px solid #BF2600;
  box-shadow: 0 2px 8px rgba(222, 53, 11, 0.3);
}

.navbar__cta {
  background: var(--color-brand-red);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.5rem 1.3rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(222, 53, 11, 0.3);
}

.navbar__cta:hover {
  background: var(--color-brand-red-hover);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-brand-glow);
  transform: translateY(-1px);
}

/* Mobile Navigation Toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #091E42;
  margin: 5px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  padding-top: 145px;
  padding-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent !important;
}

.hero__content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 1rem;
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--color-text-bright);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.8rem;
  font-family: var(--font-body);
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ---------- Timeline / Trayectoria Component (Exact Screenshot Replication) ---------- */
.timeline-section {
  margin: 2.2rem auto 1.5rem;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #172B4D;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.timeline-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 0 1rem;
}

.timeline-line {
  position: absolute;
  top: 5px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: #E2E8F0;
  z-index: 1;
}

.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #C5221F;
  box-shadow: 0 0 0 3px #FFFFFF, 0 0 0 4px rgba(197, 34, 31, 0.4);
  margin-bottom: 1.2rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.timeline-node:hover .timeline-dot {
  transform: scale(1.4);
  background: #DE350B;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #091E42;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.timeline-desc {
  font-size: 0.85rem;
  color: #5E6C84;
  line-height: 1.55;
  font-family: var(--font-body);
  max-width: 175px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: left;
    padding-left: 2rem;
  }
  .timeline-line {
    top: 0;
    bottom: 0;
    left: 5px;
    right: auto;
    width: 1px;
    height: 100%;
  }
  .timeline-node {
    align-items: flex-start;
    text-align: left;
  }
  .timeline-dot {
    position: absolute;
    left: -2rem;
    top: 5px;
  }
  .timeline-desc {
    max-width: 100%;
    margin: 0;
  }
}

/* Genia Brand Filter Pills */
.hero__tabs-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-pill {
  padding: 0.55rem 1.25rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid #DFE1E6;
  color: var(--color-text-main);
  box-shadow: 0 2px 6px rgba(9, 30, 66, 0.05);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-pill:hover,
.tab-pill--active {
  background: var(--color-brand-red);
  color: #FFFFFF;
  border-color: #BF2600;
}

.hero__mockup-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

/* Genia Brand Board Dashboard Container (Light Card) */
.hero__mockup {
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(9, 30, 66, 0.12);
  border: 1px solid #DFE1E6;
  background: #FFFFFF;
  overflow: hidden;
}

/* ---------- Genia Brand Style Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn--primary {
  background: var(--color-brand-red);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(222, 53, 11, 0.35);
}

.btn--primary:hover {
  background: var(--color-brand-red-hover);
  color: #FFFFFF;
  box-shadow: var(--shadow-brand-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: #FFFFFF;
  color: #DE350B;
  border: 1px solid #DE350B;
  box-shadow: 0 2px 8px rgba(9, 30, 66, 0.05);
}

.btn--outline:hover {
  background: #FFEBE6;
  color: #BF2600;
}

.btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #1da855;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: #DE350B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
}

.section-header__desc {
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ---------- Service Unit Cards (Bento Grid) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bento-card {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.6rem;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  background: #FFFFFF;
  border-color: #DE350B;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.bento-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #FFF5F2 0%, #FFFFFF 100%);
  border: 1px solid #FFBDAD;
}

.bento-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #FFEBE6;
  border: 1px solid #FFBDAD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.bento-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-text-bright);
}

.bento-card__desc {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.72;
  flex-grow: 1;
}

.bento-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #DE350B;
}

.bento-card__link:hover {
  gap: 0.7rem;
  color: #BF2600;
}

/* ---------- AI Section ---------- */
.ai-section {
  background: transparent !important;
  color: #091E42;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  position: relative;
  z-index: 2;
}

.ai-card {
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.ai-card:hover {
  background: #FFFFFF;
  border-color: #DE350B;
  transform: translateY(-4px);
}

/* ---------- Metrics & Stats Section ---------- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.metric-item {
  padding: 2.2rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #DFE1E6;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(9, 30, 66, 0.06);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: #DE350B;
}

.metric-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text-main);
}

/* ---------- Client Logos ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.75rem;
  align-items: center;
}

.client-logo {
  padding: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid #DFE1E6;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}

.client-logo:hover {
  border-color: #DE350B;
}

.client-logo img {
  max-height: 48px;
  width: auto;
  filter: grayscale(100%) opacity(0.85);
  transition: all var(--transition-fast);
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.brands {
  padding: 3rem 0;
  overflow: hidden;
}

.brands__track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.brands__item {
  flex-shrink: 0;
  height: 34px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all var(--transition-fast);
}

.brands__item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---------- Subpage Service Hero ---------- */
.service-hero {
  padding-top: 145px;
  padding-bottom: 2.5rem;
  background: transparent !important;
  border-bottom: none;
  position: relative;
}

.service-hero__content {
  max-width: 850px;
}

.service-hero__icon {
  margin-bottom: 1.4rem;
}

.service-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.4rem;
}

.service-hero__desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Features List on Subpages */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1.5rem;
  padding: 2.4rem;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.feature:hover {
  background: #FFFFFF;
  border-color: #DE350B;
  transform: translateY(-4px);
}

.feature__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: #FFEBE6;
  border: 1px solid #FFBDAD;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-text-bright);
}

.feature__desc {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.72;
}

/* ---------- Contact Form & Cards ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  text-align: center;
  padding: 2.4rem 1.6rem;
  background: #FFFFFF;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.contact-card__icon {
  margin-bottom: 1.4rem;
}

.contact-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.contact-card__info {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.contact-form {
  max-width: 660px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 3.2rem;
  border-radius: var(--radius-md);
  border: 1px solid #DFE1E6;
  box-shadow: var(--shadow-card);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #DE350B;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid #DFE1E6;
  background: #FAFBFC;
  color: #091E42;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A5ADBA;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #DE350B;
  box-shadow: 0 0 10px rgba(222, 53, 11, 0.25);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Multi-Column Footer ---------- */
.footer {
  background: #091E42;
  color: #EBECF0;
  padding: 5.5rem 0 2.5rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid #172B4D;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer__brand p {
  color: #A5ADBA;
  font-size: 0.96rem;
  margin-top: 1.4rem;
  max-width: 320px;
  line-height: 1.72;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF5630;
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links a {
  color: #A5ADBA;
  font-size: 0.96rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: #FF5630;
}

/* Security Badges Row */
.security-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.sec-badge {
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  background: rgba(222, 53, 11, 0.3);
  border: 1px solid rgba(255, 86, 48, 0.4);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: #FF5630;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A5ADBA;
  font-size: 0.9rem;
}

.footer__social {
  display: flex;
  gap: 1.4rem;
}

.footer__social a {
  color: #A5ADBA;
  font-size: 1.25rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: #FF5630;
}

/* ---------- Keyframes & Animations ---------- */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .brands__track {
    animation: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .bento-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 85px 1.5rem 1.5rem;
    transition: right var(--transition-smooth);
    border-left: 1px solid #DFE1E6;
    gap: 0.6rem;
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__link {
    width: 100%;
    padding: 0.85rem 1.2rem;
  }

  .navbar__toggle {
    display: block;
  }

  .hero {
    padding-top: 135px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

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

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

  .contact-form {
    padding: 2rem 1.4rem;
  }
}

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

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