:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --primary: #1b5fd9;
  --primary-soft: rgba(27, 95, 217, 0.08);
  --accent: #1bb3a9;
  --text: #1f2933;
  --text-soft: #4b5563;
  --border: #e0e7ff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.shg-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 40%;
  background: radial-gradient(circle at 20% 20%, var(--accent), var(--primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: #ffffff;
  border-radius: 999px;
  width: 40px;
  height: 34px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background-color: #111827;
  position: relative;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background-color: #111827;
  transition: transform 0.2s ease, top 0.2s ease, background-color 0.2s ease;
}

.nav-toggle-bar::before {
  top: -5px;
}

.nav-toggle-bar::after {
  top: 5px;
}

.nav-toggle.is-open .nav-toggle-bar {
  background-color: transparent;
}

.nav-toggle.is-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  text-decoration: none;
}

.nav-link:hover {
  background-color: #eef2ff;
  color: var(--text);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
  background-color: rgba(27, 95, 217, 0.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 1rem;
  height: 1rem;
}

.btn-icon svg path {
  fill: currentColor;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #294df6);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.03);
  text-decoration: none;
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-soft);
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at 0 0, #e0f2fe 0, transparent 50%),
    radial-gradient(circle at 100% 0, #e0f2fe 0, transparent 55%),
    linear-gradient(to bottom, #f9fafb, #eef2ff);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

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

.hero-tagline {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  font-size: 0.8rem;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.meta-value {
  font-weight: 600;
}

.hero-card {
  background-color: #ffffff;
  box-shadow: var(--shadow-soft);
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 0;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0.9rem;
  font-size: 0.9rem;
}

.hero-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.hero-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0.2rem;
  top: 0.6rem;
}

.link-inline {
  font-size: 0.9rem;
  font-weight: 500;
}

.link-inline:hover {
  text-decoration: underline;
}

.section {
  padding: 3rem 0;
}

.section-light {
  background-color: var(--bg-alt);
}

.section-title {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  text-align: left;
}

.section-intro,
.page-intro {
  max-width: 640px;
  color: var(--text-soft);
  margin-top: 0.2rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background-color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.1rem 1.2rem;
}

.card-soft {
  background-color: #f9fafb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section-knowledge .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.knowledge-media {
  display: flex;
  justify-content: center;
}

.knowledge-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.9rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.section-services {
  padding-top: 3.2rem;
  padding-bottom: 3.6rem;
}

.section-services .two-column {
  align-items: center;
}

.section-services .btn-primary {
  margin-top: 1rem;
}

.highlight-box {
  background: radial-gradient(circle at 0 0, #e0f2fe 0, transparent 60%),
    #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 219, 254, 0.9);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.highlight-box p {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.ndis-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.ndis-badge img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0.1rem;
  top: 0;
  font-size: 0.8rem;
  color: var(--accent);
}

.cta-section {
  background: linear-gradient(135deg, #1b5fd9, #1bb3a9);
  color: #e5edff;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.cta-inner h2 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  color: #f9fafb;
}

.cta-inner p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-section .btn-outline {
  background-color: rgba(15, 23, 42, 0.15);
  border-color: rgba(226, 232, 240, 0.6);
  color: #f9fafb;
}

.cta-section .btn-outline:hover {
  background-color: rgba(15, 23, 42, 0.25);
}

.footer {
  background-color: #020617;
  color: #e5e7eb;
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  padding: 2.4rem 0 1.6rem;
  font-size: 0.86rem;
}

.footer-logo .logo-mark {
  background: radial-gradient(circle at 20% 20%, #4ade80, #22c55e);
}

.footer-copy {
  margin-top: 0.8rem;
  margin-bottom: 0;
  color: #9ca3af;
  max-width: 520px;
}

.footer-col h4 {
  margin-top: 0.1rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer a {
  color: #e5e7eb;
}

.footer a:hover {
  text-decoration: underline;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-inline svg {
  width: 0.95rem;
  height: 0.95rem;
}

.icon-inline svg path {
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  opacity: 0.9;
}

.page-hero {
  padding: 3rem 0 1.5rem;
  background: linear-gradient(to bottom, #eef2ff, #f9fafb);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.page-hero h1 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-details h2,
.contact-form-wrapper h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-block {
  margin-top: 1rem;
}

.contact-block h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.contact-block p {
  margin: 0.1rem 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-note {
  margin-top: 0.35rem;
}

.contact-form-wrapper p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-form {
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.3rem 1.3rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background-color: #f9fafb;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.form-disclaimer {
  font-size: 0.72rem;
  color: #6b7280;
  margin: 0 0 0.7rem;
}

.form-note {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 0.4rem;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .two-column,
  .contact-layout,
  .section-knowledge .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .shg-header {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 3.25rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 1.25rem;
    top: 0.9rem;
    transform: none;
  }

  .nav {
    width: 100%;
    margin-top: 0.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.4rem 0 0.2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    display: none;
  }

  .nav.nav-open {
    display: flex;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .section {
    padding: 2.3rem 0;
  }

  .page-hero {
    padding: 2.2rem 0 1.3rem;
  }

  .footer-inner {
    padding: 1.8rem 0 1.4rem;
  }

  .footer-bottom {
    padding: 0.8rem 0;
  }

  .footer .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

