html { line-height: 1.15; -webkit-text-size-adjust: 100%; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body { margin: 0; }
main { display: block; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, [type="button"], [type="submit"] { -webkit-appearance: button; cursor: pointer; }
a { background-color: transparent; }
ul, ol { padding: 0; margin: 0; list-style: none; }
:root {
  --bg-primary: #141414;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #212121;
  --bg-card: #1d1d1d;
  --accent: #f47521;
  --accent-hover: #ff8533;
  --accent-glow: rgba(244, 117, 33, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #d1d1d1;
  --text-muted: #9a9a9a;
  --border-subtle: rgba(255, 255, 255, 0.08);
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 1rem; color: var(--text-primary); }
h1 { font-size: clamp(2.4rem, 6vw, 6rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
p { font-size: 1.125rem; line-height: 1.8; margin: 0 0 0.75rem; color: var(--text-secondary); }
a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-hover); }
.Page { min-height: 100vh; display: flex; flex-direction: column; }
.Page-wrap { flex: 1 0 auto; }
.Page-container { width: min(90%, 1200px); margin: 0 auto; }
.Section { padding: 2rem 1rem; position: relative; }
.Section:nth-of-type(odd) { background: var(--bg-tertiary); }
.Section:nth-of-type(even) { background: var(--bg-secondary); }
.Section-header { text-align: center; max-width: 720px; margin: 0 auto 2rem; }
.Section-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 0.5rem; }
.Section-title { margin-bottom: 0.75rem; }
.Section-lead { color: var(--text-muted); font-size: 1.125rem; }
.Button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem; font-weight: 700;
  border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  font-family: inherit; line-height: 1.2;
}
.Button--primary { background: var(--accent); color: #ffffff; border-color: var(--accent); box-shadow: 0 4px 15px var(--accent-glow); }
.Button--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 22px var(--accent-glow); }
.Button--secondary { background: transparent; color: var(--text-primary); border-color: var(--text-primary); }
.Button--secondary:hover { background: var(--text-primary); color: var(--bg-primary); transform: translateY(-2px); }
.Button--block { width: 100%; }
.Header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  --mm-bg: var(--bg-primary);
  --mm-text: var(--text-primary);
  --mm-primary: var(--accent);
}
.Header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.Header-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em;
  color: var(--text-primary); text-transform: lowercase;
}
.Header-logo:hover { color: var(--accent); }
.Header-logoMark { color: var(--accent); }
.Header-list { display: flex; gap: 0.25rem; align-items: center; }
.Header-item { list-style: none; }
.Header-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}
.Header-link:hover, .Header-link.is-active { color: var(--accent); }
.Header-link::after {
  content: ''; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}
