/* ==========================================================================
   DIES PRO - MODERN HIGH-TECH DESIGN SYSTEM
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
  /* Color Palette */
  --bg-dark-primary: #020617;     /* Deep space black-blue */
  --bg-dark-secondary: #050a18;   /* Slightly lighter tech-navy */
  --bg-card: rgba(10, 20, 42, 0.45); /* Glassmorphic card fill */
  
  --accent-cyan: #00f0ff;         /* Cyan neon glow */
  --accent-cyan-rgb: 0, 240, 255;
  --accent-blue: #0052ff;         /* Royal electric blue */
  --accent-blue-rgb: 0, 82, 255;
  --accent-purple: #a855f7;       /* Tech purple for HR/learning */
  --accent-red: #ef4444;          /* Red warning alert */
  
  --text-white: #ffffff;
  --text-gray-light: #f1f5f9;
  --text-gray-mid: #94a3b8;
  --text-gray-dark: #475569;
  
  /* Fonts */
  --font-primary: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  --font-cyber: 'Orbitron', monospace;

  /* Glassmorphism Details */
  --glass-border: rgba(0, 240, 255, 0.08);
  --glass-border-blue: rgba(0, 82, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --glow-cyan-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
  --glow-blue-shadow: 0 0 20px rgba(0, 82, 255, 0.3);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-primary);
  color: var(--text-white);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* 1.1 Dynamic Mockup Background Overlay */
.dynamic-page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/original-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 0.28; /* Subdued so content remains 100% readable, yet high-tech and glowing */
  filter: saturate(1.3) brightness(0.85) blur(2px);
  will-change: transform, filter;
  transition: transform 0.1s ease-out, filter 0.1s ease-out;
}

.dynamic-page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0.82) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 82, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
  box-shadow: var(--glow-cyan-shadow);
}

/* 2. Layout & Glow Utilities */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Glowing Ambient Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  top: 10%;
  right: -100px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  top: 40%;
  left: -200px;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  bottom: 10%;
  right: -50px;
}

/* Glassmorphism Card Style */
.glassmorphic {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--text-white);
  box-shadow: var(--glow-blue-shadow);
}
.btn-primary:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark-primary);
  box-shadow: var(--glow-cyan-shadow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--glow-cyan-shadow);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.75rem;
  border-radius: 6px;
}

.btn-full {
  width: 100%;
}

.btn-glow-blue {
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.4);
}
.btn-glow-blue:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}

/* Typography Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-blue {
  background: linear-gradient(135deg, var(--text-white) 40%, var(--accent-cyan) 85%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.font-cyber {
  font-family: var(--font-cyber);
}

.text-cyan { color: var(--accent-cyan); }
.text-blue { color: var(--accent-blue); }
.text-purple { color: var(--accent-purple); }
.text-red { color: var(--accent-red); }
.text-green { color: #10b981; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray-mid);
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-secondary);
}

/* 3. Header / Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: var(--transition-smooth);
}
.header.scrolled {
  height: 70px;
  background: rgba(2, 6, 23, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 60px;
}
.main-logo {
  height: 60px;
  width: auto;
  mix-blend-mode: lighten; /* Removes white background from PNG logo */
  filter: brightness(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: var(--text-gray-mid);
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
  padding: 8px 0;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  font-size: 1.5rem;
}

/* 4. Hero Section */
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray-mid);
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: var(--font-secondary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Hero Dashboard Graphic Mockup */
.hero-visual {
  position: relative;
  width: 100%;
}

.dashboard-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dashboard-bg-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.1));
  border-radius: 20px;
}

/* Floating Glass Telemetry Cards */
.telemetry-card {
  position: absolute;
  padding: 18px;
  width: 250px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-top-left {
  top: -30px;
  left: -20px;
  border-left: 2px solid var(--accent-cyan);
}

.card-bottom-right {
  bottom: -35px;
  right: -10px;
  border-right: 2px solid var(--accent-blue);
  width: 240px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.card-mid-right {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 220px;
  padding: 14px;
}

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

.telemetry-card .card-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-gray-mid);
}

