:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --border: #e6e9f2;
  --text: #0d1b2a;
  --muted: #4b556a;
  --accent: #0B1F3A; /* BlastWireless navy */
  --accent-2: #00B3FF; /* BlastWireless electric blue */
  --accent-3: #FF6A00; /* BlastWireless orange */
  --accent-4: #A4A4A4; /* light grey */
}

/* Reset / base */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Container */
.container { width: min(1120px, 92%); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .08s ease, box-shadow .2s ease, background .2s;
}
.btn-primary {
  background: var(--accent); /* Navy */
  color: #fff;               /* White text */
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #07172a; /* slightly darker navy */ /* Slightly darker navy */
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Nav links */
nav .links a:not(.btn-primary) {
  color: var(--muted);
}
nav .links a.btn-primary {
  color: #fff;             /* force white text */
  background: var(--accent);
  border-color: var(--accent);
}

/* Pills & typography */
.pill {
  display:inline-block;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .8rem;
  background: #fff;
}
.headline {
  font-size: clamp(2rem, 3.6vw + .5rem, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.subhead {
  font-size: clamp(1.05rem, 1.2vw + .8rem, 1.2rem);
  color: #364254;
}

/* Header / nav */
header {
  position: sticky;
  top:0;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(160%) blur(6px);
  z-index: 40;
}
nav {
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: .9rem 0;
}
nav .brand { display:flex; align-items:center; gap:.7rem; }
nav .brand img.logo-img { height: 34px; width:auto; }

/* Hero */
.hero {
  padding: 4.2rem 0 3.2rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff 65%);
}
.hero-center { text-align: center; }
.hero-center .headline { margin: 1rem 0; }
.hero-center .subhead { margin: 0 auto 1.2rem; max-width: 720px; }
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Form */
.hero-form {
  margin: 1.0rem auto .8rem;
  max-width: 760px;
  display: grid;
  gap: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.hero-form input,
.hero-form textarea {
  padding: .75rem .9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}
.hero-form button { margin-top: .3rem; }
.honeypot {
  position:absolute; left:-9999px; top:-9999px;
  height:0; width:0; opacity:0; pointer-events:none;
}

/* Notices */
.notice {
  margin:.8rem auto 0;
  max-width:720px;
  padding:.75rem .9rem;
  border-radius:12px;
}
.notice.success {
  background:#eafff7;
  color:#0b6b57;
  border:1px solid #b7f0e2;
}
.notice.error {
  background:#fff3f3;
  color:#7a0612;
  border:1px solid #ffd6d6;
}

/* Features Section (banner style) */
.features {
  padding: 4rem 0;
  background: var(--accent-2); /* teal background */
  color: #fff;
  text-align: center;
}

.features-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #fff; /* force white text */
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: #fff;                /* white cards */
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.feature h3 {
  color: var(--accent);
}

.feature:nth-child(1) .feature-img { border:2px solid var(--accent-2); }
.feature:nth-child(2) .feature-img { border:2px solid var(--accent-3); }
.feature:nth-child(3) .feature-img { border:2px solid var(--accent); }

/* Steps Section Heading */
.steps-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent); /* navy, matches brand */
}

/* Steps */
.steps { padding: 3.2rem 0; }
.steps .grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step {
  background: linear-gradient(180deg, rgba(15,57,84,.08), rgba(15,57,84,.02));
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  text-align:center;
}
.step .num { font-weight:800; color:var(--accent); font-size: .9rem; letter-spacing:.08em; }
.step img.step-img {
  max-width:100%;
  border-radius:10px;
  margin-bottom:.6rem;
  border:2px solid var(--accent-2);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* CTA */
.cta {
  padding: 3.6rem 0;
  background: var(--accent-2); /* Default teal background */
  color: #fff;
}
.cta h2, .cta p { color: #fff; }
.cta .inner {
  background: rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1.6rem;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.4rem;
  align-items:center;
}
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  color: #0d1b2a;
}

/* CTA section image */
.cta-image {
  margin-top: 1.5rem;
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}


/* Footer */
footer {
  padding: 2.6rem 0;
  color: var(--muted);
  border-top:1px solid var(--border);
}
footer a { color:var(--accent); text-decoration:none; }

/* Sticky CTA */
.sticky-cta {
  position:fixed; bottom:0; left:0; width:100%;
  background:var(--accent); color:#fff;
  padding:.9rem 1rem;
  display:flex; justify-content:center; align-items:center; gap:.8rem;
  z-index:50;
}
.sticky-cta a {
  background:#fff; color:var(--accent);
  padding:.5rem 1rem; border-radius:10px;
  font-weight:600; text-decoration:none;
}
@media(min-width:768px){ .sticky-cta{display:none;} }

/* --- Trust line divider (forced & visible) --- */
.trust-divider {
  display: block !important;   /* beat any resets */
  width: 70%;
  height: 3px;                 /* thickness */
  background: var(--accent-4);   /* light grey so it's clearly visible */
  margin: 1rem auto 0;         /* centered */
}

/* Notice bar (success/error) */
.notice-bar {
  position: sticky;      /* sticks under your header */
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.notice-bar.success {
  background: #eafff7;
  color: #0b6b57;
  border-color: #b7f0e2;
}

.notice-bar.error {
  background: #fff3f3;
  color: #7a0612;
  border-color: #ffd6d6;
}

.notice-bar__inner {
  width: min(1120px, 92%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.notice-bar__close {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}
.notice-bar__close:hover { opacity: 1;

/* --- AUP banner (page-specific) --- */
section#aup-section {
  background: var(--surface-2) !important;  /* light gray-blue; change to var(--accent-2) for teal */
  padding: 3rem 0 !important;
}

section#aup-section > .container {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

section#aup-section h2 {
  color: var(--accent);
  margin-top: 1.25rem;
}






/* Onboarding section helpers */
.section.alt{background: rgba(0,0,0,0.03);}
.note{margin-top:1rem;padding:1rem;border-radius:12px;background: rgba(46,49,145,0.08);}
.note strong{color:#221f1f;}


.form-note{margin-top:0.75rem;font-size:0.9rem;color:#221f1f;opacity:0.85;}