:root{
  --bg:#f6f8fb;
  --panel:#ffffff;
  --card:#ffffff;
  --text:#0b1b33;
  --muted:#56657b;
  --border:rgba(11,27,51,.12);
  --accent:#0b2a5b;
  --accent2:#1f4f99;
  --shadow:0 20px 60px rgba(11,27,51,.12);
  --radius:18px;
  --max:1100px;
  --gap:18px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(900px 700px at 10% 0%, rgba(11,42,91,.08), transparent 55%),
              radial-gradient(900px 700px at 90% 0%, rgba(31,79,153,.08), transparent 55%),
              var(--bg);
  line-height:1.55;
}

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

.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }
.page{ padding:48px 0 60px; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:18px; width:auto; height:auto;
  padding:10px 12px; background:#fff; border:1px solid var(--border); border-radius:10px;
}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(246,248,251,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.brand{ display:flex; gap:10px; align-items:center; }
.brand-mark{
  width:40px; height:40px;
  display:grid; place-items:center;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(11,42,91,.12), rgba(31,79,153,.12));
  border-radius:14px;
  box-shadow: var(--shadow);
}
.brand-logo{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:700; letter-spacing:.2px; }
.brand-tag{ font-size:13px; color:var(--muted); margin-top:3px; }

.nav{ display:flex; align-items:center; gap:16px; }
.nav a{ padding:8px 10px; border-radius:12px; }
.nav a[aria-current="page"]{ background: rgba(255,255,255,.06); }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  background: #fff;
  border-radius:14px;
}
.nav-toggle span{
  display:block;
  width:20px; height:2px;
  background: var(--text);
  margin:5px auto;
  border-radius:2px;
}

.mobile-nav{
  border-top:1px solid var(--border);
  padding:10px 18px 16px;
  display:grid;
  gap:10px;
}
.mobile-nav[hidden]{
  display:none;
}
.mobile-nav a{
  padding:10px 12px;
  border:1px solid var(--border);
  background: #fff;
  border-radius:14px;
}

.hero{ padding:44px 0 22px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy h1{ font-size: clamp(32px, 3.6vw, 52px); margin:0 0 10px; letter-spacing:-.6px; }
.lead{ font-size: 18px; color: rgba(11,27,51,.85); margin:0 0 18px; }
.trust-list{
  list-style:none; padding:0; margin:18px 0 0;
  display:grid; gap:8px;
  color:var(--muted);
}

.hero-card{
  border:1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-image{ width:100%; height:220px; object-fit:cover; display:block; background:#e8edf5; }
.hero-card-body{ padding:16px; }

.section{ padding:34px 0; }
.section-alt{
  background: rgba(11,27,51,.04);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section h2{ font-size: 28px; margin:0 0 10px; }
.h3{ font-size: 22px; margin:0 0 8px; }
.h4{ font-size: 18px; margin:0 0 6px; }

.muted{ color:var(--muted); }
.small{ font-size:13px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:var(--gap);
  margin-top:16px;
}
.card{
  border:1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.list{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.list li{ margin:6px 0; }

.steps{
  display:grid;
  gap:14px;
  margin-top:16px;
}
.step{
  display:flex; gap:12px; align-items:flex-start;
  border:1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding:14px;
}
.step-num{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(11,42,91,.12);
  border:1px solid var(--border);
  font-weight:700;
}

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(11,42,91,.8);
  background: linear-gradient(135deg, rgba(11,42,91,.95), rgba(31,79,153,.95));
  color: #fff;
  font-weight:700;
  box-shadow: var(--shadow);
}
.button:hover{ text-decoration:none; transform: translateY(-1px); }
.button:active{ transform: translateY(0px); }

.button-ghost{
  border:1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.button-small{ padding:10px 12px; border-radius: 12px; font-weight:700; }

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; }

.contact-buttons{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }

.section-cta{ margin-top:18px; }

.banner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:16px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(11,42,91,.10), rgba(31,79,153,.10));
  box-shadow: var(--shadow);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
  margin-top: 18px;
}
.gallery-item{
  margin:0;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  background:#e8edf5;
}
.gallery-item figcaption{ padding:10px 12px; }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 18px;
}
.pre{
  white-space: pre-wrap;
  background: #f0f3f9;
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  overflow:auto;
}

.site-footer{
  border-top:1px solid var(--border);
  padding: 22px 0;
  margin-top: 30px;
  background: #f0f3f9;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
  align-items:start;
}
.footer-links, .footer-contact{
  display:grid; gap:10px;
}
.footer-brand .brand-mark{ width:36px; height:36px; border-radius:14px; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:#eef2f8;
  border:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}

.info-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:var(--gap);
  margin-top:18px;
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:var(--gap);
  margin-top:18px;
}
.price-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:16px;
  box-shadow:var(--shadow);
}
.price{
  font-size:28px;
  font-weight:700;
  color:var(--accent);
}

.form{
  display:grid;
  gap:12px;
}
.form label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}
.input, .textarea, .select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-family:inherit;
  font-size:15px;
}
.textarea{ min-height:140px; resize:vertical; }
.form-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.note{
  background:#eef2f8;
  border:1px dashed var(--border);
  padding:12px;
  border-radius:12px;
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 860px){
  main.page{
    padding-left:18px;
    padding-right:18px;
  }
  .nav{ display:none; }
  .nav-toggle{ display:inline-block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .info-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}
