/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&family=Mrs+Saint+Delafield&display=swap');

/* ============================================================
   WMS INTELLIGENCE — SITE STYLES
   Extracted from HTML handoff document
   ============================================================ */

/* ============================================================
   1. STYLE GUIDE — DESIGN TOKENS
   All colors, fonts, spacing and radii are defined here.
   Change values here to retheme the entire site.
   ============================================================ */

:root {
  /* Brand Colors */
  --color-navy:           #0C1A2E;   /* Primary dark — hero, footer, CTA bands */
  --color-navy-mid:       #1A2D47;   /* Hover states on navy backgrounds */
  --color-teal:           #4AC4A0;   /* Primary accent — buttons, highlights, dots */
  --color-teal-dark:      #35A988;   /* Teal hover state */
  --color-teal-subtle:    #E1F5EE;   /* Teal light fill — icon backgrounds, badges */
  --color-teal-text:      #0F6E56;   /* Teal text on light backgrounds */

  /* Neutral Colors */
  --color-white:          #FFFFFF;
  --color-bg:             #F7F8FA;   /* Page background */
  --color-surface:        #FFFFFF;   /* Card / component surface */
  --color-surface-alt:    #F1F3F6;   /* Alternate surface — module cards */
  --color-border:         rgba(0,0,0,0.08);
  --color-border-strong:  rgba(0,0,0,0.15);

  /* Text Colors */
  --color-text-primary:   #0C1A2E;   /* Main body text */
  --color-text-secondary: #5A6A7A;   /* Muted / supporting text */
  --color-text-tertiary:  #8A99A8;   /* Labels, captions */

  /* Semantic */
  --color-success:        #1D9E75;
  --color-success-bg:     #E1F5EE;
  --color-error:          #C0392B;
  --color-error-bg:       #FDEDEC;

  /* Typography */
  --font-display:  'Barlow Condensed', sans-serif;  /* Headlines, nav, buttons */
  --font-body:     'Barlow', sans-serif;             /* Body copy, form labels */

  /* Spacing Scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  /* Shadows */
  --shadow-card:   0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-modal:  0 8px 48px rgba(0,0,0,0.22);

  /* Layout */
  --max-width:    1160px;
  --nav-height:   64px;
}

/* ============================================================
   2. BASE RESET & TYPOGRAPHY
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal-text);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-teal);
  color: var(--color-navy);
}

.btn-primary:hover { background: var(--color-teal-dark); }

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.28);
}

.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-dark:hover { background: var(--color-navy-mid); }

/* Screenshot placeholder
   DEVELOPER: Replace these divs with real <img> tags before launch */
.screenshot-placeholder {
  background: var(--color-surface-alt);
  border: 1.5px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-tertiary);
  font-size: 13px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screenshot-placeholder i { color: var(--color-border-strong); }

/* ============================================================
   3. NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 0.5px solid var(--color-border);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-wms {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-right: 0.15em;
}
.logo-intelligence {
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.08em;
  margin-left: -2px;
}

.nav-logo .logo-intelligence { color: var(--color-teal-text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: color 0.15s;
}

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

.nav-cta {
  /* Uses .btn .btn-dark — see button classes above */
  padding: 9px 20px;
  font-size: 13px;
}

/* ============================================================
   4. HERO SECTION
   ============================================================ */

.hero {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}

/* Subtle grid-line texture — evokes warehouse racking */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-teal);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.02;
  color: var(--color-white);
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.hero-headline em {
  font-style: normal;
  color: var(--color-teal);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero credential card — "Built for Acumatica" */
.hero-credential {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(74,196,160,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.hero-credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,196,160,0.15);
  border: 1px solid rgba(74,196,160,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
}

.hero-credential-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-xs);
}

.hero-credential-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.hero-credential-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.1);
  margin: var(--space-md) 0;
}

.hero-stat {
  margin-bottom: var(--space-sm);
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-teal);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   5. ACUMATICA TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--color-white);
  border-bottom: 0.5px solid var(--color-border);
  padding: var(--space-md) 0;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-teal-subtle);
  color: var(--color-teal-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.trust-bar-text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.trust-bar-text strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.trust-bar-sep {
  width: 0.5px;
  height: 20px;
  background: var(--color-border-strong);
  flex-shrink: 0;
}

/* DEVELOPER: Replace this block with real Acumatica partner badge image
   Confirm logo usage rights with Acumatica / ISV program before publishing */
.acumatica-badge-placeholder {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-left: auto;
}

/* ============================================================
   6. DIFFERENTIATORS SECTION
   ============================================================ */

.diff-section {
  padding: 72px 0;
  background: var(--color-white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: var(--space-lg);
}

.diff-card {
  background: var(--color-white);
  padding: 32px 28px;
  transition: background 0.15s;
}

.diff-card:hover { background: #FAFBFC; }

.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-teal-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-teal-text);
}

.diff-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.diff-body {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   7. MODULE SHOWCASE SECTION
   ============================================================ */

.modules-section {
  padding: 72px 0;
  background: var(--color-bg);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.mod-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow 0.15s, transform 0.15s;
}

.mod-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.mod-card.mod-coming-soon {
  opacity: 0.55;
  border-style: dashed;
}

.mod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  margin-bottom: var(--space-md);
}

.mod-card.mod-coming-soon .mod-dot {
  background: var(--color-text-tertiary);
}

.mod-icon {
  color: var(--color-teal-text);
  margin-bottom: var(--space-md);
}

.mod-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.mod-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Screenshot area inside module card
   DEVELOPER: Replace with real <img> of scanner/portal UI */
.mod-screenshot {
  height: 100px;
}

.mod-coming-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  background: var(--color-surface-alt);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: var(--space-xs);
}

