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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #f7f7f7;
}

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

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }

/* Header */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: auto;
  text-decoration: none;
}

.logo img {
  width: auto;      /* adjust to 36 or 48 if you want */
  height: 10px !important;
}



.logo-line2 {
  color: #0077ff;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.main-nav a.active,
.main-nav a:hover {
  background: #0077ff0f;
  color: #0077ff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 3rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-bg {
  width: 100%;
  height: 260px;
  max-width: 450px;
  border-radius: 12px;
  background-image: url('assets/img/hallway-lvt-after.jpg');
  background-size: cover;
  background-position: center;
}



.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #0077ff;
  color: #fff;
}

.btn.primary:hover {
  background: #005fd1;
}

.btn.secondary {
  background: #eef4ff;
  color: #0051a3;
}

.btn.secondary:hover {
  background: #dde7ff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #555;
}

.hero-image {
  justify-self: center;
  width: 100%;
  max-width: 380px;
}

.hero-placeholder {
  border-radius: 1rem;
  border: 1px dashed #c7d7f7;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #667;
  background: #f8fbff;
}

/* Sections */

section {
  padding: 2.5rem 0;
}

section:nth-of-type(even) {
  background: #ffffff;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* How it works */

.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #0077ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0077ff;
  margin-bottom: 0.75rem;
}

/* Cards / grids */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.card.soft {
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.03);
}

.projects .project-card .image-placeholder {
  height: 160px;
  border-radius: 0.8rem;
  border: 1px dashed #c7d7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #667;
  margin-bottom: 0.75rem;
}

/* Two-column layouts */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Lists */

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0077ff;
  font-size: 0.9rem;
}

.link {
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Page hero */

.page-hero {
  background: #f0f7ff;
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-content {
  padding-top: 2rem;
}

/* Founder card */

.founder-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 1px dashed #c7d7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #667;
}

/* FAQ */

.faq-list details {
  border-radius: 0.8rem;
  background: #ffffff;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.03);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0.6rem;
}

/* Forms */

.form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

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

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d0d7e2;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.small {
  font-size: 0.85rem;
  color: #666;
}

/* Multi-step form */

.multi-step .form-step {
  display: none;
}

.multi-step .form-step.active {
  display: block;
}

.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pricing-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.pricing-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Tables (for admin + jobs) */

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.85rem;
}

th, td {
  border: 1px solid #e3e3e3;
  padding: 0.4rem 0.5rem;
  text-align: left;
}

th {
  background: #f3f4f6;
}

/* Footer */

.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.site-footer .logo {
  font-size: 1.1rem;
}

.site-footer .logo span {
  color: #60a5fa;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .how-it-works .steps,
  .grid-3,
  .two-col,
  .pricing-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    gap: 1rem;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    inset: 55px 0 auto 0;
    background: #ffffff;
    padding: 0.75rem 1.5rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid #e3e3e3;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
