/* CSS Reset and Base Styles */
:root {
  /* Color Palette from DESIGN.md */
  --surface: #0d1516;
  --surface-dim: #0d1516;
  --surface-bright: #333a3c;
  --surface-container-lowest: #080f11;
  --surface-container-low: #151d1e;
  --surface-container: #192122;
  --surface-container-high: #242b2d;
  --surface-container-highest: #2e3638;
  --on-surface: #dce4e5;
  --on-surface-variant: #bac9cc;
  --inverse-surface: #dce4e5;
  --inverse-on-surface: #2a3233;
  --outline: #849396;
  --outline-variant: #3b494c;
  --surface-tint: #00daf3;
  
  --primary: #c3f5ff;
  --on-primary: #00363d;
  --primary-container: #00e5ff;
  --on-primary-container: #00626e;
  --inverse-primary: #006875;
  
  --secondary: #b9c7e4;
  --on-secondary: #233148;
  --secondary-container: #3c4962;
  --on-secondary-container: #abb9d6;
  
  --tertiary: #e7edf5;
  --on-tertiary: #2b3137;
  --tertiary-container: #cbd1d9;
  --on-tertiary-container: #535a60;
  
  --error: #ffb4ab;
  --on-error: #690005;
  --error-container: #93000a;
  --on-error-container: #ffdad6;

  /* Custom Identity Colors */
  --electric-blue: #00E5FF;
  --deep-navy: #050B14;
  --circuit-dim: #112240;
  --glow-accent: rgba(0, 229, 255, 0.2);
  --legal-silver: #BDC3C7;
  --background: #0d1516;
  --on-background: #dce4e5;
  --glass-bg: rgba(13, 21, 22, 0.75);

  /* Spacing */
  --base-unit: 8px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--background);
  color: var(--on-background);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Typography styles matching DESIGN.md */
h1, h2, h3, h4, .brand-name, .btn-cta, .btn-primary-glow, .btn-secondary-chamfer {
  font-family: 'Hanken Grotesk', sans-serif;
}

.mono-badge, .division-tag, .sol-card-badge, .value-number, .form-status-msg, label {
  font-family: 'JetBrains Mono', monospace;
}

/* Background Grids & Decorative Circuit Lines */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.circuit-lines-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Navigation Bar */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(189, 195, 199, 0.15);
  transition: all 0.3s ease;
}

.navbar-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo placement: important without exaggeration */
.brand-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--on-surface);
  transition: opacity 0.3s ease;
}

.brand-logo-area:hover {
  opacity: 0.9;
}

.brand-logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--electric-blue);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--on-surface);
  text-transform: uppercase;
}

.brand-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-cards-action {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
  position: relative;
  z-index: 10;
}


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

.nav-link {
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--electric-blue);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--electric-blue);
  transition: width 0.3s ease, left 0.3s ease;
  box-shadow: 0 0 6px var(--electric-blue);
}

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

/* Buttons and Interactions */
.btn-cta {
  background-color: var(--electric-blue);
  color: var(--deep-navy);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
  background-color: #ffffff;
  color: var(--deep-navy);
}

.btn-primary-glow {
  display: inline-block;
  background-color: var(--electric-blue);
  color: var(--deep-navy);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  border: 1px solid var(--electric-blue);
  text-align: center;
}

.btn-primary-glow:hover {
  background-color: transparent;
  color: var(--electric-blue);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
}

.btn-secondary-chamfer {
  display: inline-block;
  background-color: transparent;
  color: var(--on-surface);
  text-decoration: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--outline);
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-secondary-chamfer:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  background-color: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(189, 195, 199, 0.15);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--legal-silver), transparent);
}

.hover-glow:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.12);
  transform: translateY(-4px);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--on-surface);
  transition: all 0.3s ease;
}

/* Hero Section layout */
.hero-section-container {
  padding: 160px 24px 100px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.highlight-blue {
  color: var(--electric-blue);
  background: linear-gradient(135deg, var(--electric-blue), #9cf0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-glow {
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-surface-variant);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-logo-frame {
  padding: 16px;
  border-radius: 12px;
  background: rgba(10, 25, 47, 0.4);
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.2);
  transition: all 0.5s ease;
  max-width: 360px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame:hover {
  transform: rotateY(8deg) rotateX(8deg) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.4);
  border-color: rgba(0, 229, 255, 0.5);
}

.hero-official-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.hero-inline-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
  width: 100%;
}

.division-card {
  padding: 24px;
}

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

.division-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--electric-blue);
}

.division-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div-icon {
  width: 20px;
  height: 20px;
  fill: var(--electric-blue);
}

.division-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.division-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.5;
}


/* Section dividers with tech node motif */
.section-divider-line {
  max-width: 1280px;
  height: 1px;
  background-color: var(--outline-variant);
  margin: 60px auto;
  position: relative;
  opacity: 0.4;
}

