﻿:root {
  --brand: #0a68b7;
  --brand-dark: #074b85;
  --ink: #1d2733;
  --muted: #5f6f80;
  --line: #dbe7f2;
  --soft: #f3f8fc;
  --accent: #20a88a;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: #f6f8fb; line-height: 1.6; }
a { color: var(--brand); }
.topbar { background: var(--brand); color: #fff; padding: 26px 18px 18px; text-align: center; }
.topbar h1 { margin: 0 0 8px; font-size: 2rem; line-height: 1.2; }
.tagline { margin: 0 auto 14px; max-width: 860px; color: #e8f4ff; }
.nav { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.nav a { color: #fff; text-decoration: none; padding: 6px 10px; border-radius: 6px; }
.nav a.active, .nav a:hover { background: rgba(255,255,255,.16); }
.wrap { max-width: 1180px; margin: 28px auto 44px; padding: 0 18px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; box-shadow: 0 6px 22px rgba(10,104,183,.08); }
.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: 26px; align-items: center; }
.hero img, .feature-img { width: 100%; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; }
h2 { margin: 32px 0 14px; color: var(--brand-dark); line-height: 1.25; }
h3 { margin: 18px 0 8px; color: var(--brand-dark); }
.lead { font-size: 1.08rem; color: #334155; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.card img { width: 100%; height: 210px; object-fit: cover; display: block; background: #fff; }
.card-body { padding: 16px; }
.card h3 { margin-top: 0; font-size: 1.1rem; }
.meta, .muted { color: var(--muted); font-size: .95rem; }
.tags { color: var(--brand); font-size: .93rem; margin: 6px 0 10px; }
.btn { display: inline-block; margin-top: 8px; padding: 9px 15px; color: #fff; background: var(--brand); border-radius: 6px; text-decoration: none; font-weight: 700; }
.btn:hover { background: var(--brand-dark); }
.section { margin-top: 28px; }
.list { padding-left: 20px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.product-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.product-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.cta { background: var(--soft); border: 1px solid var(--line); border-radius: 8px; padding: 20px; margin-top: 26px; }
.footer { background: var(--brand); color: #fff; text-align: center; padding: 16px; }
@media (max-width: 860px) {
  .hero, .split { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .topbar h1 { font-size: 1.55rem; }
  .panel { padding: 18px; }
  .grid, .product-gallery { grid-template-columns: 1fr; }
  .card img { height: auto; aspect-ratio: 4 / 3; }
}

.btn-light {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid rgba(255,255,255,.7);
}
.btn-light:hover {
  background: #eaf5ff;
  color: var(--brand-dark);
}
.text-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover {
  color: var(--brand);
  text-decoration: underline;
}
.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin-top: 0;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(32,168,138,.12);
}
.home-hero {
  background: linear-gradient(135deg, #0a68b7 0%, #084e89 58%, #0f7c71 100%);
  color: #fff;
  padding: 42px 18px 38px;
}
.home-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 34px;
  align-items: center;
}
.home-hero h2 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 0;
}
.home-hero .lead {
  color: #e9f6ff;
  max-width: 760px;
}
.home-hero .eyebrow {
  color: #a7f3d0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-showcase {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 12px;
  align-items: stretch;
}
.hero-showcase img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.showcase-stack {
  display: grid;
  gap: 12px;
}
.showcase-main {
  aspect-ratio: 4 / 5;
  object-position: center 62%;
}
.home-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -18px;
  position: relative;
  z-index: 2;
}
.mini-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(10,104,183,.10);
}
.mini-stat strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.6rem;
  line-height: 1.1;
}
.mini-stat span {
  color: var(--muted);
  font-size: .95rem;
}
.product-grid .card img {
  height: 230px;
}
.product-card {
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10,104,183,.12);
}
.feature-band {
  align-items: stretch;
}
.feature-panel {
  box-shadow: none;
}
.media-panel {
  padding: 0;
  overflow: hidden;
}
.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, #ffffff 0%, #edf8ff 100%);
  border-left: 5px solid #f4a21d;
}
.final-cta h2 {
  margin-top: 0;
}

@media (max-width: 860px) {
  .home-hero-inner, .hero-showcase { grid-template-columns: 1fr; }
  .home-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .home-hero { padding-top: 30px; }
  .home-hero h2 { font-size: 2rem; }
  .home-strip { grid-template-columns: 1fr; margin-top: 18px; }
  .product-grid .card img { height: auto; aspect-ratio: 4 / 3; }
}
