:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-dark: #071A33;
  --bg-darker: #0B1220;
  
  --text-main: #0B1220;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  
  --primary-blue: #2563EB;
  --primary-blue-hover: #1D4ED8;
  --accent-cyan: #06B6D4;
  --success-green: #10B981;
  --danger-red: #EF4444;
  
  --border-light: #E2E8F0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  font-family: var(--font-sans);
  color: var(--text-main);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}

a, button {
  transition: all var(--transition-fast);
}

a {
  text-decoration: none;
  color: var(--primary-blue);
}

a:hover {
  color: var(--primary-blue-hover);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section {
  padding: 6rem 0;
}

.section-bg-light {
  background-color: var(--bg-secondary);
}

.section-bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* Animations (Reveal) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--bg-secondary);
}

.btn-light {
  background-color: #fff;
  color: var(--text-main);
}

.btn-light:hover {
  background-color: var(--bg-secondary);
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}

.header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-btn-mobile {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  color: var(--primary-blue);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.badge svg {
  color: var(--success-green);
  width: 16px;
  height: 16px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Social Proof */
.social-proof-container {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.social-proof-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-proof-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.chip {
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  padding: 2rem;
  background-color: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.service-image, .service-image-placeholder {
  height: 320px;
  width: 100%;
  object-fit: contain;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  padding: 0.5rem;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}



/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sector-card {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
}

.sector-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--card-accent, var(--primary-blue));
}

.sector-card[data-accent="blue"] { --card-accent: #3B82F6; }
.sector-card[data-accent="green"] { --card-accent: #10B981; }
.sector-card[data-accent="purple"] { --card-accent: #8B5CF6; }
.sector-card[data-accent="orange"] { --card-accent: #F97316; }
.sector-card[data-accent="red"] { --card-accent: #EF4444; }
.sector-card[data-accent="cyan"] { --card-accent: #06B6D4; }

.sector-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  padding: 0.5rem;
}

.sector-content {
  padding: 1.5rem;
}

.sector-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.sector-content p {
  font-size: 0.9rem;
}

/* Systems (Not templates) Section */
.system-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.system-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.system-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.system-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.system-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
}

.check-circle {
  width: 24px;
  height: 24px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-circle svg {
  width: 14px;
  height: 14px;
}

.system-visual {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Line connecting steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--border-light);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 8px var(--bg-secondary);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Contact Form Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.form-microcopy {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group label span {
  color: var(--danger-red);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background-color: #f8fafc;
}

.form-control:hover {
  border-color: #cbd5e1;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: #fff;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

.form-success {
  display: none;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success-green);
  color: #047857;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: white;
  border-radius: 24px;
  margin: 0 2rem 4rem 2rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 400px;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive Design Tablet */
@media (max-width: 1024px) {
  .section { padding: 4rem 0; }
  .hero { padding-bottom: 3rem; }
  .hero-content h1 { font-size: 3rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .system-container { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-grid::before { display: none; }
  
  .logo img { height: 36px; }
  .nav-links, .nav-btn { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Responsive Design Mobile */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero { padding-bottom: 2rem; }
  
  .logo img { height: 36px; }
  
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-content p { margin: 0 auto 2rem auto; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  
  .contact-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .cta-section { margin: 0 1rem 2rem 1rem; padding: 4rem 1rem; }
  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.25rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .system-list { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
}

/* Mobile Nav Open State */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed; /* Fix to viewport */
  top: 80px; /* Below header */
  left: 0;
  width: 100%;
  height: calc(100vh - 80px); /* Fill screen */
  background-color: white;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 999;
}

.nav-links.active a:not(.btn) {
  font-size: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  text-align: center;
}

.nav-links.active .nav-btn-mobile {
  display: flex;
  margin-top: 2rem;
  width: 100%;
}

/* Legal Pages */
.legal-section {
  padding: 8rem 1rem 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--bg-darker);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

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

.legal-warning {
  background-color: #FEF3C7;
  color: #92400E;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #F59E0B;
  margin-bottom: 2rem;
  font-weight: 500;
}

.footer-legal-links {
  margin-bottom: 1rem;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-legal-links a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Privacy Checkbox */
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
}

.privacy-check input {
  margin-top: 0.3rem;
  cursor: pointer;
}

.privacy-check span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.privacy-check a {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--bg-darker);
}

.cookie-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}

.cookie-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

.cookie-link:hover {
  color: var(--primary-blue);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 18, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.cookie-modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cookie-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-option-info strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--bg-darker);
}

.cookie-option-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-blue);
}

input:disabled + .toggle-slider {
  background-color: var(--primary-blue);
  opacity: 0.5;
  cursor: not-allowed;
}

input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
