:root{
  --ink:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --blue:#2a74b8;
  --blue2:#1f5d96;
  --orange:#e6903a;
  --shadow: 0 10px 25px rgba(0,0,0,.12);
  --radius: 14px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--ink); background:#fff; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width:min(1100px, calc(100% - 32px));  margin-inline:auto; }

.topbar{ background:#f7f7f7; border-bottom:1px solid var(--line); font-size:12px;}

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

.topbar__left{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.topbar__brand{ font-weight:700; }

.topbar__sub{ color:var(--muted); }

.topbar__link{ color:var(--blue2); }

.header__inner { flex-wrap: wrap; }

img {  max-width: 100%; height: auto; }

.header{ background:#fff; border-bottom:1px solid var(--line);  position:sticky; top:0; z-index:50;}

.header__inner{
  display:grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items:center;
  gap:16px;
  padding:16px 0;
}

.logo img{ width:120px; height:auto; }

.header__title{ display:flex; flex-direction:column; gap:6px; min-width:0; }

.kicker{ letter-spacing:.14em; text-transform:uppercase; color:var(--muted); font-weight:600; font-size:14px; }

.headline{ display:flex; align-items:baseline; flex-wrap:wrap; gap:10px; }

.headline__main{ font-size:30px; font-weight:500; }

.headline__meta{ color:var(--muted); font-style:italic; font-weight:500; }

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
  white-space:nowrap;
}
.nav a{
  color:#374151;
  font-weight:500;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{ background:#f3f4f6; }
.nav a.is-active{ background:#eef6ff; color:#0f3f6a; }

.callbtn{
  background:var(--orange);
  color:#fff;
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  box-shadow: 0 8px 18px rgba(230,144,58,.25);
  white-space:nowrap;
}
.callbtn:hover{ filter:brightness(.97); }

.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:#111827;
  margin:6px 0;
  border-radius:2px;
}

.mobilemenu{
  border-top:1px solid var(--line);
  background:#fff;
}
.mobilemenu__inner{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:12px 0 16px;
}
.mobilemenu a{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
}
.mobilemenu__call{
  background:var(--blue);
  color:#fff;
  border:none !important;
  text-align:center;
  font-weight:700;
}

/* Hero */
.hero{ position:relative; overflow:hidden; height: 420px; max-height: 520px; 
       backgound-image: url("images/header.jpg"); background-size: cover; background-position: center top; background-repeat: no-repeat;}

.hero__overlay{ position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,.14), rgba(0,0,0,.14)); }

.hero__content{ position:relative;  height:10%; display:flex; align-items:center; justify-content:center; text-align:center; }

.hero__text{  margin:0;  font-family: "Georgia", "Times New Roman", serif; font-weight:700; letter-spacing:.06em;
  font-size: clamp(28px, 4vw, 52px); color: rgba(20,20,20,.70); text-shadow: 0 2px 12px rgba(255,255,255,.45);
  border-bottom: 3px solid rgba(20,20,20,.45); padding-bottom:8px;}

/* Sections */
.section{ padding-top:24px; position: relative; z-index: 1; 
}

.section--muted{ background:#fafafa; border-top:1px solid var(--line);
}
.section__title{  text-align:center; font-size:38px; font-weight:500; margin:0 0 0 0px;
}

.section__subtitle{  text-align:center;  color:var(--muted); margin:0 auto 34px; max-width:720px;  line-height:1.6;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:stretch;
}
.card{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  border:1px solid rgba(229,231,235,.8);
  display:flex;
  flex-direction:column;
}
.card__img{
  width:100%;
  height:190px;
  object-fit:contain;
  background: #fff;
  padding:12px;
}
.card__body{
  padding:18px 18px 22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
  text-align:center;
}
.card__text{ margin:0; color:#111827; line-height:1.5; max-width:420px; }
.btn{
  display:inline-block;
  background: var(--blue);
  color:#fff;
  font-weight:700;
  padding:12px 18px;
  border-radius:999px;
  box-shadow: 0 10px 18px rgba(42,116,184,.25);
}
.btn:hover{ background: var(--blue2); }
.btn--ghost{
  background: transparent;
  color: var(--blue2);
  border:1px solid rgba(31,93,150,.35);
  box-shadow:none;
}
.btn--ghost:hover{ background:#f3f7ff; }

.disclaimer{
  margin:26px auto 0;
  text-align:center;
  color:var(--muted);
  font-size:12px;
  max-width:920px;
}

/* Page hero (inner pages) */
.pagehero{
  background: url("assets/gradient1.jpg") center/cover no-repeat;
  border-bottom:1px solid var(--line);
}
.pagehero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  padding:34px 0;
  align-items:center;
}
.pagehero__title{ margin:0 0 8px; font-size:40px; font-weight:650; }
.pagehero__subtitle{ margin:0 0 18px; color:var(--muted); line-height:1.6; max-width:58ch; }
.pagehero__actions{ display:flex; gap:10px; flex-wrap:wrap; }
.pagehero__img{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(229,231,235,.9);
  background:#fff;
  padding:10px;
  box-shadow: var(--shadow);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:start;
}
.panel{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.panel h2{ margin:0 0 10px; font-size:22px; }
.panel p{ margin:0; color:var(--muted); line-height:1.6; }

.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}
.pricing img{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  padding:10px;
}

.footer{
  background: var(--blue);
  color:#eaf2ff;
  padding:18px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  font-size:13px;
}
.footer a{ color:#eaf2ff; text-decoration:underline; }

@media (max-width: 820px){
  .hero__bg{ display: none; }
  .hero__overlay{ display: none ; }
  .header__inner{ grid-template-columns: 120px 1fr auto; }
  .nav, .callbtn{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }
  .hero{ height: auto; min-height: 0; max-height:none; padding: 0; margin-bottom: 0; }
  .section{ padding-top: 8px; }
  .section__title{ margin-top: 0; }
  .cards,
  .split,
  .pricing{ grid-template-columns: 1fr; }
  .headline__main{ font-size:26px; }
}




