/* ===========================
   SAXON GROWTH STYLESHEET
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === CUSTOM CURSOR === */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
  input, textarea, select { cursor: auto !important; }
}
#custom-cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  border-radius: 50%; border: 1.5px solid var(--gold); background: var(--gold-dim);
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.12s ease-out, height 0.12s ease-out, opacity 0.2s ease;
  opacity: 0;
}
#custom-cursor.visible { opacity: 1; }

:root {
  --bg:        #07080F;
  --bg-2:      #0C0E1A;
  --bg-card:   #111420;
  --border:    rgba(255, 255, 255, 0.07);
  --gold:      #C9A462;
  --gold-dim:  rgba(201, 164, 98, 0.12);
  --gold-line: rgba(201, 164, 98, 0.25);
  --text:      #F1F5F9;
  --text-2:    #8B98B0;
  --text-3:    #3D4558;
  --serif:     'Libre Caslon Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --mw:        1200px;
  --r:         14px;
}

/* === LIGHT THEME === */
[data-theme="light"] {
  --bg:        #F8F6F1;
  --bg-2:      #EFECEA;
  --bg-card:   #FFFFFF;
  --border:    rgba(0, 0, 0, 0.09);
  --gold:      #9A6518;
  --gold-dim:  rgba(154, 101, 24, 0.1);
  --gold-line: rgba(154, 101, 24, 0.28);
  --text:      #111318;
  --text-2:    #525A6E;
  --text-3:    #9EA6B8;
}
[data-theme="light"] .nav.scrolled { background: rgba(248, 246, 241, 0.92); }
[data-theme="light"] .card-overlay { background: linear-gradient(to bottom, rgba(248,246,241,0.02) 0%, rgba(248,246,241,0.5) 40%, rgba(248,246,241,0.95) 100%); }
[data-theme="light"] .card-title  { color: #111318; }
[data-theme="light"] .card-desc   { color: rgba(17,19,24,0.65); }
[data-theme="light"] .card-img    { filter: brightness(0.92) saturate(0.95); }
[data-theme="light"] .btn-ghost { color: var(--text-2); border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .btn-ghost:hover { color: var(--text); border-color: rgba(0,0,0,0.28); }

/* Icon visibility per theme: show the target mode's icon */
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }

/* Theme toggle button */
.theme-toggle {
  background: none; border: 1px solid var(--border); color: var(--text-2);
  width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s; flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); border-color: var(--gold-line); }

/* Smooth theme transitions */
body, .nav, .metrics, .about, .why, .contact, .footer,
.acard, .why-card, .service-card,
.form-group input, .form-group textarea {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
em { font-family: var(--serif); font-style: normal; color: var(--gold); }
strong { color: var(--text); font-weight: 600; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 2rem;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
  padding: 1rem 2rem;
}
.nav-inner { max-width: var(--mw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 0.85rem; }
.nav-logo-icon { display: block; flex-shrink: 0; }
.nav-logo-text { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; letter-spacing: 0.01em; white-space: nowrap; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-2); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { font-size: 0.85rem; font-weight: 600; color: #0a0a0a; background: var(--gold); padding: 0.5rem 1.25rem; border-radius: 6px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; white-space: nowrap; }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.85rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; font-family: var(--sans);
  letter-spacing: 0.03em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease; line-height: 1;
}
.btn-primary { background: var(--gold); color: #07080F; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201, 164, 98, 0.28); opacity: 0.92; }
.btn-ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.03); }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* === HERO === */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; padding: 0 2rem; }
.hero-badge {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-line);
  padding: 0.45rem 1.1rem; border-radius: 100px; margin-bottom: 2.25rem;
  animation: fadeUp 0.8s ease both;
}
.hero-heading {
  font-family: var(--serif); font-weight: 400; line-height: 1.03;
  font-size: clamp(3.25rem, 7.5vw, 6.25rem); letter-spacing: -0.035em;
  color: var(--text); margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-2); line-height: 1.75;
  max-width: 580px; margin: 0 auto 2.75rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  animation: fadeUp 1s 0.8s ease both;
}
.hero-scroll span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(201, 164, 98, 0.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.7)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* === METRICS === */
.metrics { padding: 3.5rem 2rem; position: relative; z-index: 1; }
.metrics-inner {
  max-width: var(--mw); margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 2.5rem;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px; padding: 2.25rem 3.5rem;
}
.metric { text-align: center; }
.metric-value {
  font-family: var(--serif); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem; font-variant-numeric: tabular-nums;
}
.metric-label { font-size: 0.75rem; color: var(--text-2); letter-spacing: 0.04em; line-height: 1.5; text-transform: uppercase; font-weight: 500; }
.metric-rule { width: 1px; height: 56px; background: var(--border); }