.connector-node {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background-color: var(--electric-blue);
  border: 1px solid var(--surface);
  box-shadow: 0 0 8px var(--electric-blue);
  transform: rotate(45deg);
}

/* Solutions Section */
.solutions-section {
  padding: 40px 24px;
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

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

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.solution-column {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
}

.solution-column:nth-child(4) {
  grid-column: 2 / span 2;
}

.sol-card-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  background-color: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 2px;
  color: var(--electric-blue);
  margin-bottom: 20px;
}

.solution-intro {
  font-size: 16px;
  line-height: 1.5;
  color: var(--on-surface);
  margin-bottom: 24px;
  font-weight: 500;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-list li {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-bullet {
  margin-top: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--electric-blue);
  box-shadow: 0 0 6px var(--electric-blue);
  flex-shrink: 0;
  border-radius: 1px;
}

/* Staff Section */
.staff-section {
  padding: 40px 24px;
  position: relative;
  z-index: 10;
}

.staff-header {
  margin-bottom: 48px;
}

.mono-badge {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--electric-blue);
  display: inline-block;
  margin-bottom: 8px;
}

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

.staff-card {
  padding: 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.staff-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #000;
  border-bottom: 1px solid rgba(189, 195, 199, 0.15);
}

.staff-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(100%);
}

.staff-card:hover .staff-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.staff-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.staff-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--on-surface);
}

.staff-role-badge {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--electric-blue);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: inline-block;
}

.staff-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-surface-variant);
}

/* Value Proposition Section */
.value-section {
  padding: 40px 24px 100px;
  position: relative;
  z-index: 10;
}

.value-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.value-text-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-number-wrap {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--electric-blue);
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.value-item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-item-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--on-surface-variant);
}

.value-visual-side {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

/* Interactive SVG Microchip Animations */
.animated-chip-svg {
  max-width: 320px;
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.15));
}

.pulse-node {
  animation: pulse-glow 2s infinite ease-in-out;
}

.chip-rect {
  transition: stroke 0.3s ease, fill 0.3s ease;
}

.value-visual-side:hover .chip-rect {
  stroke: var(--electric-blue);
  fill: rgba(0, 229, 255, 0.05);
}

@keyframes pulse-glow {
  0%, 100% {
    r: 4px;
    fill-opacity: 0.6;
    filter: drop-shadow(0 0 2px var(--electric-blue));
  }
  50% {
    r: 6px;
    fill-opacity: 1;
    filter: drop-shadow(0 0 8px var(--electric-blue));
  }
}

/* Footer layout */
.footer-area {
  background-color: var(--surface-container-lowest);
  padding: 0 24px 60px;
  position: relative;
  z-index: 10;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
}

.footer-brand-side {
  max-width: 320px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  height: 36px;
  width: 36px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--electric-blue);
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-surface-variant);
}

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

.footer-col-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--on-surface);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--on-surface-variant);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-blue);
}

.footer-text-info {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.location-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-copy-info {
  font-size: 11px;
  color: var(--outline);
  margin-top: 12px;
  line-height: 1.4;
}

/* Floating WhatsApp Button */
.whatsapp-sticky-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 90;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-sticky-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-icon {
  display: block;
}

.whatsapp-btn-text {
  white-space: nowrap;
}

/* Modal Overlay & Card styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 100%;
  max-width: 500px;
  margin: 16px;
  position: relative;
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
  transform: translateY(-30px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--on-surface-variant);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--electric-blue);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--on-surface-variant);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
}

.form-group input, .form-group select, .form-group textarea {
  background-color: var(--surface-container-low);
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  padding: 12px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
  background-color: var(--surface-container-high);
}

.btn-submit {
  margin-top: 10px;
  width: 100%;
  cursor: pointer;
}

.form-status-msg {
  display: none;
  margin-top: 20px;
  font-size: 14px;
  color: var(--on-surface);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  background-color: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.status-chip {
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 2px;
}

.success-chip {
  background-color: var(--electric-blue);
  color: var(--deep-navy);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text-side {
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 32px;
  }
  .hero-actions {
    justify-content: center;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-column,
  .solution-column:nth-child(4) {
    grid-column: auto;
  }
  .solution-column:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .value-visual-side {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links-menu {
    position: fixed;
    top: 74px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 74px);
    background-color: var(--surface-container);
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(189, 195, 199, 0.1);
  }

  .nav-links-menu.active {
    left: 0;
  }

  .btn-quote {
    width: 100%;
    max-width: 280px;
  }

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

  .hero-inline-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-column:nth-child(5) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whatsapp-btn-text {
    display: none;
  }

  .whatsapp-sticky-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

.sol-card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
}
