/* ============================================================
   Good Game Counselling — Shared Stylesheet
   ============================================================ */

/* Google Fonts loaded in each HTML file */

:root {
  --primary:       #2B8FA6;   /* teal — main brand */
  --primary-dark:  #1E6878;   /* darker teal */
  --accent:        #6B46C1;   /* purple — gaming, creativity */
  --accent-dark:   #4C3190;   /* deep purple */
  --green:         #48BB78;   /* positive / NDIS */
  --dark-bg:       #1A1D2E;   /* dark sections */
  --mid-bg:        #2D2060;   /* mid purple sections */
  --light-bg:      #F5F9FC;   /* light sections */
  --white:         #FFFFFF;
  --text:          #2D3748;
  --text-muted:    #718096;
  --text-light:    #A0AEC0;
  --border:        #E2E8F0;
  --radius:        10px;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.14);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 70, 193, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-teal {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-teal:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---- Utility bar ---- */
.utility-bar {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 9px 0;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.utility-bar .util-left,
.utility-bar .util-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-bar a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.utility-bar a:hover { color: var(--white); }

.util-sep { color: rgba(255,255,255,0.25); }

/* ---- Header / Nav ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(107,70,193,0.06);
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  font-size: 1.4rem;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-text {
  background: var(--dark-bg);
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc((100vw - 1180px) / 2 + 24px);
}

.hero-label {
  display: inline-block;
  background: rgba(107,70,193,0.25);
  color: #C4B5FD;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: #A78BFA;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,29,46,0.3), transparent);
}

/* ---- Geometric Divider ---- */
.geo-divider {
  display: flex;
  height: 56px;
  overflow: hidden;
}

.geo-divider .geo-block {
  flex: 1;
  transform: skewX(-18deg);
  margin: 0 -3px;
}

.geo-divider .g1 { background: var(--primary); }
.geo-divider .g2 { background: var(--accent); }
.geo-divider .g3 { background: #48BB78; }
.geo-divider .g4 { background: var(--primary-dark); }
.geo-divider .g5 { background: #9F7AEA; }
.geo-divider .g6 { background: var(--primary); }

/* ---- Section base ---- */
.section {
  padding: 88px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

.section-purple {
  background: var(--mid-bg);
  color: var(--white);
}
.section-purple h2,
.section-purple h3 { color: var(--white); }
.section-purple p { color: rgba(255,255,255,0.8); }

.section-light { background: var(--light-bg); }
.section-teal {
  background: var(--primary);
  color: var(--white);
}
.section-teal h2, .section-teal p { color: var(--white); }

.section-header {
  margin-bottom: 52px;
}

.section-header.centered { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-dark .section-label,
.section-purple .section-label { color: #A78BFA; }
.section-teal .section-label { color: rgba(255,255,255,0.8); }

.section-label-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label-line::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-dark .section-label-line::after { background: #A78BFA; }
.section-purple .section-label-line::after { background: #A78BFA; }

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
}

.section-dark .lead,
.section-purple .lead { color: rgba(255,255,255,0.7); }

/* ---- Welcome / Two-col section ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---- Feature Cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon-purple { background: rgba(107,70,193,0.12); color: var(--accent); }
.card-icon-teal   { background: rgba(43,143,166,0.12); color: var(--primary); }
.card-icon-green  { background: rgba(72,187,120,0.12); color: #38A169; }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.7); }
.card-dark:hover { background: rgba(255,255,255,0.09); }

/* ---- "Who We're For" list ---- */
.for-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.for-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.for-item-icon {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.for-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---- Team Preview ---- */
.team-preview {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

.team-photo {
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.team-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- Steps / Process ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(107,70,193,0.35);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Footer CTA ---- */
.footer-cta {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 20px;
}

.footer-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.crisis-bar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 40px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.crisis-bar a { color: #90CDF4; }
.crisis-bar a:hover { text-decoration: underline; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2D1E5E 100%);
  padding: 80px 0 72px;
  color: white;
}

.page-hero .page-label {
  display: inline-block;
  background: rgba(107,70,193,0.3);
  color: #C4B5FD;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.65;
}

/* ---- Info boxes ---- */
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.info-box.purple { border-left-color: var(--accent); }
.info-box.green { border-left-color: var(--green); }
.info-box h4 { font-size: 1rem; margin-bottom: 8px; }
.info-box p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* ---- Detail row ---- */
.detail-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.detail-value {
  font-size: 0.98rem;
  color: var(--text);
}

/* ---- Checklist ---- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.55;
}

.checklist li i {
  color: var(--green);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.section-dark .checklist li,
.section-purple .checklist li { color: rgba(255,255,255,0.85); }

/* ---- FAQ Accordion ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-question i {
  color: var(--accent);
  font-size: 0.9rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 28px;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ---- Contact form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107,70,193,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ---- Profile card ---- */
.profile-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.profile-image {
  position: relative;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.profile-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.profile-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.profile-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-block;
  background: rgba(107,70,193,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag-teal {
  background: rgba(43,143,166,0.1);
  color: var(--primary-dark);
}

/* ---- Stat badges ---- */
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Practical details grid ---- */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.practical-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.practical-item .pi-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.practical-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.practical-item p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text {
    padding: 64px 24px;
    padding-left: 24px;
  }
  .hero-image { min-height: 340px; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-preview { grid-template-columns: 1fr; }
  .for-list { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-image img { min-height: 280px; height: 280px; }
  .profile-content { padding: 32px; }
  .practical-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-row { grid-template-columns: 160px 1fr; }
}

@media (max-width: 768px) {
  .utility-bar .util-left { display: none; }
  .utility-bar .util-right { width: 100%; justify-content: center; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    gap: 4px;
  }

  .site-header { position: relative; }
  .header-inner { position: relative; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; gap: 4px; }
  .detail-label { font-size: 0.8rem; }
  .section { padding: 60px 0; }
}