/* === SECTION COMMON === */
.section-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.section-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::after,
.sc-teaser .section-tag::after {
  content: ''; display: block; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.section-title { font-family: var(--serif); font-size: clamp(2.1rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.03em; color: var(--text); margin-bottom: 1.1rem; }
.section-sub { color: var(--text-2); font-size: 1rem; line-height: 1.8; max-width: 520px; }
.section-header { max-width: var(--mw); margin: 0 auto 2.5rem; padding: 0 2rem; text-align: center; }
.section-header .section-sub, .sc-teaser .section-sub { margin: 0 auto; }

/* === SERVICES === */
.services { padding: 8rem 0 5rem; position: relative; z-index: 1; }

.carousel-track {
  display: flex; gap: 20px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab; padding: 2rem max(2rem, calc((100vw - 1200px) / 2));
  margin-top: 1.5rem;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track::-webkit-scrollbar { display: none; }

.service-card {
  position: relative; flex: 0 0 340px; height: 470px;
  border-radius: var(--r); overflow: hidden;
  transition: transform 0.3s ease; border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-5px); }
.card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.service-card:hover .card-img { transform: scale(1.06); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,8,15,0.05) 0%, rgba(7,8,15,0.45) 35%, rgba(7,8,15,0.93) 100%);
}
.card-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.card-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.4rem; }
.card-title {
  font-family: var(--sans); font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.65rem;
  line-height: 1.2; letter-spacing: -0.01em; min-height: 2.4em; display: flex; align-items: flex-end;
}
.card-desc {
  font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; min-height: 6.4em;
}
.card-link { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; transition: letter-spacing 0.2s; }
.service-card:hover .card-link { letter-spacing: 0.06em; }

/* === ABOUT === */
.about { padding: 8rem 2rem; background: transparent; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.about-inner { max-width: var(--mw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-bio { color: var(--text-2); font-size: 1.025rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.acard {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 2rem 1.75rem; transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.acard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); opacity: 0; transition: opacity 0.3s; }
.acard:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.acard:hover::before { opacity: 1; }
.acard-icon { color: var(--gold); font-size: 0.9rem; opacity: 0.4; margin-bottom: 1rem; }
.acard-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--text); line-height: 1; margin-bottom: 0.55rem; letter-spacing: -0.03em; }
.acard-label { font-size: 0.78rem; color: var(--text-2); line-height: 1.55; }

.founders-grid { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.founder-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; display: flex; flex-direction: column; }
.founder-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 0.25rem; }
.founder-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.founder-bio { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; }
.founder-quote { border-left: 2px solid var(--gold-line); padding-left: 1rem; font-size: 0.86rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1.25rem; }
.founder-quote cite { display: block; margin-top: 0.5rem; font-size: 0.76rem; color: var(--text-3); font-style: normal; }
.founder-link { font-size: 0.82rem; font-weight: 600; color: var(--gold); text-decoration: none; margin-top: auto; }
.founder-link:hover { text-decoration: underline; }

/* === WHY === */
.why { padding: 8rem 2rem; position: relative; z-index: 1; }
.why-inner { max-width: var(--mw); margin: 0 auto; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.why-card {
  background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 3rem 2.75rem;
  transition: background 0.25s;
}
.why-card:nth-child(2n) { border-right: none; }
.why-card:nth-child(3), .why-card:nth-child(4) { border-bottom: none; }
.why-card:hover { background: rgba(201,164,98,0.03); }
.why-num {
  font-family: var(--serif); font-size: 2.75rem; font-weight: 400;
  color: var(--text-3); line-height: 1; margin-bottom: 1.75rem;
  letter-spacing: -0.04em;
}
.why-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--text); margin-bottom: 0.85rem; line-height: 1.25; }
.why-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.75; }

