/* Page Wrapper */
body.page-wrapper {
  min-height: 100vh;
  background: #0B1120;
  color: #E5E7EB;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 32px 16px;
  box-sizing: border-box;
}

/* Global text & headings */
.body-text {
  font-size: 15px;
  line-height: 1.7;
  color: #E5E7EB;
}

.h3 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #E5E7EB;
  margin: 0 0 8px 0;
}

h1,
h2,
h3 {
  margin: 0;
}

/* Global link style */
a {
  color: #93C5FD;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: #BFDBFE;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  box-sizing: border-box;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, #22C55E 0%, #16A34A 35%, #0F766E 70%, #0B1120 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5E7EB;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.logo-text {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #F9FAFB;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #CBD5F5;
  text-decoration: none;
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.nav-link-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2563EB;
  transition: width 0.2s ease;
}

.nav-link.active .nav-link-indicator {
  width: 100%;
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: #E5E7EB;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.mobile-nav-toggle:hover {
  background: rgba(30, 64, 175, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.mobile-nav-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.mobile-nav-toggle-icon,
.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #E5E7EB;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.mobile-nav-toggle-icon::before {
  top: -5px;
}

.mobile-nav-toggle-icon::after {
  top: 5px;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon {
  transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon::before {
  transform: rotate(90deg);
  top: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon::after {
  opacity: 0;
}

/* Mobile nav drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 850;
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px 16px;
  gap: 4px;
  box-sizing: border-box;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer[hidden] {
  display: none;
}

.mobile-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #E5E7EB;
  padding: 8px 0;
}

/* Hero section */
.hero-section {
  padding: 48px 16px 40px 16px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.28) 0, rgba(15, 23, 42, 0.95) 45%, #020617 100%);
  border-bottom: 1px solid rgba(30, 64, 175, 0.35);
  animation: fadeIn 0.6s ease-out;
}

.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-heading {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #F9FAFB;
  margin: 0 0 16px 0;
}

.hero-subheading {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #CBD5F5;
  max-width: 560px;
  margin: 0 0 24px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
  border: 1px solid rgba(45, 212, 191, 0.5);
  color: #A5F3FC;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.btn-primary {
  padding: 12px 24px;
  min-height: 44px;
  border-radius: 999px;
  background: #2563EB;
  color: #FFFFFF;
  border: 1px solid #1D4ED8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1D4ED8;
  border: 1px solid #1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
  background: #1D4ED8;
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.75);
}

.btn-primary:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  padding: 11px 22px;
  min-height: 44px;
  border-radius: 999px;
  background: transparent;
  color: #E5E7EB;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.6);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: #2563EB;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.8);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.6);
}

.btn-secondary:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 260px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9CA3AF;
  font-size: 14px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-image-placeholder:hover {
  border-color: #2563EB;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.9);
  transform: translateY(-3px);
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin-bottom: 12px;
}

/* Section wrapper */
.section-wrapper {
  padding: 40px 16px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.35);
  background: #020617;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38BDF8;
}

.section-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: #F9FAFB;
  margin: 0;
}

.section-description {
  font-size: 15px;
  line-height: 1.7;
  color: #CBD5F5;
  max-width: 720px;
}

/* How it works */
.how-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-badge {
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #BFDBFE;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #E5E7EB;
  margin: 0;
}

.step-body {
  font-size: 14px;
  line-height: 1.6;
  color: #CBD5F5;
  margin: 0;
}

.setup-illustration-placeholder {
  width: 100%;
  min-height: 220px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9CA3AF;
  font-size: 14px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.setup-illustration-placeholder:hover {
  border-color: #0F766E;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
}

.setup-illustration-placeholder img {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin-bottom: 12px;
}

/* Features */
.feature-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.65);
  color: #E5E7EB;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
  border-color: #2563EB;
  background: rgba(15, 23, 42, 0.98);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BFDBFE;
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #F9FAFB;
}

.feature-body {
  font-size: 14px;
  line-height: 1.7;
  color: #CBD5F5;
  margin: 0;
}

.feature-placeholder-graphic {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 200px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9CA3AF;
  font-size: 14px;
  padding: 24px;
  box-sizing: border-box;
  margin-top: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-placeholder-graphic:hover {
  border-color: #F97316;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(-3px);
}

.feature-placeholder-graphic img {
  width: 100%;
  height: auto;
  max-width: 520px;
  margin-bottom: 12px;
}

/* Show processors */
.show-processor-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.show-processor-bullets {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.show-processor-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #CBD5F5;
}

.show-processor-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22C55E;
  margin-top: 7px;
}

.show-processor-dashboard-placeholder {
  width: 100%;
  min-height: 240px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9CA3AF;
  font-size: 14px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.show-processor-dashboard-placeholder:hover {
  border-color: #22C55E;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.85);
  transform: translateY(-3px);
}

.show-processor-dashboard-placeholder img {
  width: 100%;
  height: auto;
  max-width: 520px;
  margin-bottom: 12px;
}

/* Generic card */
.generic-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
  color: #E5E7EB;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.generic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
  border-color: #2563EB;
}

.card-footer {
  margin-top: auto;
  padding-top: 16px;
}

/* Contact */
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #CBD5F5;
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.social-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.9);
  color: #E5E7EB;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-chip:hover {
  background: #2563EB;
  border-color: #1D4ED8;
}

.social-chip:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.contact-form-card {
  width: 100%;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-field {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #E5E7EB;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.input-field:hover {
  border-color: #2563EB;
}

.input-field:focus-visible {
  border-color: #2563EB;
  box-shadow: 0 0 0 1px #2563EB, 0 0 0 4px rgba(37, 99, 235, 0.35);
  background: rgba(15, 23, 42, 1);
}

.input-field:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.textarea-field {
  width: 100%;
  min-height: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.95);
  color: #E5E7EB;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.textarea-field:hover {
  border-color: #2563EB;
}

.textarea-field:focus-visible {
  border-color: #2563EB;
  box-shadow: 0 0 0 1px #2563EB, 0 0 0 4px rgba(37, 99, 235, 0.35);
  background: rgba(15, 23, 42, 1);
}

.textarea-field:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #E5E7EB;
}

.helper-text {
  margin-top: 4px;
  font-size: 12px;
  color: #9CA3AF;
}

.error-text {
  margin-top: 4px;
  font-size: 12px;
  color: #F97373;
}

/* Placeholder image box */
.placeholder-image-box {
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9CA3AF;
  font-size: 13px;
  padding: 16px;
  box-sizing: border-box;
}

.placeholder-image-box img {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin-bottom: 8px;
}

/* Privacy */
.privacy-section {
  padding: 32px 16px 40px 16px;
  background: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.35);
}

.privacy-link {
  font-size: 14px;
  color: #93C5FD;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: #BFDBFE;
}

.privacy-link:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

/* Alerts (used for form status) */
.alert-success {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.7);
  color: #BBF7D0;
  font-size: 13px;
}

.alert-danger {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.7);
  color: #FECACA;
  font-size: 13px;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 16px;
  background: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  color: #9CA3AF;
  font-size: 12px;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer-text {
  font-size: 12px;
  color: #9CA3AF;
}

.footer-credit-text {
  font-size: 12px;
  color: #E5E7EB;
  font-weight: 500;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .how-grid,
  .show-processor-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: 40px;
  }

  .section-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
  }
}
