/* LockDash Solutions — Landing Page Styles */

:root {
  --navy: #1b2a4a;
  --navy-light: #24365e;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --slate: #5b6b85;
  --bg: #f5f7fb;
  --white: #ffffff;
  --border: #e2e7f0;
  --shadow: 0 10px 30px rgba(27, 42, 74, 0.08);
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.55;
  width: 100%;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

.eyebrow {
  display: inline-block;
  color: var(--blue-dark);
  background: rgba(59, 130, 246, 0.1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.2; }

h2.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

p.section-lede {
  color: var(--slate);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-head.left { text-align: left; margin: 0 0 48px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline-navy:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; }
.brand img { width: 40px; height: 40px; }
.brand .brand-name span { color: var(--blue); }
.brand small { display: block; font-size: 11px; letter-spacing: 3px; color: var(--slate); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--navy-light); }
.nav-links a:hover { color: var(--blue-dark); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, #16233f 100%);
  color: var(--white);
  padding: 100px 0 0;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; }
.hero h1 .accent { color: var(--blue); }
.hero p.lede { color: #c3ccdd; font-size: 18px; max-width: 520px; margin-bottom: 32px; }
.hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 26px; font-weight: 800; color: var(--white); }
.hero-stats div span { font-size: 13px; color: #9aa8c4; }

.hero-visual { position: relative; }
.browser-frame {
  background: #0f1830;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #101c38;
}
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #45527a; }
.browser-frame img { display: block; width: 100%; }

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  color: var(--navy);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }

/* Marquee / trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
}
.trust-item .ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(59,130,246,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-dark);
  font-size: 15px;
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .ico {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 17px; }
.value-card p { color: var(--slate); font-size: 14.5px; margin: 0; }

/* Modules */
.modules-section { background: var(--white); }
.module-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.module-tabs button {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
}
.module-tabs button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.module-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg);
}
.module-card h4 { font-size: 15.5px; display: flex; align-items: center; gap: 10px; }
.module-card h4 .tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(59,130,246,0.12);
  color: var(--blue-dark);
  text-transform: uppercase;
}
.module-card ul { margin: 10px 0 0; padding-left: 18px; color: var(--slate); font-size: 13.5px; }
.module-card ul li { margin-bottom: 4px; }

/* Spotlight (freeze + RFID) */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spotlight-reverse .spotlight { grid-template-columns: 1fr 1fr; }
.spotlight-reverse .spotlight > div:first-child { order: 2; }

.table-scroll { width: 100%; overflow-x: auto; border-radius: var(--radius); }

.mini-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.mini-table th, .mini-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.mini-table th { background: var(--navy); color: var(--white); font-weight: 600; width: 34%; }
.mini-table tr:last-child td { border-bottom: none; }

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-list span {
  background: rgba(59,130,246,0.1);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* Screenshots gallery */
.gallery-section { background: linear-gradient(180deg, var(--white), var(--bg)); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 4px 14px rgba(27,42,74,0.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item .thumb-wrap { aspect-ratio: 16/10; overflow: hidden; background: #0f1830; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery-caption { padding: 14px 16px; font-size: 14px; font-weight: 600; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(15, 24, 48, 0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: var(--white);
  font-size: 34px; background: none; border: none; cursor: pointer; line-height: 1;
}
.lightbox-caption { position: absolute; bottom: 28px; color: #d5dbec; font-size: 14px; font-weight: 600; }

/* Roles + reports */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel h3 { font-size: 19px; margin-bottom: 18px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { font-size: clamp(26px, 3vw, 36px); }
.cta-band p { color: #dbe6ff; max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero-ctas { justify-content: center; display: flex; gap: 16px; flex-wrap: wrap; }

/* Contact: schedule + inquiry panels */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
  align-items: start;
}

.schedule-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.calendly-inline-widget { width: 100%; }

/* Inquiry form */
.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13.5px; font-weight: 600; color: var(--navy-light); }
.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--navy);
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.inquiry-form button[disabled] { opacity: 0.65; cursor: not-allowed; }
.form-status { margin: 0; font-size: 13.5px; font-weight: 600; min-height: 18px; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

/* Thank-you page */
.thank-you-section { padding: 96px 0; }
.thank-you-card {
  max-width: 680px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 56px 48px;
}
.thank-you-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #16a34a;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.3);
}
.thank-you-card h1 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; }
.thank-you-card .lede { color: var(--slate); font-size: 16.5px; max-width: 520px; margin: 0 auto 36px; }
.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 40px;
}
.thank-you-steps .step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.thank-you-steps p { margin: 0; font-size: 13.5px; color: var(--slate); }

/* Footer */
footer.site-footer {
  background: #101c38;
  color: #aeb9d4;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid .brand { color: var(--white); margin-bottom: 12px; }
.footer-grid p { font-size: 14px; color: #96a3c4; max-width: 320px; }
.footer-grid h5 { color: var(--white); font-size: 14px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: 14px; color: #aeb9d4; }
.footer-grid ul a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7d8ab0;
}

/* Responsive */

/* Tablet: collapse the horizontal nav into a hamburger before it gets cramped */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-outline-navy { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 980px) {
  .hero { padding-top: 76px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 28px; }
  .value-grid, .module-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .thank-you-steps { grid-template-columns: 1fr; }
  .thank-you-card { padding: 40px 28px; }
  .spotlight, .spotlight-reverse .spotlight { grid-template-columns: 1fr; }
  .spotlight-reverse .spotlight > div:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .value-grid, .module-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  .hero-badge { display: none; }
  .lightbox { padding: 20px; }
  .lightbox-close { top: 12px; right: 16px; font-size: 30px; }
  .schedule-panel { padding: 24px; margin-top: 24px; }
  .calendly-inline-widget { height: 780px !important; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 44px 0; }
  .hero { padding-top: 56px; }
  .nav { padding: 12px 16px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand img { width: 32px; height: 32px; }
  .brand small { font-size: 9px; letter-spacing: 2px; }
  .nav-cta .btn { padding: 8px 14px; font-size: 13px; }
  .hero-ctas .btn, .cta-band .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  p.section-lede { margin-bottom: 32px; }
  .value-card, .module-card { padding: 18px; }
  .panel { padding: 20px; }
  .cta-band { padding: 28px 18px; margin: 0 16px; border-radius: 18px; }
  .mini-table th, .mini-table td { padding: 10px 12px; font-size: 13px; }
  .mini-table { min-width: 0; }
  .table-scroll { overflow-x: auto; }
  .badge-list span { font-size: 12px; padding: 6px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .schedule-panel { padding: 16px; border-radius: 12px; }
  .calendly-inline-widget { height: 820px !important; }
  .thank-you-section { padding: 56px 0; }
  .thank-you-card { padding: 28px 18px; border-radius: 16px; }
  .thank-you-card .hero-ctas .btn { width: 100%; justify-content: center; }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
