/* Support For Everyone — supportforeveryone.com.au
   One palette, one radius system (12px soft), single accent (brand magenta).
   Trust-first: high contrast, large type, minimal motion. */

:root {
  --ink: #262340;          /* body text, near-black indigo */
  --indigo: #3b3184;       /* brand indigo (wordmark) */
  --indigo-deep: #2c2563;  /* dark panels */
  --accent: #b02a72;       /* brand magenta — the ONE accent */
  --accent-dark: #93235f;
  --teal: #178f7f;         /* used only inside the logo + tiny checks */
  --paper: #ffffff;
  --paper-soft: #f7f6fb;   /* cool-tinted section background */
  --line: #e4e2ef;
  --muted: #5b5775;
  --radius: 12px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

a { color: var(--indigo); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

h1, h2, h3 { line-height: 1.15; color: var(--indigo-deep); font-weight: 800; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 68px; max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
}
.nav .brand { margin-right: auto; display: flex; align-items: center; }
.nav .brand img { height: 40px; width: auto; }
.nav a.navlink { text-decoration: none; font-weight: 700; font-size: .95rem; color: var(--ink); }
.nav a.navlink:hover, .nav a.navlink[aria-current="page"] { color: var(--accent); }
.nav .cta { margin-left: 4px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; height: auto; padding: 12px 20px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 8px 14px; font: inherit; font-weight: 700; color: var(--indigo);
  }
  .nav .links {
    display: none; width: 100%; flex-direction: column; gap: 4px; padding: 8px 0 12px;
  }
  .nav .links.open { display: flex; }
  .nav .links a { padding: 10px 4px; border-bottom: 1px solid var(--line); }
  .nav .links a:last-child { border-bottom: 0; }
}
@media (min-width: 901px) {
  .nav .links { display: flex; gap: 26px; align-items: center; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 800;
  border-radius: var(--radius); padding: 13px 24px; font-size: 1rem;
  transition: transform .12s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: #fff; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-secondary:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost-dark { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-ghost-dark:hover { color: #fff; border-color: #fff; }

/* ---------- hero ---------- */
.hero { padding: 56px 0 64px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }
.hero h1 { max-width: 17ch; }
.hero .lead { margin-bottom: 1.6em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-img img { border-radius: var(--radius); box-shadow: 0 16px 40px rgba(44,37,99,.18); }

/* ---------- trust bar ---------- */
.trustbar { background: var(--paper-soft); border-block: 1px solid var(--line); padding: 22px 0; }
.trustbar .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center;
}
@media (max-width: 860px) { .trustbar .wrap { grid-template-columns: repeat(2, 1fr); } }
.trustbar strong { display: block; color: var(--indigo-deep); font-size: 1.02rem; }
.trustbar span { color: var(--muted); font-size: .88rem; }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-soft { background: var(--paper-soft); }
.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head p { color: var(--muted); }

/* services: 2 featured + 4 compact */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; background: #fff;
}
.svc.feature { background: var(--paper-soft); }
.svc h3 { margin-bottom: .35em; }
.svc p { color: var(--muted); margin: 0; font-size: .98rem; }
.svc-compact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 900px) { .svc-compact { grid-template-columns: repeat(2, 1fr); } }

/* fee comparison */
.fees-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 22px rgba(44,37,99,.07); }
.fees-table th, .fees-table td { padding: 16px 20px; text-align: left; }
.fees-table thead th { background: var(--indigo-deep); color: #fff; font-size: .95rem; }
.fees-table tbody tr + tr td { border-top: 1px solid var(--line); }
.fees-table .win { font-weight: 800; color: var(--indigo-deep); }
.fees-note { font-size: .88rem; color: var(--muted); margin-top: 14px; max-width: 70ch; }

/* app promo */
.app-promo { background: var(--indigo-deep); color: #fff; border-radius: 0; }
.app-promo h2 { color: #fff; }
.app-promo .lead { color: #cfcbe8; }
.app-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .app-grid { grid-template-columns: 1fr; } }
.app-points { list-style: none; padding: 0; margin: 0 0 26px; }
.app-points li { padding: 7px 0 7px 30px; position: relative; color: #e8e6f5; }
.app-points li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: #6fd3c4; font-weight: 800;
}
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; flex-direction: column; justify-content: center;
  min-width: 180px; padding: 10px 20px; border-radius: var(--radius);
  background: #fff; color: var(--indigo-deep); text-decoration: none;
  border: 1px solid rgba(255,255,255,.25); line-height: 1.25;
}
.store-badge small { font-size: .72rem; font-weight: 700; letter-spacing: .02em; color: var(--muted); }
.store-badge strong { font-size: 1.05rem; font-weight: 800; }
.store-badge.soon { opacity: .82; }
.store-badge.soon small { color: var(--accent-dark); }
.app-weblink { margin-top: 18px; }
.app-weblink a { color: #b9e8e0; }
.app-shot { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.35); }

/* split story */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.split img { border-radius: var(--radius); }
blockquote.pull {
  margin: 0 0 1.2em; padding-left: 18px; border-left: 4px solid var(--accent);
  font-size: 1.25rem; font-weight: 700; color: var(--indigo-deep); line-height: 1.4;
}

/* locations */
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc-card {
  display: block; text-decoration: none; text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 12px; font-weight: 800; color: var(--indigo-deep); background: #fff;
}
.loc-card:hover { border-color: var(--accent); color: var(--accent-dark); }
.loc-card span { display: block; font-weight: 400; font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* faq */
.faq { max-width: 760px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; padding: 0 20px; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--indigo-deep); padding: 16px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "-"; }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; }
.team-card strong { color: var(--indigo-deep); font-size: 1.05rem; display: block; }
.team-card span { color: var(--muted); font-size: .92rem; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff;
}
.contact-card strong { display: block; color: var(--indigo-deep); margin-bottom: 4px; }
.contact-card a { font-weight: 800; font-size: 1.1rem; }

/* cta band */
.cta-band { background: var(--paper-soft); border-top: 1px solid var(--line); text-align: left; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { margin: 0; }

/* footer */
.site-footer { background: var(--indigo-deep); color: #cfcbe8; padding: 48px 0 32px; font-size: .92rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin: 0 0 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 7px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; color: #a49ecf; font-size: .85rem; }

/* utility */
.mt-2 { margin-top: 20px; }
.center { text-align: center; }
.badge-reg {
  display: inline-block; background: #eef7f4; color: var(--teal);
  border: 1px solid #cde8e2; border-radius: 999px; padding: 5px 14px;
  font-size: .85rem; font-weight: 800; margin-bottom: 18px;
}

/* Founder story + CTA subtext (added 2026-07) */
.story-prose{max-width:760px;margin-inline:auto;}
.story-prose p{font-size:1.1rem;line-height:1.75;margin:0 0 1rem;}
.story-prose .story-sign{font-weight:800;margin-top:1.25rem;}
.cta-band .cta-sub{max-width:640px;margin:.25rem auto 1.25rem;}
