/* ImagiProof Landing Page Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #121829;
  --bg-card: #1d243d;
  --accent-indigo: #6366f1;
  --accent-purple: #8b5cf6;
  --accent-gold: #f59e0b;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --success: #10b981;
  --danger: #ef4444;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-indigo);
}

/* Background Gradients */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(0,0,0,0) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow-1 { top: -100px; right: -100px; }
.glow-2 { bottom: 10%, left: -200px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background-color: rgba(11, 15, 25, 0.8);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: all 0.3s ease;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}
.logo span {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-family: var(--font-display);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-btn {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
}
.badge-promo {
  align-self: flex-start;
  background-color: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.badge-promo span {
  color: var(--accent-gold);
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title span {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  color: white;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Interactive Device / Mockup Area */
.hero-media {
  display: flex;
  justify-content: center;
  position: relative;
}
.app-mockup {
  width: 320px;
  height: 640px;
  background-color: #0b0e14;
  border: 12px solid #272c35;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Mockup screen inside */
.mockup-screen {
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121829 0%, #080a10 100%);
  position: relative;
  font-size: 0.85rem;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}
.mockup-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mockup-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.7rem;
}
.mockup-credits {
  background-color: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.mockup-scan-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  margin-bottom: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mockup-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mockup-btn {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  margin-top: 1rem;
  text-transform: uppercase;
}

/* Floating widgets surrounding mockup */
.floating-widget {
  position: absolute;
  background: rgba(21, 27, 45, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite alternate;
}
.fw-1 {
  top: 60px;
  left: -80px;
  animation-delay: 0s;
}
.fw-2 {
  bottom: 80px;
  right: -80px;
  animation-delay: 1.5s;
}
.fw-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-1 .fw-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
}
.fw-2 .fw-icon-wrapper {
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}
.fw-text span {
  display: block;
  font-weight: 700;
}
.fw-text p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Live Simulator Section */
.simulator-sec {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.sim-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sim-left h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}
.sim-feature-item {
  display: flex;
  gap: 1rem;
}
.sim-f-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.sim-f-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.sim-f-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Simulator Widget */
.sim-widget {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.sim-dropzone {
  border: 2px dashed rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  background-color: rgba(255, 255, 255, 0.01);
  text-align: center;
}
.sim-dropzone:hover {
  border-color: var(--accent-indigo);
  background-color: rgba(99, 102, 241, 0.02);
}
.sim-drop-icon {
  font-size: 3rem;
  color: var(--accent-indigo);
  margin-bottom: 1rem;
}
.sim-drop-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.sim-drop-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.sim-btn-demo {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.sim-btn-demo:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Scanning Screen in simulator */
.sim-scan-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
}
.sim-img-container {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-img-preview {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.sim-laser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-indigo), transparent);
  box-shadow: 0 0 15px var(--accent-indigo);
  animation: laser-scan 2s linear infinite;
  z-index: 5;
}
.sim-progress-logs {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
  padding: 1rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent-indigo);
  min-height: 80px;
}
.log-line {
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid transparent;
  animation: typing 2s steps(40, end);
}

/* Result Screen in simulator */
.sim-result-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-grow: 1;
}
.gauge-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.gauge-svg {
  transform: rotate(-90deg);
  width: 160px;
  height: 160px;
}
.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 10;
}
.gauge-val {
  fill: none;
  stroke: var(--accent-indigo);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.5s ease-in-out;
}
.gauge-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gauge-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.gauge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.result-verdict {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.result-verdict.real { color: var(--success); }
.result-verdict.fake { color: var(--danger); }
.result-details {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.btn-reset {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-reset:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Features Grid */
.features-sec {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--accent-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Credit System Section */
.credits-sec {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.credits-card {
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.credits-left h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.credits-left p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.credits-info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.c-info-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.2rem;
}
.c-info-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}
.c-info-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.credits-right {
  display: flex;
  justify-content: center;
}
.credit-badge-art {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.02) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-slow 3s infinite alternate;
}
.credit-coin {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: 4px solid #fef3c7;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5), inset 0 2px 4px rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
}

/* Download CTA Section */
.download-sec {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.download-content {
  max-width: 700px;
  margin: 0 auto;
}
.download-content h2 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}
.download-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}
.store-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: black;
  color: white;
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.6rem;
  border-radius: 14px;
  text-decoration: none;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent-indigo);
}
.sb-icon {
  font-size: 2rem;
}
.sb-text span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sb-text p {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin: 0;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}
.footer-logo span {
  color: var(--accent-indigo);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* Legals Container Styling for Privacy / Terms pages */
.legal-sec {
  padding: 140px 0 80px 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
}
.legal-card h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}
.legal-content li {
  margin-bottom: 0.4rem;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}
@keyframes laser-scan {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes pulse-slow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2); }
  100% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(245, 158, 11, 0.05); }
}

/* Responsive media queries */
@media(max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .badge-promo {
    align-self: center;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem auto;
  }
  .cta-group {
    justify-content: center;
  }
  .floating-widget {
    display: none;
  }
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .credits-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
    text-align: center;
  }
  .credits-info-box {
    justify-content: center;
  }
  .credits-right {
    order: -1;
  }
}

@media(max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none; /* Mobile menu toggles could be added, but keeping simple and clean for compliance */
  }
  .menu-toggle {
    display: block;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
