:root {
  --white: #ffffff;
  --black: #0b0b0b;
  --navy: #12233d;
  --soft: #f6f8fb;
  --accent: #0f766e;
  --text: #334155;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(6px);
  z-index: 20;
}

.nav-wrap {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.45rem;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.1rem;
}

.nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--navy);
}

.section {
  padding: 5rem 0;
}

.bg-soft {
  background: var(--soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  margin: 0 0 0.7rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.lead {
  font-size: 1.1rem;
  max-width: 620px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.microcopy {
  color: #64748b;
  font-size: 0.9rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.68rem 1.15rem;
  font-weight: 700;
  font-size: 0.88rem;
  transition: 0.2s ease;
}

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

.btn-dark:hover {
  background: #0b1529;
}

.btn-light {
  border: 1px solid #cbd5e1;
  color: var(--navy);
  background: var(--white);
}

.btn-light:hover {
  border-color: var(--navy);
}

.grid-3 {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.feature,
.project,
.faq article {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 12px 30px rgba(18, 35, 61, 0.08);
}

.feature {
  font-weight: 600;
}

.project {
  overflow: hidden;
  padding: 0;
}

.project img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 800;
}

.featured {
  background: var(--navy);
  color: #dbeafe;
}

.featured h3,
.featured .price {
  color: var(--white);
}

.faq {
  display: grid;
  gap: 0.8rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.full {
  width: 100%;
  text-align: center;
}

.footer {
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 1.2rem;
}

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

  .two-col,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }
}
