/* ------------------------------
   Covered - Blue & White Theme
--------------------------------- */
:root{
  --bg: #f6f9ff;
  --white: #ffffff;
  --navy: #0b2a5b;
  --blue: #1e5eff;
  --blue-2: #2f7cff;
  --text: #0b1a33;
  --muted: #5b6b86;
  --border: rgba(11,42,91,0.12);
  --shadow: 0 12px 30px rgba(11,42,91,0.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--text); background: var(--bg); }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246,249,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 10px 22px rgba(30,94,255,0.25);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight: 800; color: var(--navy); }
.brand-tagline{ font-size: 12px; color: var(--muted); }

.nav-links{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav-links a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a:hover{
  background: rgba(30,94,255,0.08);
  color: var(--navy);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 12px 22px rgba(30,94,255,0.22);
}
.btn-primary:hover{
  box-shadow: 0 14px 26px rgba(30,94,255,0.28);
}

.btn-outline{
  background: rgba(255,255,255,0.7);
  border-color: rgba(30,94,255,0.25);
  color: var(--navy);
}
.btn-outline:hover{
  background: white;
  border-color: rgba(30,94,255,0.35);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(11,42,91,0.15);
  color: var(--navy);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.7);
}

/* Hero */
.hero{
  padding: 54px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}
.pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(30,94,255,0.10);
  border: 1px solid rgba(30,94,255,0.18);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--navy);
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.trust-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item{
  flex: 1 1 160px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.trust-num{
  display:block;
  font-weight: 900;
  color: var(--navy);
}
.trust-label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Mock Card */
.mock-card{
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.mock-header{
  display:flex;
  gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(30,94,255,0.12), rgba(30,94,255,0.02));
  border-bottom: 1px solid var(--border);
}
.mock-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11,42,91,0.18);
}
.mock-body{ padding: 16px; }
.mock-title{ margin: 0 0 10px; font-weight: 900; color: var(--navy); }
.mock-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mock-box{
  border-radius: 16px;
  padding: 12px;
  border: 1px dashed rgba(30,94,255,0.35);
  background: rgba(30,94,255,0.06);
}
.mock-box-title{ margin:0; font-weight: 900; color: var(--navy); font-size: 13px; }
.mock-box-text{ margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.mock-note{ margin: 12px 0 0; color: var(--muted); font-size: 12px; }

/* Section */
.section{
  padding: 34px 0 50px;
}
.section-title{
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 20px rgba(11,42,91,0.06);
}
.card-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(30,94,255,0.10);
  border: 1px solid rgba(30,94,255,0.18);
  margin-bottom: 10px;
}
.card h3{
  margin: 0 0 8px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Pricing */
.pricing{
  padding: 26px 0 44px;
}
.pricing-box{
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 22px;
}
.pricing-left h2{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
}
.pricing-desc{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}
.price-row{
  background: rgba(30,94,255,0.06);
  border: 1px solid rgba(30,94,255,0.18);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 14px;
}
.price{
  display:flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-amount{
  font-size: 36px;
  font-weight: 950;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.price-unit{
  font-weight: 800;
  color: var(--muted);
}
.price-note{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.pricing-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tiny{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.mini-list{
  background: rgba(246,249,255,0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 10px;
}
.mini-list h3{
  margin: 0 0 8px;
  color: var(--navy);
}
.mini-list ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}
.mini-callout{
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(30,94,255,0.20);
  background: linear-gradient(135deg, rgba(30,94,255,0.10), rgba(30,94,255,0.03));
}
.mini-title{
  margin: 0 0 6px;
  font-weight: 900;
  color: var(--navy);
}
.mini-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Footer */
.footer{
  margin-top: 14px;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .pricing-box{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
}
@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
}
.image-card{
  background: white;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
}

.image-card img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.contact-blob {
  margin-top: 32px;
  padding: 24px;
  background: #f7f7f7;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-blob h3 {
  margin-bottom: 8px;
}

.contact-blob p {
  margin-bottom: 14px;
  color: #555;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-links a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}