/* ══════════════════════════════════════════════════════════
   DEMETRI BODYWORKS — Shared Stylesheet
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #1a1a2e;
  --navy-deep: #0f0f1e;
  --navy-mid:  #232340;
  --navy-lite: #2e2e52;
  --gold:      #C49A28;
  --gold-lite: #d9b040;
  --gold-pale: #f5e8b8;
  --gold-dark: #9a7818;
  --white:     #ffffff;
  --off-white: #f8f6f0;
  --lgray:     #F2F2F2;
  --mgray:     #d0d0d0;
  --dgray:     #555555;
  --text:      #1C1C1C;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w:     1200px;
  --radius:    6px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.gold-line  { width: 64px; height: 3px; background: var(--gold); border-radius: 2px; }
.gold-line.center { margin: 0 auto; }
.gold-bar   { height: 4px; background: linear-gradient(90deg,var(--gold) 0%,var(--gold-lite) 50%,var(--gold) 100%); }
.shimmer-line { height: 2px; background: linear-gradient(90deg,transparent 0%,var(--gold-dark) 20%,var(--gold) 50%,var(--gold-dark) 80%,transparent 100%); opacity:.5; }
.reveal { opacity:0; transform:translateY(30px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.85rem 2.2rem; border-radius:var(--radius); font-family:var(--font-body); font-size:.875rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; border:2px solid transparent; transition:all .25s ease; }
.btn-gold { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.btn-gold:hover { background:var(--gold-lite); border-color:var(--gold-lite); transform:translateY(-2px); box-shadow:0 8px 24px rgba(196,154,40,.35); }
.btn-outline-light { background:transparent; color:var(--white); border-color:rgba(255,255,255,.5); }
.btn-outline-light:hover { background:rgba(255,255,255,.1); border-color:var(--white); }
.btn-outline-gold { background:transparent; color:var(--gold); border-color:var(--gold); }
.btn-outline-gold:hover { background:var(--gold); color:var(--navy); }
.btn-navy { background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn-navy:hover { background:var(--navy-mid); transform:translateY(-2px); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; padding:1rem 0; transition:background .3s ease,padding .3s ease,box-shadow .3s ease; }
.nav.scrolled { background:rgba(15,15,30,.97); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); padding:.65rem 0; box-shadow:0 4px 32px rgba(0,0,0,.4); }
.nav.solid { background:rgba(15,15,30,.98); padding:.65rem 0; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo img { height:58px; width:auto; }
.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a { color:rgba(255,255,255,.8); font-size:.85rem; font-weight:500; letter-spacing:.05em; text-transform:uppercase; transition:color .2s ease; position:relative; }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:var(--gold); transition:width .25s ease; }
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { width:100%; }
.nav-cta { margin-left:1rem; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.5rem; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all .3s ease; }
.mobile-menu { display:none; position:fixed; inset:0; z-index:999; background:var(--navy-deep); flex-direction:column; align-items:center; justify-content:center; gap:2.5rem; }
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--white); font-size:1.5rem; font-family:var(--font-head); font-weight:400; }
.mobile-menu .close-btn { position:absolute; top:1.5rem; right:2rem; background:none; border:none; cursor:pointer; color:var(--white); font-size:2rem; line-height:1; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position:relative; min-height:100vh; background:var(--navy-deep); display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; pointer-events:none; }
.hero-shape { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(196,154,40,.12) 0%,transparent 70%); }
.hero-shape-1 { width:700px; height:700px; top:-200px; right:-200px; }
.hero-shape-2 { width:400px; height:400px; bottom:-100px; left:-100px; }
.hero-lines { position:absolute; inset:0; overflow:hidden; opacity:.06; }
.hero-lines svg { width:100%; height:100%; }
.hero-content { position:relative; z-index:2; max-width:800px; }
.hero-badge { display:inline-flex; align-items:center; gap:.6rem; background:rgba(196,154,40,.15); border:1px solid rgba(196,154,40,.35); border-radius:100px; padding:.4rem 1.1rem; font-size:.78rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:1.75rem; }
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }
.hero h1 { font-family:var(--font-head); font-size:clamp(2.8rem,6vw,5.2rem); font-weight:300; line-height:1.1; color:var(--white); margin-bottom:1.5rem; }
.hero h1 em { font-style:italic; color:var(--gold); }
.hero-sub { font-size:1.15rem; font-weight:300; color:rgba(255,255,255,.7); max-width:560px; margin-bottom:2.5rem; line-height:1.8; }
.hero-actions { display:flex; flex-wrap:wrap; gap:1rem; }
.hero-scroll { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:.5rem; color:rgba(255,255,255,.45); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; animation:bounce 2.5s ease-in-out infinite; }
.hero-scroll svg { width:20px; height:20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTIONS ────────────────────────────────────────────── */
.about { padding:7rem 0; background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.section-eyebrow { font-size:.78rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.section-title { font-family:var(--font-head); font-size:clamp(2rem,3.5vw,3rem); font-weight:400; line-height:1.2; color:var(--navy); margin-bottom:1.25rem; }
.section-title em { font-style:italic; color:var(--gold); }
.section-body { font-size:1rem; color:var(--dgray); line-height:1.85; margin-bottom:1.25rem; }
.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.stat-card { background:var(--navy); border-radius:var(--radius); padding:1.75rem 1.5rem; border-bottom:3px solid var(--gold); }
.stat-number { font-family:var(--font-head); font-size:2.6rem; font-weight:600; color:var(--gold); line-height:1; margin-bottom:.4rem; }
.stat-label { font-size:.82rem; font-weight:500; letter-spacing:.06em; color:rgba(255,255,255,.65); text-transform:uppercase; }
.services { padding:7rem 0; background:var(--navy-deep); }
.services .section-title,.services .section-eyebrow,.services .section-body { color:var(--white); }
.services .section-title em { color:var(--gold); }
.services .section-body { color:rgba(255,255,255,.6); }
.section-head { text-align:center; margin-bottom:4rem; }
.section-head .gold-line { margin:1rem auto; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.service-card { background:var(--navy-mid); border:1px solid rgba(196,154,40,.15); border-radius:var(--radius); padding:2.25rem 2rem; transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease; position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:0; transition:opacity .3s ease; }
.service-card:hover { transform:translateY(-6px); border-color:rgba(196,154,40,.4); box-shadow:0 20px 50px rgba(0,0,0,.4); }
.service-card:hover::before { opacity:1; }
.service-icon { width:52px; height:52px; background:rgba(196,154,40,.12); border:1px solid rgba(196,154,40,.3); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem; font-size:1.4rem; }
.service-title { font-family:var(--font-head); font-size:1.25rem; font-weight:500; color:var(--white); margin-bottom:.75rem; }
.service-body { font-size:.9rem; line-height:1.75; color:rgba(255,255,255,.55); }
.why { padding:7rem 0; background:var(--off-white); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; margin-top:4rem; }
.why-card { text-align:center; padding:0 1rem; }
.why-icon { width:72px; height:72px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; font-size:1.6rem; box-shadow:0 8px 32px rgba(26,26,46,.25); border:3px solid var(--gold); }
.why-title { font-family:var(--font-head); font-size:1.35rem; font-weight:500; color:var(--navy); margin-bottom:.75rem; }
.why-body { font-size:.92rem; color:var(--dgray); line-height:1.8; }
.process { padding:7rem 0; background:var(--white); }
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:4rem; }
.steps::before { content:''; position:absolute; top:38px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--gold),var(--gold-lite),var(--gold)); z-index:0; }
.step { text-align:center; padding:0 1.5rem; position:relative; z-index:1; }
.step-num { width:76px; height:76px; background:var(--navy); border:3px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; font-family:var(--font-head); font-size:1.7rem; font-weight:600; color:var(--gold); }
.step-title { font-family:var(--font-head); font-size:1.2rem; font-weight:500; color:var(--navy); margin-bottom:.6rem; }
.step-body { font-size:.87rem; color:var(--dgray); line-height:1.7; }

