/* ============================================
   RazaAnalytics Inc. — Master Stylesheet
   Dark Luxury Executive | Gold Accents
   ============================================ */

:root {
  --black:    #080a0e;
  --deep:     #0d1018;
  --surface:  #12161f;
  --card:     #161b26;
  --border:   #1f2636;
  --border2:  #2a3347;
  --gold:     #c9a84c;
  --gold2:    #e8c97a;
  --gold-dim: #8a6e2f;
  --white:    #f4f1eb;
  --muted:    #8a94a8;
  --light:    #cdd3e0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --max:      1240px;
  --radius:   4px;
  --trans:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- SECTIONS ---- */
.section { padding: 7rem 0; }
.section-dark { background: var(--deep); }
.section-gold {
  background: linear-gradient(135deg, #0e0c06 0%, #1a1508 50%, #0e0c06 100%);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

/* ---- TYPOGRAPHY ---- */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-tag.light { color: var(--gold2); }
.section-tag.light::before { background: var(--gold2); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  max-width: 560px;
}
.section-headline.light { color: var(--white); }
.section-headline em {
  font-style: italic;
  color: var(--gold);
}

.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-headline { margin: 0 auto; }
.section-header.center .section-tag::before { display: none; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #080a0e;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  padding: 0.9rem 2rem;
  border: 1px solid var(--border2);
  transition: border-color var(--trans), color var(--trans);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--trans);
}
.link-arrow:hover { gap: 0.7rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans), backdrop-filter var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-ra {
  width: 38px; height: 38px;
  background: var(--gold);
  color: #080a0e;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.logo-text em {
  font-style: normal;
  display: block;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: auto;
  height: 100%;
}
.nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #080a0e;
  background: var(--gold);
  padding: 0.6rem 1.3rem;
  flex-shrink: 0;
  transition: background var(--trans);
  margin-left: 1rem;
}
.nav-cta:hover { background: var(--gold2); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--trans), opacity var(--trans);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0.2rem;
}
.nav-mobile a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

}
.dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.7;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}
.hero-orb1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb2 {
  width: 400px; height: 400px;
  background: #2a4a7f;
  bottom: -80px; left: 10%;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease forwards;
}
.eyebrow-line {
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 820px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { padding: 0 2.5rem 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num sup { font-size: 1.2rem; vertical-align: super; }
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 400;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border2);
  margin: 0 2.5rem;
  flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.marquee-track .mx { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   STATEMENT
   ============================================ */
.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.statement-right p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}
.statement-right p:last-of-type { margin-bottom: 2rem; }

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.service-card {
  background: var(--card);
  padding: 2.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background var(--trans);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.service-card:hover { background: #1a2030; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  transition: color var(--trans);
}
.service-card:hover .service-icon { color: var(--gold); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.card-arrow {
  font-size: 1.2rem;
  color: var(--gold-dim);
  transition: color var(--trans), transform var(--trans);
  display: inline-block;
}
.service-card:hover .card-arrow { color: var(--gold); transform: translateX(4px); }
.services-cta { text-align: center; }

/* ============================================
   INDUSTRIES STRIP
   ============================================ */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}
.industries-list span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border2);
  transition: border-color var(--trans), color var(--trans);
}
.industries-list span:hover { border-color: var(--gold); color: var(--gold); cursor: default; }

/* ============================================
   IMPACT
   ============================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.impact-stat {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--gold-dim);
  opacity: 0.9;
}
.impact-stat:last-child { border-right: none; }
.impact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.impact-desc {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   TRUST
   ============================================ */
.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.trust-logo {
  background: var(--surface);
  padding: 1.8rem 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans), background var(--trans);
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.trust-logo:hover { color: var(--gold); background: var(--card); }
.trust-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 6rem 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.cta-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--light);
  line-height: 1.6;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}
.cta-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.2rem;
}
.cta-actions {
  flex-shrink: 0;
  text-align: center;
}
.cta-actions p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050608;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(to left, rgba(201,168,76,0.03), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 1.2rem;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.services-full { padding: 5rem 0; }
.service-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-block-meta { position: sticky; top: 100px; }
.service-block-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-block-meta h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}
.service-block-meta .tag-chip {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.5rem;
  margin-right: 0.3rem;
}
.service-block-body p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
  line-height: 1.8;
}
.service-deliverables {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
}
.service-deliverables h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.service-deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-deliverables li {
  font-size: 0.88rem;
  color: var(--light);
  padding-left: 1.2rem;
  position: relative;
}
.service-deliverables li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--gold);
  top: 0.3rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  padding: 6rem 0;
}
.about-portrait {
  position: sticky;
  top: 100px;
}
.portrait-frame {
  aspect-ratio: 3/4;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.portrait-frame::after {
  content: 'SR';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: var(--border2);
}
.portrait-caption {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  margin-top: -1px;
}
.portrait-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.portrait-caption span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p {
  color: var(--muted);
  margin-bottom: 1.3rem;
  font-size: 0.97rem;
  line-height: 1.8;
}
.credentials {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.credential-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  align-items: flex-start;
}
.credential-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.credential-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.credential-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================
   INDUSTRIES PAGE
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.industry-card {
  background: var(--card);
  padding: 2.5rem;
  transition: background var(--trans);
  position: relative;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.industry-card:hover { background: #1a2030; }
.industry-card:hover::before { transform: scaleX(1); }
.industry-icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.industry-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 5rem 0;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.detail-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.detail-text span {
  font-size: 0.9rem;
  color: var(--light);
}
.detail-text a {
  font-size: 0.9rem;
  color: var(--light);
  transition: color var(--trans);
}
.detail-text a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color var(--trans);
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--deep); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stat { border-bottom: 1px solid var(--gold-dim); }
  .impact-stat:nth-child(2n) { border-right: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .statement-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block-meta { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { flex-wrap: wrap; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
}

/* ---- DROPDOWN ---- */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--card);
  min-width: 260px;
  box-shadow: 0px 12px 40px rgba(0,0,0,0.8);
  z-index: 1001;
  border: 1px solid var(--border);
  top: 100%;
  left: 0;
  margin-top: 0;
  animation: dropdownFade 0.2s ease;
}
.dropdown-content a {
  color: var(--muted) !important;
  padding: 1.1rem 1.4rem !important;
  text-decoration: none;
  display: block;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), color var(--trans) !important;
  width: 100%;
  height: auto !important;
}
.dropdown-content a::after { display: none !important; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background-color: var(--surface);
  color: var(--white) !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.7;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
