:root{
  --bg: #f6f7fb;
  --panel: #ffffff;
  --panel2: #ffffff;
  --text: #0f172a;
  --muted: #5b6b82;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
  --shadow2: 0 10px 24px rgba(15, 23, 42, 0.08);

  --accent: #2563eb;
  --accent2: #0ea5e9;
  --radius: 16px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 520px at 12% 2%, rgba(37, 99, 235, 0.12), transparent 60%),
    radial-gradient(900px 560px at 92% 20%, rgba(14, 165, 233, 0.10), transparent 62%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  /* Reserve space for the mobile bottom action bar only on small screens */
  padding-bottom: 0;
}

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

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:fixed; left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 12px;
  z-index:9999;
  box-shadow: var(--shadow2);
}

/* Topbar */
.topbar{
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar .dot{ opacity: 0.6; margin: 0 6px; }
.topbar-right{
  display:flex;
  gap: 12px;
  align-items:center;
}
.topbar-right a{
  color: var(--text);
}
.topbar-right .wa{
  color: var(--accent);
  font-weight: 700;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.brand-mark{
  width: 36px; height: 36px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
  box-shadow: var(--shadow2);
}
.brand-name{ font-size: 16px; }

.site-nav{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
}
.site-nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(15,23,42,0.86);
}
.site-nav a:hover{
  background: rgba(37,99,235,0.08);
  text-decoration: none;
  color: var(--text);
}

.nav-toggle{
  display:none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow2);
}
.nav-toggle-line{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(15,23,42,0.90);
  margin: 4px 0;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,0.20);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow2);
}
.btn:hover{ text-decoration:none; filter: brightness(0.98); }
.btn-ghost{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover{ background: rgba(15,23,42,0.03); }
.btn-small{
  padding: 10px 12px;
  font-weight: 800;
}
.w-full{ width: 100%; }

/* Typography helpers */
.muted{ color: var(--muted); }
.tiny-note{ font-size: 13px; color: var(--muted); margin-top: 10px; }
code{
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.03);
}

/* Hero */
.hero{ padding: 44px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}
.pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
  color: rgba(15,23,42,0.86);
  font-weight: 750;
  font-size: 13px;
  margin: 0 0 12px;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}
.lead{
  color: rgba(15,23,42,0.78);
  font-size: 17px;
  margin: 0 0 16px;
}
.hero-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trust-item{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow2);
}
.trust-title{ font-weight: 900; margin-bottom: 4px; }
.trust-text{ color: var(--muted); font-size: 13px; }

.hero-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-head{
  padding: 16px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.hero-card h2{ margin: 0 0 4px; font-size: 16px; }
.quick-form{
  padding: 14px 16px 16px;
  display:grid;
  gap: 10px;
}
input, textarea, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
  box-shadow: 0 1px 0 rgba(15,23,42,0.02);
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}
.hero-card-footer{
  margin-top: 2px;
}
.small-link{
  font-size: 13px;
  color: var(--accent);
  font-weight: 800;
}

/* Sections */
.section{ padding: 52px 0; }
.section-alt{
  background: rgba(255,255,255,0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{ margin-bottom: 16px; }
.section-head h2{ margin: 0 0 6px; font-size: 28px; }

/* Services (visual cards) */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.service-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-media{
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--border);
  background: rgba(15,23,42,0.02);
}
.service-media img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.service-tag{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,0.86);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}
.service-body{ padding: 14px 14px 16px; }
.service-body h3{ margin: 0 0 6px; font-size: 16px; }
.service-body p{ margin: 0 0 10px; font-size: 14px; }
.service-points{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,0.74);
  font-size: 13px;
}
.service-points li{ margin: 6px 0; }

.note-box{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(15,23,42,0.20);
  background: rgba(255,255,255,0.65);
}

/* Steps */
.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.step-num{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow2);
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; }

/* CTA strip */
.cta-strip{
  margin-top: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-strip h3{ margin: 0 0 6px; font-size: 18px; }
.cta-strip p{ margin: 0; }
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

/* Modes */
.mode-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mode{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.mode-ico{
  width: 40px; height: 40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.16);
  margin-bottom: 10px;
  font-size: 18px;
}
.mode h3{ margin: 0 0 6px; font-size: 16px; }
.mode-points{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,0.74);
  font-size: 13px;
}
.mode-points li{ margin: 6px 0; }

/* Areas */
.area-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.area-box{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.chips{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chips li{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.03);
  border: 1px solid var(--border);
  color: rgba(15,23,42,0.72);
  font-size: 13px;
  font-weight: 700;
}
.map-placeholder{
  margin-top: 10px;
  border-radius: var(--radius);
  border: 1px dashed rgba(15,23,42,0.20);
  background: rgba(15,23,42,0.02);
  padding: 18px;
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.price-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.price-card h3{ margin: 0 0 8px; font-size: 16px; }
.price{ margin: 0 0 6px; font-size: 22px; font-weight: 950; }

/* FAQ */
.faq{ display:grid; gap: 10px; }
details{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow2);
  padding: 12px 14px;
}
summary{ cursor:pointer; font-weight: 900; }
details p{ margin: 10px 0 0; color: var(--muted); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.contact-box{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.contact-row{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.c-ico{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.16);
  flex: 0 0 auto;
}
.label{
  color: rgba(15,23,42,0.65);
  font-size: 12px;
  margin-bottom: 2px;
  font-weight: 800;
}
.form-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  padding: 22px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.9fr;
  gap: 14px;
  align-items: start;
}
.footer-brand{ font-weight: 950; margin-bottom: 6px; }
.footer-links{ display:grid; gap: 8px; color: var(--muted); }
.footer-legal{ color: var(--muted); }

.footer-title{
  font-weight: 950;
  font-size: 14px;
  margin: 0 0 10px;
  color: var(--text);
}

.footer-badges{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow2);
  font-weight: 900;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.social-links{ display:grid; gap: 8px; }
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow2);
  color: var(--text);
  font-weight: 900;
}
.social-link:hover{ text-decoration: none; background: rgba(15,23,42,0.02); }
.social-ico{ width: 18px; height: 18px; }

/* Mobile action bar */
.action-bar{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  display: none;
  gap: 8px;
  padding: 10px;
  z-index: 60;
}
.action{
  flex: 1;
  text-align:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 900;
  box-shadow: var(--shadow2);
}
.action:hover{ text-decoration:none; background: rgba(15,23,42,0.02); }

/* Accessibility helper */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  border:0;
}

/* Responsive */
@media (max-width: 1100px){
  .services-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid{ grid-template-columns: 1fr; }
  .mode-grid{ grid-template-columns: 1fr; }
  .area-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  body{ padding-bottom: 66px; }
  .nav-toggle{ display:inline-block; }

  .site-nav{
    display:none;
    position:absolute;
    right: 20px;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    width: min(360px, calc(100% - 40px));
    box-shadow: var(--shadow);
  }
  .site-nav.open{ display:flex; }
  .site-nav a{ padding: 12px; }

  .services-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }

  .topbar-inner{ flex-direction: column; align-items:flex-start; gap: 6px; }
  .action-bar{ display:flex; }
}

.topbar-right .email-link{
  color: var(--accent);
  font-weight: 800;
}

.map-embed{
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow2);
}
.map-embed iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ===== Policies ===== */
.policy-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.policy-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.policy-card h3{ margin:0 0 6px; font-size: 16px; }
.policy-card p{ margin:0; }

/* ===== Book CTA ===== */
.book-cta{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.book-cta h2{ margin: 0 0 6px; font-size: 22px; }
.book-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.seo-line{
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
}

/* ===== Responsive additions ===== */
@media (max-width: 1100px){
  .policy-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .policy-grid{ grid-template-columns: 1fr; }
}

.price-table{
  width:100%;
  border-collapse: collapse;
  min-width: 680px;
}
.price-table th, .price-table td{
  text-align:left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.price-table th{
  font-weight: 900;
  color: rgba(15,23,42,0.85);
}
.price-table td{
  color: rgba(15,23,42,0.78);
}
/* Multi-page helpers */
.page-hero{
  padding: 54px 0 26px;
}
.breadcrumbs{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.breadcrumbs a{ color: inherit; text-decoration: underline; }
.content-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
.panel{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.checklist{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.checklist li{ margin: 6px 0; }
.badges{ display:flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #1e3a8a;
  font-weight: 800;
  font-size: 13px;
}
.compare-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-strip{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.cta-strip .btn{ white-space: nowrap; }
@media (max-width: 920px){
  .content-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .compare-grid{ grid-template-columns: 1fr; }
}
