:root{
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 10px 25px rgba(2, 6, 23, 0.08);

  --navy: #0b1f2a;
  --teal: #18a6a6;
  --gold: #f4b74a;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link{
  position: absolute; left: -999px; top: 12px;
  background: var(--surface); color: var(--text);
  padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border);
}
.skip-link:focus{ left: 12px; z-index: 9999; }

.site-header{
  position: sticky; top: 0; z-index: 999;
  background: rgba(11, 31, 42, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand{
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand-logo{
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
  object-fit: contain;
}
.brand-name{ font-weight: 800; letter-spacing: 0.2px; }
.brand-tag{ font-size: 12px; color: rgba(255,255,255,0.75); }

.site-nav{
  display: flex; align-items: center; gap: 12px;
}
.nav-link{
  text-decoration: none;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-link:hover{ background: rgba(255,255,255,0.08); }
.nav-link.active{ background: rgba(24,166,166,0.18); color: #fff; }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.9);
  margin: 5px auto;
  border-radius: 2px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary{
  background: var(--teal);
  color: #062021;
  border-color: rgba(0,0,0,0.08);
}
.btn-primary:hover{ filter: brightness(0.98); }
.btn-secondary{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}
.btn-secondary:hover{ background: rgba(255,255,255,0.12); }
.btn-ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.08); }

/* Page layout */
.page{ padding: 34px 0; }
.page-head{ margin-bottom: 16px; }
.page-head h1{ margin: 0 0 8px; font-size: 34px; letter-spacing: -0.4px; }
.lead{
  font-size: 18px;
  color: rgba(15, 23, 42, 0.85);
  margin: 0;
}

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
  overflow: hidden;
}
.panel-head{ padding: 18px 18px 12px; border-bottom: 1px solid var(--border); }
.panel-title{ margin: 0; font-size: 18px; letter-spacing: -0.2px; }
.panel-sub{ margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.bullet-box{ padding: 18px; }

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.divider{ height: 1px; background: var(--border); margin: 16px 0; }

.inline-cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

.link{ font-weight: 900; color: var(--navy); text-decoration: none; }
.link:hover{ text-decoration: underline; }

/* Embeds */
.embed{
  width: 100%;
  height: 520px;
  border: 0;
}

/* Google Form embed (added) */
.form-embed{
  padding: 18px;
  border-top: 1px solid var(--border);
}

.embed-form{
  width: 100%;
  height: min(900px, 85vh);
  border: 0;
  background: transparent;
  border-radius: 12px;
}

.form-fallback{
  padding: 0 18px 18px;
  margin: 0;
}

/* Footer */
.site-footer{
  padding: 22px 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 12px;
  align-items: center;
}
.footer-links{
  display: flex; gap: 14px; flex-wrap: wrap;
}
.footer-links a{
  text-decoration: none;
  font-weight: 800;
  color: rgba(15,23,42,0.84);
}
.footer-links a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .embed-form{ height: 92vh; }
}

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .site-nav{
    position: fixed;
    top: 72px; right: 16px; left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(11,31,42,0.98);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  }
  .site-nav.is-open{ display: flex; }
  .nav-link{ padding: 12px 12px; }
}
