/* ============================================
   LOGISTORIA — SERIOUS GAMES IN LOGISTICS
   Complete CSS Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --violet-primary: #3D1959;
  --violet-deep: #120B1E;
  --violet-soft: #5C3D8A;
  --orange-primary: #FF9800;
  --orange-dark: #F57C00;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-border: #E0E0E0;
  --text-heading: #1A1A2E;
  --text-body: #444444;
  --text-muted: #666666;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-subtle: 0 2px 16px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1024px) { .container { padding: 0 24px; } }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-primary);
  color: var(--white);
  padding: 10px 24px;
  font-size: 13px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  padding: 10px 24px;
  font-size: 13px;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outlined-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 36px;
  font-size: 13px;
  border-radius: var(--radius-md);
  width: 100%;
}
.btn-outlined-light:hover { background: var(--white); color: var(--violet-primary); }
.btn-large { padding: 16px 48px; font-size: 15px; border-radius: var(--radius-md); }
.btn-small { padding: 8px 18px; font-size: 12px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(61,25,89,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(61,25,89,0.98); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo-dot { color: var(--orange-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; color: var(--white); padding: 4px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: var(--violet-primary);
  z-index: 110;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
}
.mobile-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-container { padding: 0 24px; }
}
@media (max-width: 768px) {
  .nav-container { padding: 0 16px; }
  .nav .btn-small { display: none; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-deep) 100%);
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,152,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  animation: heroFadeIn 0.8s ease-out forwards;
  opacity: 0;
}
.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-primary);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 24px auto 0;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--orange-primary);
  display: block;
}
.hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 40px;
  background: rgba(255,255,255,0.4);
  border-radius: 1px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 5;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 40px; }
  .hero-stats { gap: 32px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; }
}

/* --- Section Base --- */
.section { padding: 100px 0; }
@media (max-width: 1024px) { .section { padding: 80px 0; } }
@media (max-width: 768px) { .section { padding: 60px 0; } }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-primary);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text-heading);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-title { font-size: 26px; }
}

/* --- Stats --- */
.about { background: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -1px;
  color: var(--text-heading);
}
.stat-card--light .stat-number { color: var(--white); }
.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-heading);
  margin-top: 12px;
}
.stat-card--light .stat-label { color: rgba(255,255,255,0.85); }
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 36px; }
}

/* --- Games Catalog --- */
.games { background: var(--gray-light); }
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 24px;
  background: var(--white);
  color: var(--text-body);
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--violet-primary); color: var(--violet-primary); }
.filter-tab.active { background: var(--orange-primary); color: var(--white); border-color: var(--orange-primary); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.game-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  opacity: 1;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.game-card.hidden { display: none; }
.game-img-wrap {
  aspect-ratio: 4 / 3;
  background: #E8E0F0;
  overflow: hidden;
}
.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-img { transform: scale(1.03); }
.game-body { padding: 28px; }
.game-badge {
  display: inline-block;
  background: rgba(255,152,0,0.12);
  color: var(--orange-primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.game-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text-heading);
  margin-top: 12px;
}
.game-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.game-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--orange-primary);
}
.game-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--violet-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.game-link:hover { color: var(--orange-primary); }
.game-link svg { transition: transform 0.2s; }
.game-link:hover svg { transform: translateX(4px); }
.game-variants {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.game-variant {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
}
.game-variant:hover { background: var(--violet-primary); color: var(--white); border-color: var(--violet-primary); }

/* Coming Soon Card */
.game-card--soon {
  background: linear-gradient(135deg, var(--violet-primary), var(--violet-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.game-soon-content { text-align: center; color: var(--white); }
.game-soon-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
}
.game-soon-desc {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .games-grid { grid-template-columns: 1fr; }
}

/* --- Audience --- */
.audience { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 320px;
  position: relative;
  color: var(--white);
  transition: all 0.3s ease;
  overflow: hidden;
}
.audience-card:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.audience-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  opacity: 0.12;
  line-height: 1;
}
.audience-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}
.audience-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}
.audience-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* --- Subscriptions --- */
.subscriptions { background: var(--violet-primary); }
.subscriptions .section-title { color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  padding: 48px;
  color: var(--white);
  position: relative;
}
.pricing-card--popular { position: relative; }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}
.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--orange-primary);
  margin-top: 16px;
}
.pricing-period {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.pricing-features { margin-top: 32px; }
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.5;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--orange-primary);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* --- Partners --- */
.partners { background: var(--gray-light); }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-logo {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-heading);
  letter-spacing: -0.3px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }

/* --- Gallery --- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item--wide { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* --- Blog --- */
.blog { background: var(--gray-light); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blog-img { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-img img { transform: scale(1.03); }
.blog-body { padding: 24px; }
.blog-category {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--orange-primary);
}
.blog-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-heading);
  margin-top: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--violet-primary);
  margin-top: 16px;
  transition: color 0.2s;
}
.blog-link:hover { color: var(--orange-primary); }
.blog-link svg { transition: transform 0.2s; }
.blog-link:hover svg { transform: translateX(4px); }
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active {
  background: var(--white);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-subtle);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-heading);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--violet-primary);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- CTA --- */
.cta { background: var(--violet-primary); text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  letter-spacing: -1px;
}
.cta-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-title { font-size: 28px; }
}

/* --- Footer --- */
.footer {
  background: var(--violet-deep);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
}
.footer-logo span { color: var(--orange-primary); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.footer-email {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--orange-primary);
  margin-top: 20px;
  transition: opacity 0.2s;
}
.footer-email:hover { opacity: 0.8; }
.footer-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--orange-primary);
  margin-top: 16px;
  transition: opacity 0.2s;
}
.footer-cta:hover { opacity: 0.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Demo Request Modal --- */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,11,30,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.demo-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.demo-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.demo-modal-overlay.open .demo-modal {
  transform: scale(1);
}
.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.demo-modal-close:hover { background: var(--gray-border); }
.demo-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.demo-modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.demo-form-group { margin-bottom: 20px; }
.demo-form-label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.demo-form-input,
.demo-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-form-input:focus,
.demo-form-textarea:focus {
  outline: none;
  border-color: var(--violet-soft);
  box-shadow: 0 0 0 3px rgba(92,61,138,0.1);
}
.demo-form-textarea {
  min-height: 120px;
  resize: vertical;
}
.demo-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.demo-form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .demo-modal { padding: 28px 20px; }
  .demo-modal-title { font-size: 20px; }
}