/* ── OPPORTUNITIES (index) ───────────────────────────────── */
#opportunities { display:flex; flex-direction:column; }
.opp-creator { background:var(--navy-deep); padding:5rem 0; border-bottom:4px solid var(--gold); }
.opp-creator-inner { max-width:var(--max-w); margin:0 auto; padding:0 2rem; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.opp-eyebrow { font-size:.75rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; margin-bottom:.85rem; }
.opp-creator .opp-eyebrow { color:var(--gold); }
.opp-title-lg { font-family:var(--font-head); font-size:clamp(2rem,3.5vw,2.8rem); font-weight:400; line-height:1.2; color:var(--white); margin-bottom:1.25rem; }
.opp-creator .opp-body { font-size:1rem; line-height:1.85; color:rgba(255,255,255,.65); margin-bottom:0; }
.opp-creator .opp-list { list-style:none; margin-bottom:2.25rem; }
.opp-creator .opp-list li { display:flex; align-items:flex-start; gap:.75rem; font-size:.92rem; color:rgba(255,255,255,.75); margin-bottom:.75rem; }
.opp-check { flex-shrink:0; width:18px; height:18px; margin-top:2px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; }
.opp-creator .opp-check { background:var(--gold); color:var(--navy); }
.opps-secondary { display:grid; grid-template-columns:1fr 1fr; }
.opp-sm { padding:1.75rem 3.5rem; display:flex; flex-direction:column; align-items:flex-start; }
.opp-gold  { background:var(--gold); }
.opp-slate { background:var(--navy-mid); }
.opp-gold  .opp-eyebrow { color:var(--navy-deep); }
.opp-slate .opp-eyebrow { color:var(--gold); }
.opp-title-sm { font-family:var(--font-head); font-size:1.65rem; font-weight:400; line-height:1.25; margin-bottom:1rem; }
.opp-gold  .opp-title-sm { color:var(--navy-deep); }
.opp-slate .opp-title-sm { color:var(--white); }
.opp-sm .opp-body { font-size:.88rem; line-height:1.8; margin-bottom:1.5rem; }
.opp-gold  .opp-body { color:rgba(26,26,46,.72); }
.opp-slate .opp-body { color:rgba(255,255,255,.6); }
.opp-sm .opp-list { list-style:none; margin-bottom:2rem; }
.opp-sm .opp-list li { display:flex; align-items:flex-start; gap:.6rem; font-size:.85rem; margin-bottom:.6rem; }
.opp-gold  .opp-list li { color:var(--navy-deep); }
.opp-slate .opp-list li { color:rgba(255,255,255,.72); }
.opp-gold  .opp-check { background:var(--navy); color:var(--gold); }
.opp-slate .opp-check { background:var(--gold); color:var(--navy); }

/* ── CONTACT (index) ─────────────────────────────────────── */
.contact { padding:7rem 0; background:var(--navy-deep); }
.contact .section-title { color:var(--white); }
.contact .section-title em { color:var(--gold); }
.contact .section-body { color:rgba(255,255,255,.6); }
.contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.contact-email-block { background:var(--navy-mid); border:1px solid rgba(196,154,40,.25); border-radius:var(--radius); padding:2.5rem; margin-top:2rem; }
.contact-email-label { font-size:.75rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); margin-bottom:.75rem; }
.contact-email-link { font-family:var(--font-head); font-size:1.5rem; color:var(--white); font-weight:400; transition:color .2s ease; }
.contact-email-link:hover { color:var(--gold); }
.contact-email-sub { font-size:.85rem; color:rgba(255,255,255,.45); margin-top:.5rem; }
.contact-details { margin-top:2rem; }
.contact-detail { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.5rem; }
.contact-detail-icon { width:40px; height:40px; flex-shrink:0; background:rgba(196,154,40,.12); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:1rem; }
.contact-detail-text strong { display:block; color:var(--white); font-size:.85rem; font-weight:600; margin-bottom:.2rem; }
.contact-detail-text span { color:rgba(255,255,255,.5); font-size:.85rem; }
.contact-right { background:var(--navy-mid); border:1px solid rgba(196,154,40,.15); border-radius:var(--radius); padding:2.5rem; }
.contact-right-title { font-family:var(--font-head); font-size:1.5rem; color:var(--white); margin-bottom:1.5rem; font-weight:400; }
.contact-apply-links { display:flex; flex-direction:column; gap:1rem; }
.apply-link-card { display:block; background:rgba(255,255,255,.04); border:1px solid rgba(196,154,40,.2); border-radius:var(--radius); padding:1.25rem 1.5rem; transition:all .25s ease; }
.apply-link-card:hover { background:rgba(196,154,40,.08); border-color:var(--gold); transform:translateX(4px); }
.apply-link-eyebrow { font-size:.7rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); margin-bottom:.3rem; }
.apply-link-title { color:var(--white); font-size:1rem; font-weight:500; }
.apply-link-arrow { float:right; color:var(--gold); font-size:1.2rem; margin-top:-.1rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background:var(--navy-deep); border-top:1px solid rgba(196,154,40,.2); padding:3rem 0 2rem; }
.footer-inner { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-logo img { height:72px; margin-bottom:1rem; }
.footer-tagline { font-size:.88rem; color:rgba(255,255,255,.45); line-height:1.75; max-width:280px; }
.footer-col-title { font-size:.75rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:.65rem; }
.footer-links a { font-size:.88rem; color:rgba(255,255,255,.5); transition:color .2s ease; }
.footer-links a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:2rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-copy { font-size:.8rem; color:rgba(255,255,255,.3); }
.footer-tagwords { font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(196,154,40,.4); }

/* ── APPLICATION FORM PAGES ──────────────────────────────── */
.page-hero { background:var(--navy-deep); padding:8rem 0 4rem; border-bottom:4px solid var(--gold); }
.page-hero-badge { display:inline-flex; align-items:center; gap:.6rem; background:rgba(196,154,40,.15); border:1px solid rgba(196,154,40,.35); border-radius:100px; padding:.4rem 1.1rem; font-size:.78rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.page-hero h1 { font-family:var(--font-head); font-size:clamp(2.2rem,4vw,3.5rem); font-weight:300; color:var(--white); line-height:1.15; margin-bottom:1rem; }
.page-hero h1 em { font-style:italic; color:var(--gold); }
.page-hero p { font-size:1rem; color:rgba(255,255,255,.65); max-width:620px; line-height:1.8; }
.page-hero-meta { display:flex; flex-wrap:wrap; gap:2rem; margin-top:2rem; }
.page-meta-item { display:flex; align-items:center; gap:.5rem; font-size:.85rem; color:rgba(255,255,255,.5); }
.page-meta-item strong { color:var(--gold); }

/* ── FORM LAYOUT ─────────────────────────────────────────── */
.form-page { background:var(--off-white); padding:4rem 0 6rem; }
.form-wrap { max-width:900px; margin:0 auto; }
.form-intro { background:var(--white); border:1px solid var(--mgray); border-left:4px solid var(--gold); border-radius:var(--radius); padding:1.5rem 2rem; margin-bottom:2rem; font-size:.95rem; color:var(--dgray); line-height:1.8; }
.form-intro strong { color:var(--navy); }

/* ── FORM SECTIONS ───────────────────────────────────────── */
.fsection { background:var(--white); border:1px solid var(--mgray); border-radius:var(--radius); margin-bottom:1.5rem; overflow:hidden; }
.fsec-head { background:var(--navy); padding:.9rem 1.5rem; }
.fsec-head h2 { font-family:var(--font-body); font-size:.82rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--white); }
.fsec-gold { height:3px; background:linear-gradient(90deg,var(--gold),var(--gold-lite),var(--gold)); }
.fsec-body { padding:1.75rem 2rem; }
.fsub-head { font-size:.78rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); border-bottom:1px solid var(--lgray); padding-bottom:.5rem; margin:1.5rem 0 1rem; }
.fsub-head:first-child { margin-top:0; }

