/* SafeHomeIT — Carrd-inspired MVP style (clean, friendly, local) */
:root {
  --orange: #E7740E;
  --green: #2BB673;
  --navy: #0D0D0D;
  --muted: #5a5f6a;
  --cta: #F2522E;
  --bg: #ffffff;
  --soft: #f6f7fb;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(0,0,0,.10);
  --maxw: 960px;
  --cyan: #05C7F2;
  --purple: #2E338C;
  }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--navy);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

.topbar {
  padding: 18px 0 6px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 54px; height: 54px; }
.brand .word { font-weight: 900; font-size: 1.15rem; line-height: 1; }
.brand .sub { color: var(--muted); font-weight: 700; font-size: .95rem; }


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background:   rgba(43,182,115,.14);
 /* color: #fff;*/
  color:var(--navy);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand img { width: 54px; height: 54px; }
.brand .name { font-weight: 900; font-size: 1.15rem; line-height: 1; }
.brand .tag { color: var(--muted); font-weight: 700; font-size: .95rem; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
 /* color: #fff;*/
  color: var(--navy);
  opacity: .98;
}
.nav-links a:hover {
  background: rgba(255,255,255,.16);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--navy);
  font-size: 1.9rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(231,116,14,.96);
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.active { display: flex; }
}

.hero {
  padding: 10px 0 30px;
}
.hero .center {
  text-align: center;
  padding: 12px 0 10px;
}
.kicker {
  font-weight: 900;
  color: var(--muted);
  letter-spacing: .2px;
}
h1 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.5px;
}
.lead {
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 72ch;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  transition: transform .08s ease, opacity .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { opacity: .94; }
.btn-ghost {
  background: #fff;
  border: 2px solid rgba(0,0,0,.10);
  color: var(--navy);
}
.btn-ghost:hover { opacity: .92; }

.jump {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  opacity: .92;
}
.jump:hover { opacity: 1; }
.arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(43,182,115,.14);
  border: 1px solid rgba(43,182,115,.35);
}

.section {
  padding: 34px 0;
}
.section h2 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 2rem;
  letter-spacing: -0.2px;
}

.section p.lead {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 78ch;
}
.section p.sublead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.form-wrap { margin: 14px 0 18px; }

iframe.ms-form{
  display:block;
  width:100%;
  border:0;
  border-radius:16px;

  /* Make it tall so it shows the whole form for most users */
  height: 1200px;
}

@media (max-width: 600px){
  iframe.ms-form{ height: 1500px; }
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .grid3 { grid-template-columns: 1fr; }
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card .mini {
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 6px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(5,199,242,.16);
  border: 1px solid rgba(5,199,242,.35);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .88rem;
  margin-bottom: 10px;
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}
/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.step .n {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
 /* background: rgba(231,116,14,.16);
  border: 1px solid rgba(231,116,14,.35);*/
  background: rgba(43,182,115,.14);
  border: 1px solid rgba(43,182,115,.35);
  margin-bottom: 10px;
}
.step h4 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); line-height: 1.55; }

/* Trust */
.trust {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
@media (max-width: 980px) {
  .trust { grid-template-columns: 1fr; }
}
.note {
  background: rgba(231,116,14,.10);
  border: 1px solid rgba(231,116,14,.28);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #3a2a1a;
}
.note strong { color: #2a1b10; }

/* FAQ */
.faq { display: grid; gap: 10px; }
details {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.07);
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}


.banner {
  background: var(--soft);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 18px;
}
.banner strong { font-weight: 900; }

.footer {
  padding: 32px 0 36px;
  margin-top: 22px;
  border-top: 1px solid rgba(0,0,0,.10);
}
.powered {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.powered img {
  width: 100%;
  height: 56px;
  border-radius: 12px;
}
small { color: var(--muted); }

.social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.social a {
  font-weight: 900;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,.20);
}
.social a:hover {
  text-decoration-color: rgba(43,182,115,.75);
}

iframe.form {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

/* Floating helper */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(5,199,242,.95);
  color: #0b0b0b;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.fab:hover { filter: brightness(1.02); }