/* ============================================================
   8. VAR CALL-TO-ACTION BAND
   ============================================================ */

.var-band {
  background: var(--color-navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.var-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}

.var-band-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.var-band-heading {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

.var-band-heading em {
  font-style: normal;
  color: var(--color-teal);
}

.var-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 420px;
  line-height: 1.6;
}

/* ============================================================
   9. FOOTER
   ============================================================ */

.footer {
  background: var(--color-navy);
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 40px 0 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.footer-logo .logo-intelligence { color: var(--color-teal); }

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  width: 100%;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 0.5px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   10. REGISTRATION MODAL
   ============================================================ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 18, 32, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-modal);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  position: relative;
}

/* Modal header — dark band for authority */
.modal-header {
  background: var(--color-navy);
  padding: 28px 32px 24px;
  position: relative;
}

.modal-header-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-header-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.modal-header-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.18);
  color: var(--color-white);
}

/* Security trust indicators — critical for VAR confidence */
.modal-security-bar {
  background: var(--color-teal-subtle);
  border-bottom: 0.5px solid rgba(15,110,86,0.15);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal-text);
}

/* Modal form body */
.modal-body {
  padding: 28px 32px 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-primary);
  background: var(--color-white);
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(74,196,160,0.18);
}

.form-input.input-icon-wrap {
  padding-left: 38px;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-tertiary);
  pointer-events: none;
}

.form-textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-top-color: var(--color-text-tertiary);
  border-bottom: none;
  margin-top: 2px;
  pointer-events: none;
}

/* Privacy note under form */
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.form-privacy-icon { color: var(--color-teal-text); flex-shrink: 0; margin-top: 1px; }

.form-privacy a { color: var(--color-teal-text); text-decoration: underline; }

.modal-submit {
  width: 100%;
  margin-top: var(--space-md);
  padding: 14px;
  font-size: 16px;
  justify-content: center;
  border-radius: var(--radius-md);
}

/* ============================================================
   11. EMAIL VERIFICATION CONFIRMATION STATE
   DEVELOPER: Show this view and hide .modal-form-view after submit
   ============================================================ */

.modal-form-view { display: block; }
.modal-confirm-view { display: none; }

.modal-confirm-view.is-visible {
  display: block;
}

.modal-confirm-body {
  padding: 48px 32px;
  text-align: center;
}

.confirm-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-teal-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-teal-text);
}

.confirm-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.confirm-sub {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 360px;
  margin: 0 auto var(--space-lg);
}

