:root {
  --blue: #071b82;
  --blue-2: #0b2aa5;
  --yellow: #ffe500;
  --yellow-2: #f5c900;
  --ink: #101828;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f6f8ff;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(7, 27, 130, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--blue);
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  color: #26324d;
}

.nav a:hover,
.facebook-link:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
}

.header-cta,
.btn.primary {
  color: var(--blue);
  background: var(--yellow);
  box-shadow: 0 12px 32px rgba(245, 201, 0, 0.22);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(30px, 5vw, 72px);
  min-height: 760px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 229, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #06145e 0%, #071b82 54%, #0b2aa5 100%);
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.7vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

h2 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.24;
}

.hero-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mobile-only {
  display: none;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof strong {
  color: var(--yellow);
  font-size: 28px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.hero-panel {
  align-self: center;
  position: relative;
  min-width: 0;
  min-height: 500px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 130, 0.14), rgba(7, 27, 130, 0.84));
}

.delivery-mark {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 8px;
}

.delivery-mark img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.panel-list {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.panel-list span {
  padding: 14px 12px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.section,
.contact {
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 70px);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head.compact {
  display: block;
}

.section-head p,
.product-grid p,
.service-list p,
.steps p,
.contact-copy p,
.legal p {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-grid article,
.service-list article,
.steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 27, 130, 0.08);
  overflow: hidden;
}

.product-grid article div,
.service-list article div,
.steps article {
  padding: 22px;
}

.product-grid img,
.service-list img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-grid span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
}

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

.contact {
  background: var(--blue);
  color: var(--white);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 560px);
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.contact h2 {
  color: var(--white);
}

.facebook-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--yellow);
  font-weight: 900;
}

.company-info {
  display: grid;
  gap: 8px;
  max-width: 460px;
  margin-top: 26px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.company-info strong {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.span-2 {
  grid-column: span 2;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.privacy-check input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #050b2e;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 30px;
  padding: 46px clamp(18px, 5vw, 70px);
}

.footer-inner img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
}

.footer-inner strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-inner a {
  display: block;
  margin-bottom: 10px;
}

.footer-inner span {
  display: block;
  margin-bottom: 10px;
}

.footer-brand {
  max-width: 360px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px clamp(18px, 5vw, 70px) 70px;
}

.legal h1 {
  color: var(--blue);
  font-size: clamp(34px, 4.4vw, 58px);
}

.legal h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 24px;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section-head,
  .process,
  .contact-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .brand span,
  .header-cta {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 20px;
    overflow-x: visible;
  }

  .hero {
    display: block;
    padding-top: 44px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-copy,
  .hero-copy > p,
  h1 {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .mobile-only {
    display: block;
  }

  .hero-copy > p {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-proof {
    align-items: flex-start;
    max-width: 320px;
  }

  .hero-proof span {
    font-size: 14px;
  }

  .hero-panel {
    width: 100%;
    margin-top: 34px;
    min-height: 360px;
  }

  .panel-list,
  .product-grid,
  .service-list,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
