/* =========================================================
   Presence Media — site styles  (White + Electric Blue)
   Change the colors and fonts here and every page updates.
   ========================================================= */

:root {
  /* Brand colors */
  --blue: #0a66ff;          /* accent: buttons, links, highlights */
  --blue-dark: #0050d6;     /* hover */
  --blue-deep: #3b2bff;     /* second color in gradients */
  --blue-tint: #eef4ff;     /* soft blue backgrounds */
  --blue-tint-2: #dce8ff;   /* icon backgrounds, borders */
  --star: #f5a800;

  /* Neutrals */
  --text: #0f172a;
  --muted: #526077;
  --bg: #ffffff;
  --border: #e3e8f0;
  --footer: #0b1220;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1120px;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 2px 4px rgba(15, 23, 42, 0.05), 0 16px 40px rgba(10, 102, 255, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { line-height: 1.12; margin: 0 0 0.6em; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
li { margin-bottom: 0.35em; }
li::marker { color: var(--blue); }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Blue highlighted words inside a headline */
.accent {
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Small pill label above a heading, e.g. "WHAT WE DO" */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

/* ---------- Header & menu ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(8px);
}
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo svg { width: 30px; height: 30px; flex: none; }
.site-nav { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-phone { color: var(--text); font-weight: 700; text-decoration: none; }
.header-phone:hover { color: var(--blue); }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 104px;
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(10, 102, 255, 0.14), transparent 70%),
    radial-gradient(700px 380px at 0% 100%, rgba(59, 43, 255, 0.08), transparent 70%),
    var(--bg);
}
.hero h1 { max-width: 860px; }
.hero .lead { font-size: 1.25rem; color: var(--muted); max-width: 680px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-trust > span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  box-shadow: var(--shadow);
}
.hero-trust strong { color: var(--text); }
.stars { color: var(--star); letter-spacing: 2px; }

.page-title {
  padding: 72px 0 56px;
  background:
    radial-gradient(800px 360px at 90% 0%, rgba(10, 102, 255, 0.12), transparent 70%),
    var(--blue-tint);
}
.page-title p { color: var(--muted); font-size: 1.2rem; max-width: 680px; margin-bottom: 0; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--blue-tint); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--blue);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 102, 255, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 102, 255, 0.34);
}
.button-small { padding: 9px 20px; font-size: 0.95rem; box-shadow: none; }
.button-ghost { background: transparent; color: var(--blue); box-shadow: none; }
.button-ghost:hover { background: var(--blue-tint); color: var(--blue-dark); box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.icon svg { width: 24px; height: 24px; }
.card-link { font-weight: 700; text-decoration: none; }

/* Numbered process steps */
.steps { counter-reset: step; }
.steps .card { position: relative; padding-top: 72px; }
.steps .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 26px; left: 30px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 800;
  display: grid; place-items: center;
}

/* Testimonials */
.quote { display: flex; flex-direction: column; margin: 0; }
.quote blockquote { margin: 12px 0 16px; font-size: 1.05rem; }
.quote cite { font-style: normal; font-weight: 700; margin-top: auto; }
.quote cite span { display: block; font-weight: 400; color: var(--muted); font-size: 0.92rem; }

/* Service detail blocks (Services page) */
.service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px 48px;
  padding: 52px 0;
  border-top: 1px solid var(--border);
}
.service:first-child { border-top: 0; padding-top: 0; }
.service ul { margin: 0; }

/* ---------- Call-to-action band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; }
.cta-band .button-row { justify-content: center; }
.cta-band .button { background: #fff; border-color: #fff; color: var(--blue); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
.cta-band .button:hover { background: var(--blue-tint); border-color: var(--blue-tint); color: var(--blue-dark); }
.cta-band .button-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); box-shadow: none; }
.cta-band .button-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}
.form { display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-weight: 600; }
.form input, .form textarea, .form select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  background: var(--bg);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 3px solid var(--blue-tint-2);
  border-color: var(--blue);
}
.form textarea { min-height: 150px; resize: vertical; }
.hidden { display: none; }
.contact-details p { margin-bottom: 18px; }
.contact-details strong { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); color: #a9b4c6; padding: 56px 0 32px; font-size: 0.95rem; }
.site-footer .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.site-footer p { margin: 0 0 6px; }
.site-footer a { color: #a9b4c6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; }

/* ---------- Placeholders ----------
   Yellow highlighted text = something still to fill in. */
.placeholder {
  background: #fff4b8;
  color: #0f172a;
  outline: 1px dashed #d4a800;
  padding: 0 4px;
  border-radius: 3px;
}