.status-indicator-green {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.metric-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.metric-sub {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sub-percent {
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.sub-percent i {
  width: 12px;
  height: 12px;
}
.sub-label {
  font-size: 0.6875rem;
  color: var(--text-gray-mid);
}

/* Progress Ring Component */
.progress-ring-container {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress-ring__circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.35s;
}
.progress-text {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.metric-desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.desc-title {
  font-size: 0.75rem;
  font-weight: 700;
}
.desc-sub {
  font-size: 0.625rem;
  font-weight: 600;
}

/* Mini sparkline indicator */
.mini-chart-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.mini-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-gray-mid);
}
.mini-val {
  font-size: 0.8125rem;
  font-weight: 800;
}
.mini-chart-svg {
  width: 100%;
  height: 40px;
}
.sparkline {
  width: 100%;
  height: 100%;
}

/* 5. Solutions Section */
.solutions-section {
  position: relative;
  background-color: transparent;
  z-index: 1;
}

/* Solutions Panels Container */
.solutions-panels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
}

.solution-panel {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 260px;
  height: 560px;
  background: rgba(10, 20, 42, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-panel:hover {
  transform: translateY(-8px);
}

.solution-panel.active {
  background: rgba(15, 30, 60, 0.8);
}

/* Glowing Border Elements */
.panel-glow-border {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.6;
}

.solution-panel:hover .panel-glow-border,
.solution-panel.active .panel-glow-border {
  opacity: 1;
  box-shadow: inset 0 0 15px currentColor, 0 0 10px currentColor;
}

/* Define colors for the glowing borders based on the image */
.border-cyan { color: var(--accent-cyan); border-color: var(--accent-cyan); }
.border-blue { color: var(--accent-blue); border-color: var(--accent-blue); }
.border-purple { color: var(--accent-purple); border-color: var(--accent-purple); }
.border-green { color: #00ff88; border-color: #00ff88; } /* Green for ACCESS */

.gradient-cyan { background: linear-gradient(to top, rgba(0, 240, 255, 0.4) 0%, transparent 100%); }
.gradient-blue { background: linear-gradient(to top, rgba(0, 82, 255, 0.4) 0%, transparent 100%); }
.gradient-purple { background: linear-gradient(to top, rgba(162, 0, 255, 0.4) 0%, transparent 100%); }
.gradient-green { background: linear-gradient(to top, rgba(0, 255, 136, 0.4) 0%, transparent 100%); }

.panel-content {
  padding: 30px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  z-index: 2;
}

.panel-icon-wrapper {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.panel-module-title {
  font-family: var(--font-cyber);
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--accent-cyan); /* Default for DIES */
}

.panel-module-desc {
  font-size: 0.8rem;
  color: var(--text-gray-mid);
  line-height: 1.5;
}

.panel-image-wrapper {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  margin-top: auto;
}

.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.solution-panel:hover .panel-img,
.solution-panel.active .panel-img {
  opacity: 1;
  transform: scale(1.05);
}

.panel-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* 6. Interactive Ecosistema Section (Split Screen) */
.ecosistema-section {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.ecosistema-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.ecosistema-text-content {
  max-width: 520px;
}

.text-left {
  text-align: left;
  margin-bottom: 16px;
}

.bullet-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bullet-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}
.bullet-icon-wrapper i {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.bullet-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray-light);
}

/* Ecosystem Dashboard Simulator */
.ecosistema-dashboard-simulator {
  width: 100%;
}

.simulator-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.simulator-header {
  background: rgba(2, 6, 23, 0.6);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.window-dot.red { background-color: #ef4444; }
.window-dot.yellow { background-color: #f59e0b; }
.window-dot.green { background-color: #10b981; }

.simulator-tab-name {
  margin-left: 12px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  font-family: var(--font-cyber);
}

.live-badge {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse-grow 2s infinite;
}

@keyframes pulse-grow {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 6px #10b981; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.simulator-body {
  padding: 24px;
  min-height: 290px;
  position: relative;
  background: rgba(3, 7, 18, 0.4);
}

/* Animations for switches */
.module-simulation {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.module-simulation.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.sim-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sim-metric-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.sim-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-gray-mid);
  margin-bottom: 4px;
}
.sim-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.sim-sub {
  font-size: 0.6875rem;
  color: var(--text-gray-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.sim-sub i {
  width: 12px;
  height: 12px;
}

.sim-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sim-panel-left, .sim-panel-right {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.panel-title {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--text-gray-light);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.panel-title i {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
}

.sim-log-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: monospace;
  font-size: 0.6875rem;
  color: var(--text-gray-mid);
}

.log-item {
  display: flex;
  gap: 8px;
  line-height: 1.4;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.log-time {
  color: var(--accent-blue);
  flex-shrink: 0;
}
.log-msg {
  word-break: break-word;
}

.chart-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.main-sim-chart {
  width: 100%;
  height: 100%;
}

.simulator-footer {
  background: rgba(2, 6, 23, 0.5);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ecosistema-brand {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-gray-mid);
}

/* 7. Diagnostic Section */
.diagnostic-section {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  display: block;
}

.diagnostic-desc {
  font-size: 1rem;
  color: var(--text-gray-mid);
  margin: 20px 0;
  line-height: 1.6;
}

.bullet-list-diag {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullet-list-diag li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-gray-light);
}
.bullet-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}
.bullet-circle i {
  width: 10px;
  height: 10px;
  stroke-width: 3;
}

/* Center Glowing AI Avatar */
.diagnostic-avatar-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring-outer {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 240, 255, 0.2);
  animation: rotate-clockwise 20s linear infinite;
}

.avatar-ring-inner {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 82, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.1) inset;
  animation: rotate-counter-clockwise 15s linear infinite;
}

.avatar-holder {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.ai-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes rotate-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotate-counter-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Form Styling */
.diagnostic-form-container {
  padding: 30px 24px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  position: relative;
  overflow: visible;
}

.form-title {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.form-subtitle {
  font-size: 0.8125rem;
  color: var(--text-gray-mid);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-gray-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.input-icon-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-gray-mid);
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: 8px;
  transition: var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
  background: rgba(3, 7, 18, 0.8);
}

.form-select {
  appearance: none;
  cursor: pointer;
}
/* Style dropdown options */
.form-select option {
  background-color: var(--bg-dark-primary);
  color: var(--text-white);
}

/* Form Loading Simulation */
.diag-loading-screen {
  position: relative;
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 10;
  text-align: center;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(0, 240, 255, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
  margin-bottom: 24px;
}

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

.loading-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-primary);
}

.progress-bar-wrapper {
  width: 80%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: width 0.1s ease;
}

.loading-status {
  font-size: 0.75rem;
  color: var(--text-gray-mid);
  font-family: monospace;
}

/* Diagnostic Result Screen */
.diag-result-screen {
  position: relative;
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  z-index: 10;
  text-align: center;
}

.result-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.result-success-icon i {
  width: 24px;
  height: 24px;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.result-summary {
  font-size: 0.8125rem;
  color: var(--text-gray-mid);
  margin-bottom: 12px;
}

/* Two-column score layout */
.result-scores-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
}

.result-score-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.score-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-gray-mid);
  text-align: center;
}
.score-num {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}

/* ROI / Savings box */
.result-roi-box {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.12), rgba(0, 240, 255, 0.06));
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 10px 14px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.roi-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}
.roi-icon i { width: 16px; height: 16px; }
.roi-text-block { display: flex; flex-direction: column; gap: 2px; }
.roi-label {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-gray-mid);
}
.roi-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-cyber);
}
.roi-sub {
  font-size: 0.625rem;
  color: var(--text-gray-mid);
}