/* ── FORM FIELDS ─────────────────────────────────────────── */
.frow { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.frow-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:1rem; }
.fgroup { margin-bottom:1.1rem; }
.fgroup label, .fgroup-label { display:block; font-size:.78rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--dgray); margin-bottom:.4rem; }
.fgroup input[type=text],
.fgroup input[type=email],
.fgroup input[type=tel],
.fgroup input[type=date],
.fgroup input[type=number],
.fgroup select,
.fgroup textarea {
  width:100%; padding:.75rem 1rem; border:1.5px solid var(--mgray); border-radius:var(--radius);
  font-family:var(--font-body); font-size:.9rem; color:var(--text); background:var(--white);
  transition:border-color .2s ease, box-shadow .2s ease; outline:none; -webkit-appearance:none; appearance:none;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(196,154,40,.12); }
.fgroup textarea { resize:vertical; min-height:90px; }
.fgroup select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem; }
.field-note { font-size:.75rem; color:var(--dgray); margin-top:.3rem; font-style:italic; }
.field-required { color:var(--gold); margin-left:2px; }

/* ── RADIO / SCALE ───────────────────────────────────────── */
.yn-opts { display:flex; gap:1.5rem; margin-top:.4rem; }
.yn-opt { display:flex; align-items:center; gap:.4rem; font-size:.9rem; cursor:pointer; }
.yn-opt input { accent-color:var(--gold); }
.scale-opts { display:flex; gap:.75rem; margin-top:.4rem; align-items:center; }
.scale-opt { display:flex; flex-direction:column; align-items:center; gap:.25rem; font-size:.75rem; font-weight:600; color:var(--dgray); cursor:pointer; }
.scale-opt input[type=radio] { width:20px; height:20px; accent-color:var(--gold); cursor:pointer; }
.scale-labels { display:flex; justify-content:space-between; font-size:.72rem; color:var(--dgray); margin-top:.25rem; }

