/* ------------------------------------------------------------------
   11194798 Canada Inc. — front page
   Plain CSS, no build step, no external requests.
   ------------------------------------------------------------------ */

:root {
  --bg:          #ffffff;
  --bg-alt:      #eef4fc;   /* light blue wash for alternating bands */
  --surface:     #ffffff;   /* cards */
  --border:      #dbe6f5;
  --border-hover:#b3cdee;
  --text:        #10233c;
  --text-dim:    #556b8c;
  --accent:      #1266d8;
  --accent-2:    #0aa2c0;
  --accent-soft: rgba(18, 102, 216, .10);
  --accent-ink:  #ffffff;   /* text on top of --accent */

  --wrap: 1120px;
  --radius: 14px;
  --shadow: 0 14px 30px -18px rgba(16, 35, 60, .28);

  color-scheme: light;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.12rem; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px; top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 8px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -.015em;
}
.brand:hover { text-decoration: none; }

.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-mark rect { fill: none; stroke: var(--accent); stroke-width: 1.6; }
.brand-mark path {
  fill: none; stroke: var(--accent); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.brand-text { font-size: .98rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text-dim);
  font-size: .93rem;
  padding: 8px 12px;
  border-radius: 8px;
}
.nav a:hover { color: var(--text); background: var(--bg-alt); text-decoration: none; }

.nav-cta {
  color: var(--accent-ink) !important;
  background: var(--accent);
  font-weight: 600;
}
.nav-cta:hover { filter: brightness(1.08); background: var(--accent) !important; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(72px, 12vw, 132px) 0 clamp(96px, 14vw, 150px);
  background:
    radial-gradient(900px 480px at 12% -6%, rgba(18, 102, 216, .13), transparent 62%),
    radial-gradient(760px 420px at 88% 8%, rgba(10, 162, 192, .12), transparent 60%),
    linear-gradient(180deg, var(--bg-alt), #f7faff 70%, var(--bg));
  overflow: hidden;
}

.hero-inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  color: var(--text-dim);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .96rem;
  border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, .7);
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--border-hover); }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: clamp(60px, 9vw, 110px); display: block; }
.hero-wave path { fill: var(--bg); }

/* ---------- sections ---------- */

.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-alt { background: var(--bg-alt); }

.section-title { margin-bottom: .35em; }
.section-lede { color: var(--text-dim); max-width: 60ch; margin-bottom: 44px; }

/* ---------- service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.card p { color: var(--text-dim); font-size: .97rem; }

.card-accent { border-color: rgba(18, 102, 216, .35); }
.card-accent:hover { border-color: var(--accent); }

.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}
.card-icon svg {
  width: 21px; height: 21px;
  fill: none; stroke: var(--accent); stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}

.card-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.card-list li {
  position: relative;
  padding-left: 20px;
  font-size: .92rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- split (VoIP) ---------- */

.split-text { max-width: 68ch; }
.split-text p { color: var(--text-dim); }
.split-text .btn { margin-top: 10px; }

/* ---------- approach grid ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px 32px;
  margin-top: 8px;
}
.feature { padding-top: 18px; border-top: 2px solid var(--accent); }
.feature p { color: var(--text-dim); font-size: .95rem; margin: 0; }

/* ---------- contact ---------- */

.section-contact {
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(10, 162, 192, .14), transparent 65%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
}

.contact-inner { max-width: 760px; }
.contact-inner .lede { margin-bottom: 30px; }

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
a.contact-card:hover {
  text-decoration: none;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-value { display: block; font-weight: 600; font-size: 1.02rem; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: .88rem;
}
.footer-inner p { margin: 0; }
.footer-nav { display: flex; gap: 18px; }
.footer-nav a { color: var(--text-dim); }
.footer-nav a:hover { color: var(--text); }

/* ---------- 404 ---------- */

.center-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}