.Header-link:hover::after, .Header-link.is-active::after { width: 60%; left: 20%; }
[data-mm-header]{--mm-bg:#ffffff;--mm-text:#333333;--mm-primary:#2563eb;--mm-overlay-bg:rgba(0,0,0,0.5);--mm-transition:0.3s ease}
[data-mm-header]{position:relative}
[data-mm-toggle]{display:flex;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001}
[data-mm-toggle] span{display:block;width:24px;height:2px;background:var(--mm-text);transition:var(--mm-transition)}
[data-mm-menu]{position:fixed;top:0;left:0;width:100%;height:100vh;height:100dvh;background:var(--mm-bg);opacity:0;visibility:hidden;transition:opacity var(--mm-transition),visibility var(--mm-transition);z-index:1100;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px}
[data-mm-menu].mm-open{opacity:1;visibility:visible}
[data-mm-menu] ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;align-items:center;gap:8px}
[data-mm-menu] ul li a{display:block;padding:12px 24px;color:var(--mm-text);text-decoration:none;font-size:22px;font-weight:500;transition:color var(--mm-transition)}
[data-mm-menu] ul li a:hover{color:var(--mm-primary)}
[data-mm-close]{position:absolute;top:20px;right:20px;background:none;border:none;font-size:32px;line-height:1;cursor:pointer;color:var(--mm-text);padding:4px 8px;z-index:1101}
@media(min-width:768px){
  .Header-item { padding-left: 10px; }
  [data-mm-toggle]{display:none!important}
  [data-mm-menu]{position:static!important;width:auto!important;height:auto!important;background:transparent!important;opacity:1!important;visibility:visible!important;padding:0!important;flex-direction:row!important;justify-content:flex-end!important}
  [data-mm-menu] ul{flex-direction:row;gap:0;align-items:center}
  [data-mm-menu] ul li a{padding:0;font-size:inherit;font-weight:inherit}
  [data-mm-close]{display:none!important}
}
@media(prefers-reduced-motion:reduce){[data-mm-menu],[data-mm-toggle] span{transition:none!important}}
.Hero { padding: 4rem 1rem 4.5rem; background: var(--bg-primary); }
.Hero-grid {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  align-items: center;
}
.Hero-content { flex: 1 1 calc(50% - 1.25rem); min-width: 300px; }
.Hero-image { flex: 1 1 calc(50% - 1.25rem); min-width: 300px; }
.Hero-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 0.75rem; }
.Hero-title { margin-bottom: 1rem; }
.Hero-title em { color: var(--accent); font-style: normal; }
.Hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.Hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.Hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.Hero-trustItem { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--text-muted); }
.Hero-trustItem::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.Hero-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); object-fit: cover; aspect-ratio: 4/3; transition: transform 0.4s ease; }
.Hero-image:hover img { transform: translateY(-5px); }
.Offerings-grid {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 1rem;
}
.Offering-card {
  flex: 1 1 calc(33.333% - 0.75rem); min-width: 280px;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.Offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  border-color: var(--accent);
}
.Offering-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-glow); color: var(--accent);
  border-radius: 10px; font-size: 1.5rem;
  margin-bottom: 0.85rem;
}
.Offering-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
.Offering-text { font-size: 1rem; line-height: 1.65; color: var(--text-secondary); }
.Profile-grid {
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center;
}
.Profile-content { flex: 1 1 calc(55% - 1rem); min-width: 280px; }
.Profile-image { flex: 1 1 calc(45% - 1rem); min-width: 280px; }
.Profile-image img { width: 100%; border-radius: 12px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.Profile-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.Profile-stat { flex: 1 1 calc(33.333% - 1rem); min-width: 130px; }
.Profile-statValue { font-size: 2.4rem; font-weight: 900; color: var(--accent); display: block; line-height: 1; }
.Profile-statLabel { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.4rem; display: block; }
.Team-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.Team-card {
  flex: 1 1 calc(25% - 0.94rem); min-width: 220px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.Team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.6);
  border-color: var(--accent);
}
.Team-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.Team-body { padding: 1.25rem; }
.Team-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--text-primary); }
.Team-role { font-size: 0.85rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; display: block; }
.Team-bio { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.Faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.Faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.Faq-item.is-open { border-color: var(--accent); box-shadow: 0 4px 16px var(--accent-glow); }
.Faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1rem 1.25rem;
  background: transparent; border: none;
  text-align: left;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  cursor: pointer; font-family: inherit;
  transition: color 0.3s ease;
}
.Faq-question:hover { color: var(--accent); }
.Faq-toggle { width: 28px; height: 28px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border: 2px solid currentColor; border-radius: 50%; font-size: 1.1rem; line-height: 1; transition: transform 0.3s ease; }
.Faq-item.is-open .Faq-toggle { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.Faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.Faq-item.is-open .Faq-answer { max-height: 500px; }
.Faq-answerInner { padding: 0 1.25rem 1.1rem; color: var(--text-secondary); line-height: 1.7; }
.Blog-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.Blog-card {
  flex: 1 1 calc(33.333% - 0.84rem); min-width: 260px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.Blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  border-color: var(--accent);
}
.Blog-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.Blog-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.Blog-meta { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.Blog-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; line-height: 1.3; }
.Blog-title a { color: var(--text-primary); }
.Blog-title a:hover { color: var(--accent); }
.Blog-excerpt { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0.85rem; flex: 1; }
.Blog-readMore { font-size: 0.9rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 0.35rem; }
.Blog-readMore::after { content: '→'; transition: transform 0.3s ease; }
.Blog-readMore:hover::after { transform: translateX(4px); }
.Post {
  padding: 3rem 1rem;
}
.Post-wrap { width: min(90%, 820px); margin: 0 auto; }
.Post-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; }
.Post-meta { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.Post-title { margin-bottom: 1.25rem; }
.Post-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; margin-bottom: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.Post-body { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.85; }
.Post-body h2 { margin-top: 2rem; color: var(--text-primary); }
.Post-body h3 { margin-top: 1.5rem; color: var(--text-primary); }
.Post-body p { margin-bottom: 1rem; }
.Post-body ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.Post-body ul li { margin-bottom: 0.4rem; color: var(--text-secondary); }
.Notice {
  background: linear-gradient(135deg, rgba(244,117,33,0.08), rgba(244,117,33,0.02));
  border: 1px solid rgba(244,117,33,0.25);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  max-width: 980px; margin: 0 auto;
}
.Notice-icon { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }
.Notice-text { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.65; margin: 0; }
.Notice-text a { font-weight: 700; }
.Contact-grid { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; }
.Contact-info { flex: 1 1 calc(40% - 1rem); min-width: 280px; order: 1; }
.Contact-formWrap {
  flex: 1 1 calc(60% - 1rem); min-width: 280px; order: 2;
  background: var(--bg-card); padding: 1.75rem; border-radius: 12px;
  border: 1px solid var(--border-subtle);
  position: sticky; top: 6rem;
}
.Contact-channels { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.8rem; }
.Contact-channel { display: flex; align-items: center; gap: 0.85rem; }
.Contact-channelIcon { width: 40px; height: 40px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--accent-glow); color: var(--accent); border-radius: 50%; font-weight: 700; font-size: 1.1rem; }
.Contact-channelLabel { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; display: block; }
.Contact-channelValue { color: var(--text-primary); font-weight: 600; font-size: 1rem; display: block; }
.Contact-channelValue a { color: var(--text-primary); }
.Contact-channelValue a:hover { color: var(--accent); }
.Form { display: flex; flex-direction: column; gap: 0.85rem; }
.Form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.Form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.04em; }
.Form-input, .Form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1rem; font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.Form-input:focus, .Form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.Form-textarea { resize: vertical; min-height: 110px; }
.Form-checkbox { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.Form-checkbox input { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--accent); width: 16px; height: 16px; }
.Form-checkbox a { font-weight: 600; }
.Form-error { background: rgba(220, 38, 38, 0.12); border: 1px solid rgba(220, 38, 38, 0.4); color: #fca5a5; padding: 0.7rem 1rem; border-radius: 6px; font-size: 0.9rem; }
.Form-success { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.4); color: #86efac; padding: 0.7rem 1rem; border-radius: 6px; font-size: 0.9rem; }
.Fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 950;
  width: 60px; height: 60px;
  border-radius: 50%; border: none;
  background: var(--accent); color: #ffffff;
  font-size: 1.5rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px var(--accent-glow);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.Fab:hover { background: var(--accent-hover); transform: scale(1.08); box-shadow: 0 12px 32px var(--accent-glow); }
.Fab-form {
  position: fixed; right: 1.5rem; bottom: 6rem; z-index: 951;
  width: min(360px, calc(100% - 3rem));
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  overflow: hidden;
}
.Fab-form-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--accent); color: #ffffff;
}
.Fab-form-header h3 { margin: 0; font-size: 1.05rem; color: #ffffff; font-weight: 800; }
.Fab-form-close {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15); border: none; color: #ffffff;
  font-size: 1.3rem; line-height: 1; border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.Fab-form-close:hover { background: rgba(255,255,255,0.3); }
.Fab-form-content { padding: 1.25rem; }
.Fab-form-content .Form { gap: 0.7rem; }
.Footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 1rem 1.5rem;
  margin-top: auto;
}
.Footer-grid {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2rem;
}
.Footer-col { flex: 1 1 220px; min-width: 200px; }
.Footer-brand { flex: 2 1 280px; }
.Footer-logo { font-size: 1.4rem; font-weight: 900; color: var(--text-primary); margin-bottom: 0.6rem; display: inline-block; text-transform: lowercase; }
.Footer-logo span { color: var(--accent); }
.Footer-tag { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; max-width: 320px; }
.Footer-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.85rem; }
.Footer-list { display: flex; flex-direction: column; gap: 0.45rem; }
.Footer-link { color: var(--text-muted); font-size: 0.95rem; transition: color 0.3s ease; }
.Footer-link:hover { color: var(--accent); }
.Footer-company { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.Footer-company strong { color: var(--text-secondary); display: block; margin-bottom: 0.2rem; }
.Footer-disclaimer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.7; max-width: 980px;
  margin: 0 auto 1rem;
}
.Footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.Footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.Footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.85rem; }
.Footer-legal a { color: var(--text-muted); }
.Footer-legal a:hover { color: var(--accent); }
.PageHero {
  padding: 4rem 1rem 2.5rem;
  background: linear-gradient(180deg, rgba(244,117,33,0.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.PageHero-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 0.75rem; }
.PageHero-title { margin-bottom: 0.75rem; }
.PageHero-lead { color: var(--text-muted); font-size: 1.15rem; max-width: 720px; margin: 0 auto; }
.Legal { padding: 2.5rem 1rem; }
.Legal-wrap { width: min(90%, 880px); margin: 0 auto; background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 1px solid var(--border-subtle); }
.Legal-wrap h2 { font-size: 1.5rem; margin-top: 1.75rem; color: var(--accent); }
.Legal-wrap h2:first-of-type { margin-top: 0; }
.Legal-wrap h3 { font-size: 1.15rem; margin-top: 1.25rem; color: var(--text-primary); }
.Legal-wrap p, .Legal-wrap li { color: var(--text-secondary); line-height: 1.75; font-size: 1rem; }
.Legal-wrap ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.Legal-wrap li { margin-bottom: 0.4rem; }
.Legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; padding: 0.6rem 1rem; background: var(--bg-secondary); border-radius: 6px; display: inline-block; }
@media (max-width: 768px) {
  .Hero { padding: 2rem 1rem 2.5rem; }
  .Hero-grid { gap: 1.5rem; }
  .Hero-image { order: -1; }
  .Profile-grid { gap: 1.5rem; }
  .Profile-stats { gap: 1rem; }
  .Contact-grid { gap: 1.25rem; }
  .Contact-formWrap { position: static; padding: 1.25rem; }
  .Footer-grid { gap: 1.5rem; }
  .Fab { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
  .Fab-form { right: 1rem; left: 1rem; bottom: 5rem; width: auto; }
  .Section { padding: 2rem 1rem; }
.Section--collapsible .Section-header { cursor: pointer; }
  .Section--collapsible .Section-content {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  }
  .Section--collapsible.is-active .Section-content {
    max-height: 5000px;
  }
}
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .Hero-actions .Button { width: 100%; }
}
.is-srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
