/* LogAir.ai landing page */

body.logair-landing-body {
  margin: 0;
  background: #ffffff;
  color: #071b33;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.logair-landing-body * {
  box-sizing: border-box;
}

body.logair-landing-body :where(h1, h2, h3, h4, p, blockquote) {
  margin-top: 0;
}

body.logair-landing-body :where(a, button) {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.la-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */

.la-header {
  background: linear-gradient(135deg, #030812, #071b33);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-bar .la-header {
  top: 32px;
}

.la-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.la-logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.la-logo img {
  display: block;
  width: 188px;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.la-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 700;
}

.la-nav a {
  color: #ffffff;
  text-decoration: none;
}

.la-nav a:hover,
.la-nav a:focus-visible {
  color: #63a9ff;
}

.la-header-cta {
  background: #0b63ce;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11,99,206,0.35);
}

.la-header-cta:hover,
.la-header-cta:focus-visible,
.la-btn-primary:hover,
.la-btn-primary:focus-visible {
  background: #075dcc;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(11,99,206,0.32);
}

/* Hero */

.la-hero {
  padding: 76px 0 54px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.la-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.la-hero-copy h1 {
  font-size: clamp(3rem, 5.1vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0 0 26px;
  color: #071b33;
}

.la-hero-copy h1 span {
  color: #075dcc;
}

.la-hero-copy p {
  font-size: 1.18rem;
  line-height: 1.62;
  color: #1f324c;
  max-width: 640px;
  margin: 0 0 28px;
}

.la-hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.la-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.la-btn-primary {
  background: #0b63ce;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(11,99,206,0.25);
}

.la-btn-secondary {
  color: #071b33;
  background: #ffffff;
  border: 1px solid #0b63ce;
}

.la-btn-secondary:hover,
.la-btn-secondary:focus-visible {
  color: #ffffff;
  background: #071b33;
  border-color: #071b33;
}

.la-feature-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding-top: 28px;
  padding-left: 50px;
  padding-right: 50px;
  border-top: 1px solid #dbe5f2;
}

.la-feature-row span {
  font-size: 0.86rem;
  font-weight: 800;
  color: #22364f;
}

.la-feature-row span::before {
  content: "✓";
  color: #0b63ce;
  margin-right: 8px;
}

.la-product-card-wrap {
  display: flex;
  flex-direction: column;
}

.la-product-card-heading {
  margin: 0 0 0.5rem 0;
  padding: 0;
  line-height: 1.2;
  font-size: 0.86rem;
  font-weight: 800;
  color: #22364f;
}

.la-product-card {
  background: #071b33;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(7,27,51,0.14);
  overflow: hidden;
}

.la-product-card .hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #071b33;
}

/* Solutions */

.la-solutions {
  padding: 66px 0 76px;
  background: #ffffff;
  border-top: 1px solid #e1eaf5;
}

.la-solutions h2,
.la-how h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.la-section-subtitle {
  text-align: center;
  color: #42536b;
  margin: 0 auto 34px;
  max-width: 720px;
}

.la-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.la-solution-card {
  min-height: 300px;
  background: #ffffff;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7,27,51,0.08);
}

.la-card-copy {
  padding: 30px 24px;
}

.la-card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 24px;
}

.la-buyer .la-card-icon,
.la-buyer a {
  background: #087335;
}

.la-owner .la-card-icon,
.la-owner a {
  background: #0b63ce;
}

.la-shop .la-card-icon,
.la-shop a {
  background: #5a3cb5;
}

.la-solution-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.la-buyer h3 {
  color: #087335;
}

.la-owner h3 {
  color: #0b63ce;
}

.la-shop h3 {
  color: #5a3cb5;
}

.la-solution-card h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.la-solution-card p {
  color: #253a55;
  line-height: 1.55;
  margin-bottom: 22px;
}

.la-solution-card a {
  display: inline-flex;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 0.88rem;
}

.la-solution-card a:hover,
.la-solution-card a:focus-visible {
  box-shadow: 0 10px 24px rgba(7,27,51,0.18);
  color: #ffffff;
}

/* How it works */

.la-how {
  padding: 74px 0;
  background: linear-gradient(180deg, #f7faff, #eef5ff);
}

.la-steps {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.la-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: #0b63ce;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}

.la-steps h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.la-steps p {
  margin: 0;
  color: #42536b;
  line-height: 1.55;
}

/* Trust band */

.la-why {
  padding: 74px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #030812, #0b335f);
}

.la-why-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 54px;
  align-items: center;
}

.la-why h2 {
  margin: 0 0 34px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  letter-spacing: 0;
}

.la-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.la-benefits strong {
  display: block;
  margin-bottom: 8px;
}

.la-benefits p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.la-why blockquote {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 34px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.55;
  background: rgba(255,255,255,.07);
}

.la-why cite {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,.75);
  font-style: normal;
}

/* CTA */

.la-final-cta {
  padding: 46px 0;
  background: #ffffff;
}

.la-final-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.la-final-inner h2 {
  font-size: 2rem;
  letter-spacing: 0;
  margin: 0 0 6px;
}

.la-final-inner p {
  margin: 0;
  color: #42536b;
}

.la-final-inner > div:last-child {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */

.la-footer {
  background: linear-gradient(135deg, #030812, #071b33);
  color: rgba(255,255,255,0.72);
  padding: 56px 0;
}

.la-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.la-footer-logo {
  width: 170px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.la-footer p {
  line-height: 1.55;
  max-width: 340px;
  margin-bottom: 0;
}

.la-footer h4 {
  color: #ffffff;
  margin: 0 0 14px;
}

.la-footer a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-bottom: 8px;
}

.la-footer a:hover,
.la-footer a:focus-visible {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 1100px) {
  .la-nav {
    display: none;
  }

  .la-hero-grid,
  .la-why-grid {
    grid-template-columns: 1fr;
  }

  .la-solution-grid,
  .la-steps,
  .la-benefits,
  .la-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .la-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .la-container {
    width: min(100% - 32px, 1200px);
  }

  .la-header-inner {
    min-height: auto;
    padding: 18px 0;
  }

  .la-logo img {
    width: 158px;
  }

  .la-header-cta {
    display: none;
  }

  .la-hero {
    padding: 48px 0 42px;
  }

  .la-hero-grid {
    gap: 42px;
  }

  .la-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .la-feature-row,
  .la-solution-grid,
  .la-steps,
  .la-benefits,
  .la-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .la-final-inner > div:last-child,
  .la-btn {
    width: 100%;
  }
}
