/* ============================================================
   ONIREM SOLUTIONS — Global Stylesheet
   ============================================================ */

/* === VARIABLES === */
:root {
  --navy:       #080f1e;
  --navy-mid:   #0e1c35;
  --navy-light: #162845;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim:   rgba(201,168,76,0.12);
  --cream:      #eee8d8;
  --text-light: #a8bacf;
  --text-muted: #5d7390;
  --white:      #ffffff;
  --border:     rgba(201,168,76,0.14);
  --border-mid: rgba(201,168,76,0.22);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

/* === NAV === */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(8,15,30,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s, box-shadow .3s;
}
body > nav.scrolled {
  padding: .85rem 5vw;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .02em;
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .5rem 1.3rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* === HAMBURGER === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: .85rem 1.75rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: .85rem 1.75rem;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: rgba(201,168,76,.5); color: var(--cream); }

/* === HOMEPAGE HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(201,168,76,.07) 0%, transparent 65%),
    linear-gradient(170deg, #080f1e 0%, #0c1a32 60%, #080f1e 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-tags { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tag {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .3rem .75rem;
  border-radius: 1px;
}
.tag.primary { border-color: rgba(201,168,76,.5); color: var(--gold); }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hcard-header {
  background: var(--navy-light);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .75rem;
}
.hcard-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: .7; }
.hcard-title { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.hcard-body { padding: 1.5rem; }
.hcard-service {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(201,168,76,.07);
}
.hcard-service:last-of-type { border-bottom: none; }
.hcard-service-name { font-size: .9rem; color: var(--cream); }
.hcard-service-badge { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 1px; }
.badge-primary { background: rgba(201,168,76,.15); color: var(--gold); }
.badge-secondary { background: rgba(168,186,207,.08); color: var(--text-muted); }
.hcard-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === SHARED SECTION STYLES === */
section { padding: 6rem 5vw; }
.section-tag {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: block;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: .97rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.75;
}

/* === SERVICES (homepage) === */
.services { background: var(--navy-mid); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.svc-card {
  background: var(--navy-mid);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.svc-card:hover { background: var(--navy-light); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: rgba(201,168,76,.12); line-height: 1; margin-bottom: 1.25rem; }
.svc-platform { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; }
.svc-name { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: .9rem; }
.svc-lead { font-size: .88rem; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.svc-highlight {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2px;
  padding: .9rem 1rem;
  margin-bottom: 1.25rem;
}
.svc-highlight p { font-size: .8rem; color: var(--gold-light); line-height: 1.6; font-weight: 300; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.svc-list li { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.svc-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: .6; }

/* === USE CASES (homepage) === */
.usecases { background: var(--navy); }
.uc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.uc-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  transition: border-color .3s;
  text-decoration: none;
  display: block;
}
.uc-card:hover { border-color: rgba(201,168,76,.35); }
.uc-icon { font-size: 1.3rem; margin-bottom: 1rem; color: var(--gold); }
.uc-title { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: .55rem; }
.uc-desc { font-size: .875rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }
.uc-scenario {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === WHY ONIREM === */
.why { background: var(--navy-mid); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
.why-item { display: flex; gap: 1.25rem; }
.why-num { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--gold); min-width: 1.8rem; padding-top: .15rem; }
.why-body h3 { font-size: .97rem; font-weight: 500; color: var(--white); margin-bottom: .35rem; }
.why-body p { font-size: .86rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }
.why-quote {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.25rem;
  margin-top: 2.5rem;
}
.why-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}
.why-quote cite { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }

/* === CONTACT (homepage) === */
.contact { background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cd-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .25rem; }
.cd-value { font-size: .95rem; color: var(--cream); margin-bottom: 1.4rem; }
.cd-value a { color: var(--gold-light); text-decoration: none; }
.cd-value a:hover { color: var(--gold); }
.contact-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}
.form-title { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  padding: .7rem .9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-success {
  display: none;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 3px;
  padding: 1.25rem;
  text-align: center;
  color: var(--gold-light);
  font-size: .9rem;
  margin-top: 1rem;
}
.form-error {
  display: none;
  background: rgba(180,60,60,.12);
  border: 1px solid rgba(200,80,80,.3);
  border-radius: 3px;
  padding: 1.25rem;
  text-align: center;
  color: #e8a0a0;
  font-size: .9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* === FOOTER === */
footer { background: #050c18; padding: 3.5rem 5vw 1.75rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 1.2rem; display: block; margin-bottom: .9rem; }
.footer-brand p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 270px; }
.footer-col h5 { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .83rem; color: var(--text-muted); text-decoration: none; transition: color .2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ============================================================
   INTERIOR PAGE STYLES
   ============================================================ */

/* === PAGE HERO === */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(201,168,76,.06) 0%, transparent 60%),
    linear-gradient(160deg, #080f1e 0%, #0c1a32 70%, #080f1e 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-inner { position: relative; max-width: 760px; }
.page-hero .hero-eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }

/* === INTERIOR SECTION LAYOUTS === */
.int-section { padding: 5rem 5vw; }
.int-section.alt { background: var(--navy-mid); }
.int-section.dark { background: var(--navy); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-header { margin-bottom: 3rem; }
.section-header .section-sub { max-width: 600px; margin-top: .75rem; }

/* === DETAIL CARDS === */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.detail-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.75rem;
  transition: border-color .3s, background .3s;
}
.detail-card:hover { border-color: var(--border-mid); background: var(--navy-light); }
.detail-card-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: .9rem;
  color: var(--gold);
}
.detail-card h3 { font-size: .97rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.detail-card p { font-size: .84rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }

/* === PROCESS STEPS === */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.process-step {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 2rem;
  line-height: 1;
  padding-top: .2rem;
}
.step-body h3 { font-size: .97rem; font-weight: 500; color: var(--white); margin-bottom: .4rem; }
.step-body p { font-size: .86rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }

/* === MODULE/SPEC GRID === */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.module-item {
  background: var(--navy-mid);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: background .2s;
}
.module-item:hover { background: var(--navy-light); }
.module-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: .7; }
.module-name { font-size: .88rem; color: var(--cream); }
.module-badge {
  margin-left: auto;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .18rem .55rem;
  border-radius: 1px;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  flex-shrink: 0;
}

/* === INFO BOX === */
.info-box {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  margin-top: 2rem;
}
.info-box-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.info-box p { font-size: .88rem; color: var(--text-light); font-weight: 300; line-height: 1.75; }

.highlight-box {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 3px;
  padding: 1.75rem;
  margin-top: 2rem;
}
.highlight-box p { font-size: .9rem; color: var(--gold-light); font-weight: 300; line-height: 1.7; }

/* === CLIENT PROFILE === */
.client-profile {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
}
.client-profile-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}
.client-profile h3 { font-size: 1rem; color: var(--white); font-weight: 500; margin-bottom: .75rem; }
.client-profile p { font-size: .86rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }

/* === CTA STRIP === */
.cta-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 5vw;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .9rem;
}
.cta-strip p {
  font-size: .95rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.cta-strip .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === USE CASE PAGE === */
.uc-full-grid { display: flex; flex-direction: column; gap: 0; }
.uc-full-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.uc-full-item:last-child { border-bottom: none; }
.uc-meta {}
.uc-meta-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: rgba(201,168,76,.12);
  line-height: 1;
  margin-bottom: .5rem;
}
.uc-meta-platform {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.uc-meta h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.25;
}
.uc-content h4 {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  margin-top: 1.5rem;
}
.uc-content h4:first-child { margin-top: 0; }
.uc-content p { font-size: .9rem; color: var(--text-light); font-weight: 300; line-height: 1.75; margin-bottom: 1rem; }
.uc-content ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.uc-content ul li { font-size: .88rem; color: var(--text-light); display: flex; align-items: flex-start; gap: .65rem; line-height: 1.6; }
.uc-content ul li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: .5rem; opacity: .7; }
.uc-scenario-box {
  background: var(--navy-light);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  border-radius: 0 2px 2px 0;
}
.uc-scenario-box p { font-size: .82rem; color: var(--text-muted); font-style: italic; margin: 0; }

/* === CONTACT PAGE === */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item {}
.contact-info-item .cd-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }
.contact-info-item .cd-value { font-size: .97rem; color: var(--cream); }
.contact-info-item .cd-value a { color: var(--gold-light); text-decoration: none; }
.contact-info-item .cd-value a:hover { color: var(--gold); }

.what-to-expect { margin-top: 3rem; }
.what-to-expect h3 {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .55s ease both .1s; }
.hero h1      { animation: fadeUp .55s ease both .22s; }
.hero-sub     { animation: fadeUp .55s ease both .35s; }
.hero-tags    { animation: fadeUp .55s ease both .42s; }
.hero-actions { animation: fadeUp .55s ease both .5s; }
.hero-card    { animation: fadeUp .55s ease both .38s; }

.page-hero .hero-eyebrow,
.page-hero .breadcrumb { animation: fadeUp .5s ease both .05s; }
.page-hero h1          { animation: fadeUp .5s ease both .15s; }
.page-hero-sub         { animation: fadeUp .5s ease both .25s; }
.page-hero .hero-actions { animation: fadeUp .5s ease both .35s; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner, .why-inner { grid-template-columns: 1fr; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 3rem; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .uc-full-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .module-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,15,30,.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .services-grid, .uc-grid, .detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  section { padding: 4rem 5vw; }
  .int-section { padding: 3.5rem 5vw; }
  .page-hero { padding: 8rem 5vw 4rem; }
  .uc-meta-num { display: none; }
}
