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

:root {
  /* Color Palette */
  --bg-primary: #030712;
  --bg-secondary: #0b0f19;
  --bg-tertiary: #111827;
  --accent-blue: #2563eb;
  --accent-blue-glow: rgba(37, 99, 235, 0.4);
  --accent-indigo: #4f46e5;
  --accent-indigo-glow: rgba(79, 70, 229, 0.4);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.3);
  --accent-rose: #f43f5e;
  --accent-rose-glow: rgba(244, 63, 94, 0.3);
  
  /* Text Colors */
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --text-link-hover: #60a5fa;

  /* Card Styling */
  --card-bg: rgba(17, 24, 39, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-border: rgba(96, 165, 250, 0.3);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

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

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Gradients & Glows */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-indigo-glow) 0%, rgba(3, 7, 18, 0) 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.glow-top-left {
  top: -100px;
  left: -200px;
}

.glow-bottom-right {
  bottom: -100px;
  right: -200px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(3, 7, 18, 0.9);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-blue);
}

.logo-text span {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-link-hover);
}

.cta-btn {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-indigo) 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--accent-blue-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-blue-glow), 0 0 15px var(--accent-indigo-glow);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  background-image: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.6) 0%, var(--bg-primary) 100%),
                    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
}

.btn-secondary {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

/* Hero Graphic / Visualization */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-container {
  width: 320px;
  height: 320px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.shield-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: var(--accent-blue-glow);
  filter: blur(40px);
  opacity: 0.7;
}

.shield-outer-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(96, 165, 250, 0.25);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.shield-inner-ring {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border: 2px solid rgba(96, 165, 250, 0.1);
  border-radius: 50%;
}

.shield-core {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--accent-indigo) 0%, rgba(3,7,18,0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 30px rgba(96, 165, 250, 0.2),
              0 0 50px var(--accent-indigo-glow);
}

.shield-core svg {
  width: 70px;
  height: 70px;
  fill: var(--text-primary);
  filter: drop-shadow(0 0 10px var(--accent-blue));
}

.pulse-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-emerald);
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 15%; left: 15%; }
.node-3 { bottom: 15%; right: 15%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Feature Grid */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 3rem 2rem;
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7),
              0 0 15px rgba(37, 99, 235, 0.05);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--accent-blue);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-blue);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--accent-blue-glow);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Interactive Simulator */
.simulator-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.simulator-info h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.simulator-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.sim-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sim-step {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.sim-step:hover {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.05);
}

.sim-step.active {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.sim-step.active .step-num {
  border-color: var(--accent-blue);
  color: var(--text-primary);
  background-color: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue-glow);
}

.step-desc h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step-desc p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Simulator Screen */
.simulator-screen {
  background-color: #020617;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  height: 480px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(79, 70, 229, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.screen-header {
  height: 45px;
  background-color: #0b0f19;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 0.5rem;
}

.header-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.screen-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 1rem;
  font-weight: 500;
}

.screen-body {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Simulation Visual Board */
.sim-visual-board {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}

.sim-connector {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: translateY(-50%);
}

.sim-connector-active {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-emerald) 100%);
  z-index: 2;
  transform: translateY(-50%);
  transition: width 1.5s ease-in-out;
}

.sim-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  transition: var(--transition-smooth);
  position: relative;
}

.sim-node svg {
  width: 32px;
  height: 32px;
  fill: var(--text-muted);
  transition: var(--transition-smooth);
}

.sim-node-label {
  position: absolute;
  bottom: -28px;
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 100px;
  text-align: center;
  font-weight: 500;
}

/* Node States */
.sim-node.active-blue {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px var(--accent-blue-glow);
}
.sim-node.active-blue svg {
  fill: var(--accent-blue);
}

.sim-node.threat-danger {
  border-color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.1);
  box-shadow: 0 0 25px var(--accent-rose-glow);
  animation: pulse-danger 1s infinite alternate;
}
.sim-node.threat-danger svg {
  fill: var(--accent-rose);
}

.sim-node.success-green {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 20px var(--accent-emerald-glow);
}
.sim-node.success-green svg {
  fill: var(--accent-emerald);
}

@keyframes pulse-danger {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Simulation Console Output */
.sim-console {
  background-color: #030712;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  flex-grow: 1;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.console-line {
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-in 0.3s forwards;
}

.console-timestamp {
  color: var(--text-muted);
  user-select: none;
}

.console-text.system { color: #3b82f6; }
.console-text.warning { color: #f43f5e; font-weight: bold; }
.console-text.success { color: #10b981; }

@keyframes fade-in {
  to { opacity: 1; }
}

/* Core Platform Overview section (Druva layout tabs style) */
.overview-tabs-wrapper {
  margin-top: 4rem;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent-blue);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue-glow);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tab-text h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.tab-text p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.tab-features-list {
  list-style: none;
}

.tab-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.tab-features-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-emerald);
}

.tab-visual {
  background: radial-gradient(circle at center, rgba(37,99,235,0.05) 0%, rgba(0,0,0,0) 70%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 360px;
}

.stats-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.stat-box {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-val {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact / Trial Section */
.trial-section {
  position: relative;
  overflow: hidden;
}

.trial-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(11, 15, 25, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.trial-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.trial-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.form-input {
  width: 100%;
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.25);
  background: rgba(3, 7, 18, 0.8);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  justify-content: center;
}

/* Legal Pages Styling (policy & terms) */
.legal-layout {
  padding-top: 150px;
  padding-bottom: 8rem;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 2rem;
}

.legal-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 800px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content address {
  font-style: normal;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-primary);
}

/* Footer */
footer {
  background-color: #020617;
  border-top: 1px solid var(--card-border);
  padding: 6rem 0 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a:hover {
  color: var(--text-link-hover);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-blue);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
}

.footer-contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-info svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--accent-emerald);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px var(--accent-emerald-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slide-in-toast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-in-toast {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .simulator-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .trial-card {
    grid-template-columns: 1fr;
    padding: 4rem 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--card-border);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.2rem;
  }
  
  .tab-nav {
    flex-wrap: wrap;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}