/* ── CHECKBOXES ──────────────────────────────────────────── */
.check-grid { display:grid; grid-template-columns:1fr 1fr; gap:.4rem .5rem; margin:.5rem 0; }
.check-grid-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:.4rem .5rem; margin:.5rem 0; }
.check-item { display:flex; align-items:flex-start; gap:.5rem; cursor:pointer; padding:.35rem .5rem; border-radius:4px; transition:background .15s ease; }
.check-item:hover { background:var(--lgray); }
.check-item input[type=checkbox] { width:15px; height:15px; min-width:15px; margin-top:2px; accent-color:var(--gold); cursor:pointer; }
.check-item span { font-size:.85rem; color:var(--text); line-height:1.4; }
.check-item-wide { display:flex; align-items:flex-start; gap:.5rem; cursor:pointer; padding:.35rem .5rem; border-radius:4px; transition:background .15s ease; margin-bottom:.25rem; }
.check-item-wide:hover { background:var(--lgray); }
.check-item-wide input[type=checkbox] { width:15px; height:15px; min-width:15px; margin-top:2px; accent-color:var(--gold); cursor:pointer; }
.check-item-wide span { font-size:.85rem; color:var(--text); line-height:1.4; }

/* ── ACKNOWLEDGMENT ──────────────────────────────────────── */
.ack-list { list-style:none; }
.ack-item { display:flex; align-items:flex-start; gap:.75rem; padding:.6rem .5rem; border-radius:4px; margin-bottom:.25rem; }
.ack-item:hover { background:var(--lgray); }
.ack-item input[type=checkbox] { width:16px; height:16px; min-width:16px; margin-top:3px; accent-color:var(--gold); cursor:pointer; }
.ack-item label { font-size:.88rem; color:var(--text); line-height:1.5; cursor:pointer; }
.sig-row { display:grid; grid-template-columns:2fr 1fr; gap:2rem; margin-top:1.5rem; }

/* ── SUBMIT ──────────────────────────────────────────────── */
.form-submit { text-align:center; margin-top:2.5rem; padding:2.5rem; background:var(--navy); border-radius:var(--radius); }
.form-submit p { color:rgba(255,255,255,.6); font-size:.85rem; margin-top:1.25rem; line-height:1.7; }
.form-submit p a { color:var(--gold); text-decoration:underline; }
.submit-btn { display:inline-flex; align-items:center; gap:.75rem; padding:1rem 3rem; background:var(--gold); color:var(--navy); border:none; border-radius:var(--radius); font-family:var(--font-body); font-size:1rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; transition:all .25s ease; }
.submit-btn:hover { background:var(--gold-lite); transform:translateY(-2px); box-shadow:0 8px 24px rgba(196,154,40,.4); }
.submit-btn svg { width:18px; height:18px; }
.form-success-msg { display:none; background:rgba(196,154,40,.12); border:1px solid var(--gold); border-radius:var(--radius); padding:1.5rem 2rem; margin-top:1.5rem; text-align:center; color:var(--gold); font-weight:600; }

/* ── THANK YOU PAGE ──────────────────────────────────────── */
.thanks-wrap { min-height:80vh; display:flex; align-items:center; justify-content:center; background:var(--navy-deep); }
.thanks-card { background:var(--navy-mid); border:1px solid rgba(196,154,40,.3); border-top:4px solid var(--gold); border-radius:var(--radius); padding:4rem 3rem; text-align:center; max-width:560px; width:100%; }
.thanks-icon { font-size:3rem; margin-bottom:1.5rem; }
.thanks-title { font-family:var(--font-head); font-size:2.5rem; font-weight:400; color:var(--white); margin-bottom:1rem; }
.thanks-title em { color:var(--gold); font-style:italic; }
.thanks-body { font-size:.95rem; color:rgba(255,255,255,.65); line-height:1.8; margin-bottom:2rem; }
.thanks-email { color:var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .footer-inner  { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .why-grid   { grid-template-columns:1fr; }
  .steps      { grid-template-columns:1fr 1fr; }
  .steps::before { display:none; }
  .opps-secondary { grid-template-columns:1fr; }
  .opp-sm { padding:2rem; }
  .opp-creator-inner { grid-template-columns:1fr; gap:2.5rem; }
  .contact-inner { grid-template-columns:1fr; gap:3rem; }
  .footer-inner { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .services-grid { grid-template-columns:1fr; }
  .frow  { grid-template-columns:1fr; }
  .frow-3 { grid-template-columns:1fr 1fr; }
  .check-grid { grid-template-columns:1fr; }
  .check-grid-3 { grid-template-columns:1fr 1fr; }
  .sig-row { grid-template-columns:1fr; }
  .opp-creator { padding:3rem 0; }
}
@media (max-width:480px) {
  .steps { grid-template-columns:1fr; }
  .about-stats { grid-template-columns:1fr 1fr; }
  .hero h1 { font-size:2.4rem; }
  .frow-3 { grid-template-columns:1fr; }
  .check-grid-3 { grid-template-columns:1fr; }
}