.result-recommendation {
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.15);
  padding: 10px 14px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 12px;
  width: 100%;
}
.rec-title {
  font-size: 0.6875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-white);
  margin-bottom: 4px;
}
.rec-title i {
  width: 12px;
  height: 12px;
  color: var(--accent-cyan);
}
.rec-text {
  font-size: 0.6875rem;
  color: var(--text-gray-mid);
  line-height: 1.4;
}

.hidden {
  display: none !important;
}

/* 8. Benefits Section */
.benefits-section {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

/* First Row: Icons Grid */
.benefits-icons-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 120px;
}

.benefit-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-mid);
  transition: var(--transition-smooth);
}
.benefit-icon-card:hover .benefit-icon-circle {
  color: var(--accent-cyan);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--glow-cyan-shadow);
  transform: translateY(-2px);
}
.benefit-icon-circle i {
  width: 20px;
  height: 20px;
}

.benefit-icon-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-gray-light);
}

/* Second Row: Large Stat Cards */
.benefits-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 82, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 82, 255, 0.05);
}

.stat-circle-cyan, .stat-circle-blue {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.stat-circle-cyan {
  border: 2px dashed rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
}
.stat-circle-blue {
  border: 2px dashed rgba(0, 82, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 82, 255, 0.05);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
}
.stat-circle-cyan .stat-number { color: var(--accent-cyan); text-shadow: 0 0 8px rgba(0, 240, 255, 0.3); }
.stat-circle-blue .stat-number { color: var(--text-white); text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }

.stat-title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-gray-mid);
  line-height: 1.5;
}

/* Indicators under stats */
.stats-sub-row {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.sub-data-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-gray-mid);
}
.sub-data-indicator i {
  width: 16px;
  height: 16px;
}

/* 9. Industries Section */
.industries-section {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.industries-flex-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.10fr;
  gap: 60px;
  align-items: center;
}

.industries-left {
  max-width: 520px;
}

.industries-list-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-gray-mid);
  margin-bottom: 24px;
}

.industries-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.industry-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}
.industry-item.active {
  background: rgba(0, 82, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.1);
}