/* === CONTACT === */
.contact { padding: 8rem 2rem; background: transparent; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.contact-inner { max-width: var(--mw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.contact-detail { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.contact-detail-label { font-size: 0.8rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.04em; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.form-group input,
.form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.875rem 1rem; font-size: 0.925rem; font-family: var(--sans);
  color: var(--text); outline: none; transition: border-color 0.2s; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold-line); }

/* Phone field with dial code */
.phone-field { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.2s; background: var(--bg-card); }
.phone-field:focus-within { border-color: var(--gold-line); }
.phone-field .dial-code {
  width: 4.25rem; flex-shrink: 0;
  background: var(--bg-2); border: none; border-right: 1px solid var(--border);
  padding: 0.875rem 0.65rem; font-size: 0.85rem; font-family: var(--sans);
  color: var(--text); outline: none;
}
.phone-field .dial-code::placeholder { color: var(--text-3); }
.phone-field input[type="tel"] {
  flex: 1; border: none; border-radius: 0; background: transparent;
  padding: 0.875rem 1rem; font-size: 0.925rem; font-family: var(--sans);
  color: var(--text); outline: none;
}
.phone-field input[type="tel"]::placeholder { color: var(--text-3); }

/* === CASE STUDIES === */
.cases { padding: 8rem 2rem; position: relative; z-index: 1; border-top: 1px solid var(--border); }
.cases-inner { max-width: var(--mw); margin: 0 auto; }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 4rem; }
.case-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 3rem; transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.case-card:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.case-sector {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1.25rem;
}
.case-rule { width: 36px; height: 2px; background: var(--gold); margin-bottom: 1.75rem; }
.case-heading { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.case-body { color: var(--text-2); font-size: 0.93rem; line-height: 1.78; flex: 1; margin-bottom: 2rem; }
.case-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  padding: 1.75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.case-metric-val { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.03em; }
.case-metric-label { font-size: 0.74rem; color: var(--text-2); line-height: 1.4; }
.case-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.case-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-line);
  border-radius: 100px; padding: 0.3rem 0.9rem;
}

/* === FOOTER === */
.footer { padding: 4.5rem 2rem 2.5rem; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-inner { max-width: var(--mw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.footer-tagline { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1.25rem; }
.footer-col { display: flex; flex-direction: column; }
.footer-col a { font-size: 0.875rem; color: var(--text-2); text-decoration: none; margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.76rem; color: var(--text-3); }
.footer-copy-right { font-size: 0.76rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.76rem; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-2); }
.nav-active { color: var(--text) !important; }

/* === COOKIE CONSENT === */
.cookie-banner {
  position: fixed; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 200;
  max-width: 640px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { flex: 1 1 320px; font-size: 0.84rem; color: var(--text-2); line-height: 1.55; }
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* === SERVICE MODAL === */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  animation: fadeIn 0.2s ease;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.5rem; max-width: 560px; width: 100%; position: relative;
  max-height: 85vh; overflow-y: auto;
  animation: slideUp 0.3s ease;
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: 1px solid var(--border); color: var(--text-2);
  width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text); border-color: var(--gold-line); }
.modal-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.modal-title { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--text); margin-bottom: 1rem; line-height: 1.2; }
.modal-desc { color: var(--text-2); font-size: 0.975rem; line-height: 1.75; margin-bottom: 1.5rem; }
.modal-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.modal-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-2); line-height: 1.5; }
.modal-list li::before { content: '◈'; color: var(--gold); font-size: 0.65rem; margin-top: 0.3rem; flex-shrink: 0; }
.modal-cta { width: 100%; justify-content: center; }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* === SCORECARD === */
.scorecard-section { padding: 8rem 2rem; background: transparent; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.scorecard-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.sc-meta { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin: 1.5rem 0 2.5rem; }
.sc-meta span { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }
.sc-dot { color: var(--text-3); }

.sc-progress-bar { height: 3px; background: var(--border); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.sc-progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s ease; width: 0%; }
.sc-area-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }

.sc-question-wrap { text-align: left; }
.sc-q-text { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--text); line-height: 1.4; margin-bottom: 1.5rem; }
.sc-options { display: flex; flex-direction: column; gap: 0.75rem; }
.sc-option {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: all 0.2s; text-align: left;
}
.sc-option:hover { border-color: var(--gold-line); }
.sc-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.sc-option-score {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--text-2); flex-shrink: 0;
  transition: all 0.2s;
}
.sc-option.selected .sc-option-score { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }
.sc-option-text { font-size: 0.9rem; color: var(--text-2); line-height: 1.5; padding-top: 0.1rem; }
.sc-option.selected .sc-option-text { color: var(--text); }

.sc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }

.sc-score-ring {
  width: 160px; height: 160px; border-radius: 50%;
  border: 3px solid var(--gold-line); margin: 0 auto 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--gold-dim);
}
.sc-score-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 400; color: var(--gold); line-height: 1; }
.sc-score-denom { font-size: 0.75rem; color: var(--text-2); font-weight: 500; margin-top: 0.25rem; }
.sc-result-band { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 0.75rem; }
.sc-result-desc { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; max-width: 480px; margin: 0 auto 2.5rem; }
.sc-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2.5rem; text-align: left; }
.sc-area-result { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; }
.sc-area-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); margin-bottom: 0.4rem; }
.sc-area-bar-wrap { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 0.4rem; }
.sc-area-bar { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.6s ease; }
.sc-area-score-label { font-size: 0.75rem; color: var(--text-2); }
.sc-result-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .metrics-inner { border-radius: 40px; padding: 2rem 2.5rem; }
  .about-inner { gap: 3rem; }
  .contact-inner { gap: 3.5rem; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .metrics-inner { flex-direction: column; gap: 2rem; border-radius: 28px; padding: 2.5rem 2rem; }
  .metric-rule { width: 48px; height: 1px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .why-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .why-card:nth-child(3) { border-bottom: 1px solid var(--border); }
  .why-card:nth-child(4) { border-bottom: none; }
  .why-card:last-child { border-right: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 290px; height: 420px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cases-grid { grid-template-columns: 1fr; }
}

/* === LEGAL PAGES === */
.legal-page { padding: 8rem 2rem 6rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 400; color: var(--text); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.legal-updated { font-size: 0.8rem; color: var(--text-3); margin-bottom: 3rem; }
.legal-inner h2 { font-family: var(--sans); font-size: 1.15rem; font-weight: 600; color: var(--text); margin: 2.5rem 0 1rem; }
.legal-inner p { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1rem; }
.legal-inner ul { padding-left: 1.25rem; margin-bottom: 1.5rem; }
.legal-inner li { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 0.5rem; }
.legal-inner a { color: var(--gold); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }
