/*
Theme Name: SKILz — AI USCPAs Co.
Theme URI: https://ai.uscpa.com
Author: AI USCPAs Co.
Author URI: https://ai.uscpa.com
Description: Professional landing page theme for SKILz — Unified Skills and Performance for Modern Service Firms. Navy & gold branding. Elementor-ready.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skilz-theme
Tags: elementor, one-page, business, professional
*/

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

:root {
  --navy:    #0D1B3E;
  --navy2:   #152347;
  --gold:    #C9A84C;
  --gold2:   #E8C76A;
  --gold3:   #f5e4a8;
  --white:   #FFFFFF;
  --off:     #F7F6F2;
  --slate:   #4A5568;
  --dgray:   #718096;
  --lgray:   #E2E8F0;
  --mgray:   #CBD5E0;
  --green:   #276749;
  --teal:    #2C7A7B;
  --r: 6px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────────────────────────────────── */
.display { font-family: 'Big Shoulders Display', sans-serif; }
h1, h2, h3 { line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.skilz-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(13,27,62,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.nav-logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.nav-logo .z { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1.25rem; border-radius: var(--r);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1300px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brain-svg {
  width: min(480px, 90%);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute; right: -10%; top: 10%;
  width: 60vw; height: 80vh;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: "●"; font-size: 0.5rem; }

.hero-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero-title .z { color: var(--gold); }
.hero-title .tm { font-size: 0.35em; vertical-align: super; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 1.75rem; border-radius: var(--r);
  font-weight: 700; font-size: 1rem;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
  padding: 0.85rem 1.75rem; border-radius: var(--r);
  font-weight: 500; font-size: 1rem;
  transition: all .2s; background: transparent; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat-val {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.8rem; font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Section base ─────────────────────────────────────────────────────── */
.skilz-section { padding: 6rem 5vw; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }

/* ── Meaning section ──────────────────────────────────────────────────── */
.section-meaning { background: var(--navy2); }
.acronym-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 3rem;
}
.acronym-cell {
  background: var(--navy);
  padding: 1.75rem 2rem;
  transition: background .2s;
}
.acronym-cell:hover { background: rgba(201,168,76,0.06); }
.acr-letter {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3.5rem; font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 0.5rem;
}
.acr-word { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.acr-def { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ── Problem/Solution ─────────────────────────────────────────────────── */
.section-problem { background: var(--navy); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.problem-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r);
}
.problem-x {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(220,50,50,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fc8080; font-size: 0.85rem; font-weight: 700; margin-top: 1px;
}
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.solution-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18); border-radius: var(--r);
}
.solution-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(201,168,76,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem; margin-top: 1px;
}
.item-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.item-desc { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── Verticals ────────────────────────────────────────────────────────── */
.section-verticals { background: var(--navy2); }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.vertical-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all .25s; position: relative; overflow: hidden;
}
.vertical-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.vertical-card:hover::before { transform: scaleX(1); }
.vertical-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
.v-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.v-badge.live { background: rgba(39,103,73,0.25); color: #68d391; }
.v-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.v-desc { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ── Tiers ────────────────────────────────────────────────────────────── */
.section-tiers { background: var(--navy); }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.tier-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 2rem;
  position: relative; transition: all .25s;
}
.tier-card.popular {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 100px;
  white-space: nowrap;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.tier-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-bottom: 0.2rem;
}
.tier-tag { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; font-style: italic; }
.tier-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 0.25rem;
}
.tier-period { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.tier-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.25rem 0; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.tier-features li { display: flex; gap: 0.65rem; font-size: 0.85rem; color: rgba(255,255,255,0.78); align-items: flex-start; }
.tier-features li::before { content:"✓"; color: var(--gold); font-weight: 800; flex-shrink:0; margin-top:1px; }
.tier-features li.na { color: rgba(255,255,255,0.3); }
.tier-features li.na::before { content:"—"; color: rgba(255,255,255,0.2); }
.tier-btn {
  display: block; width: 100%; padding: 0.85rem;
  border-radius: var(--r); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all .2s; border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-align: center; text-decoration: none;
}
.tier-btn-outline { background: transparent; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); }
.tier-btn-outline:hover { background: rgba(201,168,76,0.1); }
.tier-btn-filled { background: var(--gold); color: var(--navy); }
.tier-btn-filled:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── Team ─────────────────────────────────────────────────────────────── */
.section-team { background: var(--navy2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.team-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r); padding: 1.75rem;
  transition: border-color .2s;
}
.team-card:hover { border-color: rgba(201,168,76,0.3); }
.team-card.reserved { border-style: dashed; border-color: rgba(201,168,76,0.2); }
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.team-name.muted { color: rgba(255,255,255,0.4); }
.team-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-role.muted { color: rgba(201,168,76,0.4); }
.team-bio { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.6; }
.team-bio.muted { color: rgba(255,255,255,0.3); }

/* ── Authority ────────────────────────────────────────────────────────── */
.section-authority {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.auth-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.auth-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85); line-height: 1.7;
  font-style: italic; margin-bottom: 2rem;
}
.auth-attribution { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 3rem; }
.auth-credentials { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.cred-item { text-align: center; }
.cred-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3.5rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.cred-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; }

/* ── Guarantee ────────────────────────────────────────────────────────── */
.section-guarantee { background: var(--navy2); }
.section-guarantee .section-label,
.section-guarantee .section-title { text-align: center; }
.guar-box {
  max-width: 680px; margin: 3rem auto 0;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px; padding: 2.5rem;
  text-align: center;
}
.guar-icon { font-size: 3rem; margin-bottom: 1rem; }
.guar-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--gold);
  margin-bottom: 0.75rem;
}
.guar-text { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.guar-text strong { color: var(--gold); }
.guar-box .btn-primary { display: inline-flex; margin: 0 auto; }

/* ── CTA Section ──────────────────────────────────────────────────────── */
.section-cta {
  background: var(--gold); color: var(--navy);
  text-align: center; padding: 5rem 5vw;
}
.section-cta .section-label { color: rgba(13,27,62,0.6); }
.section-cta .section-title { color: var(--navy); margin-bottom: 1rem; }
.section-cta .section-sub { color: rgba(13,27,62,0.75); margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 1rem 2rem; border-radius: var(--r);
  font-weight: 700; font-size: 1rem;
  transition: all .2s; border: none; cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.btn-dark:hover { background: #1a2e5a; transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent; border: 2px solid var(--navy); color: var(--navy);
  padding: 1rem 2rem; border-radius: var(--r);
  font-weight: 600; font-size: 1rem;
  transition: all .2s; cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.btn-outline-dark:hover { background: rgba(13,27,62,0.08); }
.cta-footnote { margin-top: 1.5rem; font-size: 0.8rem; color: rgba(13,27,62,0.5); }

/* ── Footer ───────────────────────────────────────────────────────────── */
.skilz-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 5vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.5rem; font-weight: 900; line-height: 1;
}
.footer-logo .z { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-tiers { display: flex; gap: 0.75rem; }
.footer-tiers span { font-size: 0.72rem; color: rgba(201,168,76,0.5); }

/* ── Gold bar accent ──────────────────────────────────────────────────── */
.gold-bar { height: 4px; background: var(--gold); width: 48px; margin-bottom: 1.5rem; border-radius: 2px; }

/* ── Animations ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Tiers footnote ───────────────────────────────────────────────────── */
.tiers-footnote { text-align: center; margin-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── WordPress admin bar offset ──────────────────────────────────────── */
.admin-bar .skilz-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .skilz-nav { top: 46px; }
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .brain-svg { width: min(320px, 80%); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .auth-credentials { gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
}

/* ── Inner Pages ──────────────────────────────────────────────────────── */
.page-hero {
    background: var(--navy2);
    padding: 8rem 5vw 4rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.page-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-top: 0.5rem;
}

.page-content-wrap {
    background: var(--navy);
    padding: 4rem 5vw 6rem;
}
.page-content-inner { max-width: 900px; }

/* Prose styles for the_content() output */
.page-content-body { color: rgba(255,255,255,0.78); line-height: 1.75; font-size: 1.05rem; }
.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    color: var(--white);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.page-content-body h1 { font-size: 2.5rem; }
.page-content-body h2 { font-size: 2rem; color: var(--gold); }
.page-content-body h3 { font-size: 1.5rem; }
.page-content-body h4 { font-size: 1.15rem; }
.page-content-body p { margin-bottom: 1.25rem; }
.page-content-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.page-content-body a:hover { color: var(--gold2); }
.page-content-body ul,
.page-content-body ol { margin: 0 0 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.page-content-body li { color: rgba(255,255,255,0.75); }
.page-content-body ul li::marker { color: var(--gold); }
.page-content-body ol li::marker { color: var(--gold); font-weight: 700; }
.page-content-body strong { color: var(--white); font-weight: 700; }
.page-content-body em { color: rgba(255,255,255,0.65); }
.page-content-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(201,168,76,0.06);
    border-radius: 0 var(--r) var(--r) 0;
    font-style: italic;
    color: rgba(255,255,255,0.7);
}
.page-content-body hr {
    border: none;
    border-top: 1px solid rgba(201,168,76,0.2);
    margin: 2.5rem 0;
}
.page-content-body table {
    width: 100%; border-collapse: collapse; margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.page-content-body th {
    background: rgba(201,168,76,0.12); color: var(--gold);
    padding: 0.75rem 1rem; text-align: left;
    font-weight: 700; font-size: 0.75rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.page-content-body td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.72);
}
.page-content-body tr:hover td { background: rgba(255,255,255,0.02); }
.page-content-body img {
    border-radius: var(--r);
    max-width: 100%;
    margin: 1rem 0;
}

/* ── Contact Page ─────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--r);
}
.contact-icon {
    font-size: 1.4rem; flex-shrink: 0; margin-top: 2px;
}
.contact-item-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-item-val { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.contact-item-val a { color: var(--gold); }

.skilz-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color .2s;
    outline: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select,
.form-group textarea:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(255,255,255,0.06);
}
.form-group select option { background: var(--navy2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }

/* ── Elementor compatibility ──────────────────────────────────────────── */
.elementor-page .skilz-nav { z-index: 9999; }
.elementor-section { position: relative; }