.ind-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-mid);
  transition: var(--transition-fast);
}
.industry-item.active .ind-icon-box {
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
}
.ind-icon-box i {
  width: 18px;
  height: 18px;
}

.ind-text-box {
  display: flex;
  flex-direction: column;
}
.ind-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
}
.ind-stats {
  font-size: 0.75rem;
  color: var(--text-gray-mid);
}

.industries-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-text-card {
  max-width: 580px;
}

.sub-statement {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.statement-title {
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.statement-desc {
  font-size: 0.9375rem;
  color: var(--text-gray-mid);
  line-height: 1.6;
}

/* Cube Container styling */
.cube-visual-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1.2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cube-bg-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5; /* blend futuristic environment */
  z-index: 0;
  filter: blur(2px) contrast(1.2);
}

.cube-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  z-index: 1;
}

.cube-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.animate-rotate-slow {
  animation: rotate-globe 40s linear infinite;
}
@keyframes rotate-globe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 10. Footer */
.footer {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 80px;
  z-index: 1;
  position: relative;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 50px;
}

.brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  height: 56px;
  width: auto;
  align-self: flex-start;
  mix-blend-mode: lighten; /* Removes white background from PNG logo */
  filter: brightness(1.05);
}
.footer-brand-desc {
  font-size: 0.8125rem;
  color: var(--text-gray-mid);
  line-height: 1.6;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--text-white);
  font-family: var(--font-cyber);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
}
.footer-contact-list i {
  width: 16px;
  height: 16px;
}
.footer-contact-list a {
  text-decoration: none;
  color: var(--text-gray-mid);
  transition: var(--transition-fast);
}
.footer-contact-list a:hover {
  color: var(--accent-cyan);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-list a {
  text-decoration: none;
  color: var(--text-gray-mid);
  font-size: 0.8125rem;
  transition: var(--transition-fast);
}
.footer-links-list a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.newsletter-desc {
  font-size: 0.8125rem;
  color: var(--text-gray-mid);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 7, 18, 0.5);
  margin-bottom: 12px;
}
.newsletter-form:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: var(--text-white);
  font-size: 0.8125rem;
  font-family: var(--font-secondary);
}
.newsletter-input:focus {
  outline: none;
}

.newsletter-submit-btn {
  background: var(--accent-blue);
  border: none;
  color: var(--text-white);
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.newsletter-submit-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark-primary);
}
.newsletter-submit-btn i {
  width: 14px;
  height: 14px;
}

.newsletter-success-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #10b981;
}
.newsletter-success-msg i {
  width: 12px;
  height: 12px;
}

/* Social icons section */
.social-icons {
  margin-top: 24px;
}
.social-title {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--text-gray-mid);
}
.social-links-wrapper {
  display: flex;
  gap: 16px;
}
.social-links-wrapper a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-mid);
  transition: var(--transition-fast);
}
.social-links-wrapper a:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
}
.social-links-wrapper i {
  width: 16px;
  height: 16px;
}

/* Copyright footer bar */
.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 0;
  background-color: transparent;
}
.copyright-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray-dark);
}

/* 11. Responsive Layout Adjustments */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .solutions-panels {
    gap: 16px;
    padding-bottom: 20px;
  }
  .solution-panel {
    flex: 1 1 30%;
    min-width: 240px;
    height: 500px;
  }
  .diagnostic-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diagnostic-avatar-container {
    display: none;
  }
  .benefits-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .telemetry-card {
    display: none !important; /* Hide floating telemetry cards on tablets to save space */
  }
  .ecosistema-container {
    grid-template-columns: 1fr;
  }
  .ecosistema-text-content {
    max-width: 100%;
  }
  .industries-flex-wrapper {
    grid-template-columns: 1fr;
  }
  .industries-left {
    max-width: 100%;
  }
  .cube-visual-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark-primary);
    flex-direction: column;
    padding: 40px 24px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
  }
  .nav-link {
    font-size: 1.125rem;
  }
  .nav-actions {
    display: none; /* Hide header buttons on mobile, show menu items instead */
  }
  
  .hero-title { font-size: 2.25rem; }
  .section-title { font-size: 2rem; }
  
  .solutions-panels {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .solution-panel {
    width: 100%;
    max-width: 340px;
    min-width: auto;
    height: 480px;
  }
  .sim-grid-top {
    grid-template-columns: 1fr;
  }
  .sim-grid-bottom {
    grid-template-columns: 1fr;
  }
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }
  .benefits-stats-grid {
    grid-template-columns: 1fr;
  }
  .benefits-icons-grid {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .copyright-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Animations Trigger Classes */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.animate-fade-in-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