.confirm-sub strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.confirm-steps {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.confirm-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.confirm-step:last-child { margin-bottom: 0; }

.confirm-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.confirm-step-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.confirm-step-text strong {
  color: var(--color-text-primary);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.confirm-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* Form error styles */
.form-error {
  color: var(--color-error);
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--color-error);
}

/* ============================================================
   MOBILE RESPONSIVE STYLES
   Desktop design preserved above 768px
   ============================================================ */

@media (max-width: 768px) {
  /* Adjust spacing scale for mobile */
  :root {
    --space-xl: 24px;
    --space-2xl: 40px;
  }

  /* Container padding */
  .container {
    padding: 0 var(--space-md);
  }

  /* Navigation */
  .nav-inner {
    padding: 0 var(--space-md);
    justify-content: center; /* Center logo */
    gap: 0;
  }

  .nav-logo {
    font-size: 24px; /* Larger on mobile */
  }

  .nav-links {
    display: none; /* Hide nav links on mobile */
  }

  .nav-cta {
    display: none; /* Hide CTA button on mobile */
  }

  /* Hero */
  .hero {
    padding: 48px 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-credential {
    padding: var(--space-md);
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .acumatica-badge-placeholder {
    margin-left: 0;
  }

  /* Section titles */
  .section-title {
    font-size: 28px;
  }

  /* Differentiators */
  .diff-section {
    padding: 48px 0;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Modules */
  .modules-section {
    padding: 48px 0;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* VAR band */
  .var-band {
    padding: 40px 0;
  }

  .var-band-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .var-band-heading {
    font-size: 28px;
  }

  .var-band-inner .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 32px 0 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Modal */
  .modal {
    max-width: 100%;
    margin: var(--space-md);
  }

  .modal-header {
    padding: 20px var(--space-md);
  }

  .modal-body {
    padding: var(--space-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
}
/* Update logo styling */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,400&display=swap");


.nav-logo .logo-intelligence {
  color: var(--color-teal-text);
  font-family: "Mrs Saint Delafield", cursive;
  
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-logo .logo-intelligence {
  color: var(--color-teal);
  font-family: "Mrs Saint Delafield", cursive;
  
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Mobile: Navy header background with teal accent */
@media (max-width: 768px) {
  .nav {
    background: var(--color-navy);
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
  }

  .nav-logo {
    color: var(--color-white);
    font-size: 28px; /* Larger for prominence */
  }

  .nav-logo .logo-intelligence {
    color: var(--color-teal); /* Same as hero eyebrow */
  }
}

/* ============================================================
   FOR VARS PAGE STYLES
   ============================================================ */

/* Problems Section */
.problems-section {
  padding: 72px 0;
  background: var(--color-white);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.problem-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
}

.problem-col, .solution-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.solution-col {
  border-left: 3px solid var(--color-teal);
  padding-left: var(--space-lg);
}

.problem-label, .solution-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.solution-label {
  color: var(--color-teal-text);
}

.problem-text, .solution-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.solution-text {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.industry-tile {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow 0.15s, transform 0.15s;
}

.industry-tile:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.industry-icon {
  width: 28px;
  height: 28px;
  color: var(--color-teal-text);
  margin-bottom: var(--space-md);
}

.industry-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.industry-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.industry-closing {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: var(--space-xl);
  font-style: italic;
}

/* Process Steps */
.process-section {
  padding: 72px 0;
  background: var(--color-bg);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  opacity: 0.15;
}

.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.step-body {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.process-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-tertiary);
  margin-top: var(--space-xl);
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 72px 0;
  background: var(--color-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding-bottom: var(--space-lg);
  border-bottom: 0.5px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.faq-a {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Mobile responsive for new components */
@media (max-width: 768px) {
  .problem-pair {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .solution-col {
    border-left: none;
    border-top: 3px solid var(--color-teal);
    padding-left: 0;
    padding-top: var(--space-md);
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
  }

  .step-number {
    font-size: 48px;
  }

  .step-title {
    font-size: 20px;
  }
}

/* Integration Section */
.integration-section {
  padding: 72px 0;
  background: var(--color-bg);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.integration-card {
  background: var(--color-white);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow 0.15s, transform 0.15s;
}

.integration-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.integration-closing {
  margin-top: var(--space-2xl);
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.integration-closing-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.integration-closing-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile: stack integration cards */
@media (max-width: 768px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, #003d5b 0%, #005f8c 100%);
  color: #ffffff;
  padding: 8rem 0 6rem;
  text-align: center;
}

.about-hero .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #54ebc5;
  margin-bottom: 1.5rem;
}

.about-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.about-hero .hero-sub {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* About Sections */
.about-section {
  padding: 5rem 0;
}

.about-section:nth-child(even) {
  background-color: #f8f9fa;
}

.about-section .section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #54ebc5;
  margin-bottom: 1rem;
}

.about-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #003d5b;
  margin-bottom: 2rem;
  max-width: 900px;
}

.about-section .section-body {
  max-width: 900px;
}

.about-section .section-body p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.about-section .section-body p:last-child {
  margin-bottom: 0;
}

/* Institution styling (IBM, AmEx) */
.institution {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #54ebc5;
}

/* Founder Photo Placeholder */
.founder-photo-placeholder {
  float: right;
  width: 300px;
  height: 400px;
  margin: 0 0 2rem 2rem;
  background: linear-gradient(135deg, #003d5b 0%, #005f8c 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

/* About CTA Band */
.about-cta {
  background: linear-gradient(135deg, #003d5b 0%, #005f8c 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.about-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.about-cta p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.about-cta .btn {
  margin-bottom: 1rem;
}

.about-cta .reassurance {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero {
    padding: 5rem 0 4rem;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero .hero-sub {
    font-size: 1rem;
  }
  
  .about-section {
    padding: 3rem 0;
  }
  
  .about-section h2 {
    font-size: 1.75rem;
  }
  
  .about-section .section-body p {
    font-size: 1rem;
  }
  
  .founder-photo-placeholder {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
  }
  
  .about-cta {
    padding: 3rem 0;
  }
  
  .about-cta h2 {
    font-size: 1.75rem;
  }
}
/* Utility class for hiding elements */
.hidden {
  display: none !important;
}
