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

:root {
  --gold: #B8965A;
  --gold-light: #D4AF7A;
  --gold-pale: #F5EDD8;
  --navy: #0D1B2A;
  --navy-mid: #162236;
  --navy-light: #1E3045;
  --off-white: #F8F5EF;
  --cream: #EDE8DC;
  --stone: #C8BFA8;
  --text-muted: #8A8070;
  --border: rgba(184,150,90,0.25);
  --border-light: rgba(184,150,90,0.12);
  --nav-bg: rgba(13,27,42,0.92);
}

[data-theme="light"] {
  --navy: #F8F5EF;
  --navy-mid: #EAE6D9;
  --navy-light: #DCD6C4;
  --off-white: #0D1B2A;
  --cream: #162236;
  --stone: #2A3B4E;
  --text-muted: #667080;
  --border: rgba(13,27,42,0.15);
  --border-light: rgba(13,27,42,0.08);
  --nav-bg: rgba(248,245,239,0.92);
}

html, body {
  overflow-x: hidden;
  width: 100%;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.7;
  transition: background 0.5s ease, color 0.5s ease;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.5s, border-color 0.5s;
}
.nav-logo, .footer-logo {
  display: inline-block;
  width: 140px;
  height: 40px;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 40%, var(--off-white) 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-mask-image: url('../img/solvectis-logo.svg');
  mask-image: url('../img/solvectis-logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: logoShimmer 6s linear infinite;
  text-decoration: none;
}
@keyframes logoShimmer {
  to { background-position: -200% center; }
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  border: 1px solid var(--border);
  padding: 10px 24px;
  transition: all 0.5s ease;
  background: linear-gradient(120deg, transparent 0%, rgba(184,150,90,0.1) 50%, transparent 100%);
  background-size: 200% auto;
}
.nav-cta:hover { background-position: 100% center; border-color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 24px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,90,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, var(--border-light) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  transition: background 0.5s ease;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, black 20%, transparent 100%);
}
.hero-grid-lines::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(0deg, transparent 40%, black 50%, transparent 60%);
  -webkit-mask-image: linear-gradient(0deg, transparent 40%, black 50%, transparent 60%);
  mask-size: 100% 200%;
  -webkit-mask-size: 100% 200%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  animation: glowWave 8s linear infinite;
}
@keyframes glowWave {
  0% { 
    -webkit-mask-position: 0% -100%; 
    mask-position: 0% -100%;
  }
  100% { 
    -webkit-mask-position: 0% 200%; 
    mask-position: 0% 200%;
  }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--off-white);
  margin-bottom: 40px;
  letter-spacing: -1px;
}
h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 16px;
  color: var(--stone);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #0D1B2A;
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  transition: all 0.5s ease;
  display: inline-block;
}
.btn-primary:hover { background-position: 100% center; box-shadow: 0 4px 15px rgba(184,150,90,0.2); }
.btn-ghost {
  color: var(--off-white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after {
  content: '→';
  font-size: 14px;
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  gap: 64px;
  z-index: 2;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 60px;
}

/* MARQUEE STRIP */
.marquee-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-inner {
  display: inline-flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}
.marquee-inner span { color: var(--gold); margin-right: 80px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTION BASE */
section { padding: 120px 60px; }
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
h2 em { font-style: italic; color: var(--gold-light); }

/* ABOUT */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-text p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-visual {
  position: relative;
}
.about-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 40px; width: 60px; height: 3px;
  background: var(--gold);
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 32px;
}
.about-quote-attr {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  margin-top: 40px;
  border: 1px solid var(--border-light);
}
.about-num-item {
  background: var(--navy);
  padding: 28px 24px;
  text-align: center;
}
.about-num-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-num-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SECTORS */
.sectors { background: var(--navy-mid); }
.sectors-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.sectors-desc {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.9;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.sector-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s;
}
.sector-card:last-child { border-right: none; }
.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.sector-card:hover { background: rgba(184,150,90,0.04); }
.sector-card:hover::after { transform: scaleX(1); }
.sector-icon {
  width: 48px; height: 48px;
  margin-bottom: 32px;
  opacity: 0.6;
}
.sector-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.sector-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.sector-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* APPROACH */
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}
.approach-step:first-child { padding-top: 0; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color 0.3s;
}
.approach-step:hover .step-num { color: var(--gold); }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 12px;
}
.step-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.approach-visual {
  position: sticky;
  top: 100px;
}
.approach-feature-box {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  padding: 60px 48px;
}
.approach-feature-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 24px;
  font-style: italic;
}
.approach-feature-box p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 40px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-tag {
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}

/* WHY US */
.why { background: var(--navy-mid); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-top: 80px;
}
.why-item {
  background: var(--navy-mid);
  padding: 56px 40px;
  transition: background 0.3s;
}
.why-item:hover { background: var(--navy-light); }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 16px;
}
.why-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* TESTIMONIAL */
.testimonial-section { text-align: center; padding: 120px 200px; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 40px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -40px; left: -60px;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}
.testimonial-attr {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s;
}
.t-dot.active { background: var(--gold); }

/* CONTACT */
.contact { background: var(--navy-mid); color: var(--off-white); transition: background 0.5s ease, color 0.5s ease; }
.contact h2 { color: var(--off-white); }
.contact .section-label { color: var(--gold); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-detail-val {
  font-size: 14px;
  color: var(--off-white);
  font-weight: 400;
  display: flex;
  flex-direction: column;
}
.contact-detail-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-detail-val a:hover {
  color: var(--gold);
}
.phone-icon,
.whatsapp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.phone-icon {
  stroke: var(--gold);
  fill: none;
}
.whatsapp-icon {
  fill: var(--gold);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--border-light);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.3s, background 0.3s, color 0.5s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(184,150,90,0.02);
}
.form-group option {
  background: var(--navy);
  color: var(--off-white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 18px 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.5s ease;
}
.form-submit:hover { 
  background: var(--navy-light); 
  border-color: var(--gold); 
  box-shadow: 0 4px 15px rgba(184,150,90,0.1); 
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 80px 60px 20px;
  border-top: 1px solid var(--border-light);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: inline-block;
  width: 140px;
  height: 40px;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 40%, var(--off-white) 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-mask-image: url('../img/solvectis-logo.svg');
  mask-image: url('../img/solvectis-logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: logoShimmer 6s linear infinite;
  text-decoration: none;
  margin-bottom: 24px;
}
.footer-brand-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 360px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--gold);
  background: rgba(184, 150, 90, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.2);
}
.footer-social a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(184, 150, 90, 0.2);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-col-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--off-white);
  font-weight: 500;
  margin-bottom: 32px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 32px 0 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.footer-legal { 
  font-size: 13px; 
  color: var(--text-muted); 
  font-weight: 300; 
  margin-bottom: 0;
}
.footer-legal-links { 
  display: flex; 
  gap: 24px; 
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-legal-links a:hover { color: var(--gold); }

/* THEME TOGGLE & SCROLL TOP */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-toggle:hover { transform: rotate(45deg); }
.theme-toggle svg { width: 18px; height: 18px; transition: stroke 0.3s; }
.theme-toggle:hover svg { stroke: var(--gold-light); }

#scrollTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: var(--nav-bg);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  backdrop-filter: blur(10px);
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 10px 20px rgba(184,150,90,0.15); }
#scrollTop svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.5; }
@media (max-width: 768px) { #scrollTop { bottom: 20px; right: 20px; width: 40px; height: 40px; } }

/* ICONS & ORB ANIMATIONS */
.sector-card:hover .sector-icon {
  transform: rotate(-10deg) scale(1.1);
}
.sector-icon { transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }

.approach-step:hover .step-num {
  transform: translateX(10px);
  color: var(--gold-light);
}
.step-num { transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }

.floating-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,150,90,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -50px) scale(1.1); }
}

/* ANIMATIONS */
.fade-up { visibility: hidden; }

/* SKELETON OVERLAY */
#skeleton-overlay { position: fixed; inset: 0; background: var(--navy); z-index: 9999; display: flex; flex-direction: column; transition: opacity 0.3s ease; }
.skel-shimmer { background: var(--border-light); position: relative; overflow: hidden; border-radius: 2px; }
.skel-shimmer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--border), transparent); animation: skelShimmer 1.2s infinite; transform: translateX(-100%); }
@keyframes skelShimmer { 100% { transform: translateX(100%); } }
.skel-nav { height: 72px; padding: 0 60px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #1a1a1a; }
.skel-logo { width: 140px; height: 24px; }
.skel-nav-links { display: flex; gap: 40px; align-items: center; }
.skel-link { width: 60px; height: 12px; }
.skel-btn { width: 140px; height: 36px; }
.skel-hero { padding: 120px 60px 80px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.skel-eyebrow { width: 200px; height: 12px; margin-bottom: 32px; }
.skel-h1 { width: 80%; height: 64px; margin-bottom: 12px; }
.skel-h1-short { width: 60%; margin-bottom: 40px; }
.skel-desc { width: 500px; height: 16px; margin-bottom: 12px; }
.skel-desc-short { width: 400px; margin-bottom: 56px; }
.skel-actions { display: flex; gap: 32px; margin-bottom: 80px; }
.skel-btn-primary { width: 200px; height: 48px; }
.skel-btn-ghost { width: 120px; height: 20px; }
.skel-stats { display: flex; gap: 64px; margin-top: auto; align-self: flex-end; }
.skel-stat { width: 100px; height: 60px; }

/* LEGAL PAGES */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  min-height: 60vh;
}
.legal-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  margin-bottom: 40px;
  color: var(--off-white);
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin: 60px 0 24px;
  color: var(--gold);
}
.legal-content p {
  margin-bottom: 24px;
  color: var(--stone);
  font-size: 16px;
}
.legal-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.legal-content a:hover {
  border-color: var(--gold);
}
.last-updated {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.toast {
  position: fixed; top: 32px; right: 32px;
  background: var(--navy-mid); border: 1px solid var(--border);
  color: var(--off-white); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; font-weight: 300; z-index: 2000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transform: translateX(20px);
}
.toast.show { opacity: 1; pointer-events: all; transform: translateX(0); }
.toast svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.toast-close {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; padding: 4px; display: flex; align-items: center;
  transition: color 0.3s; margin-left: 8px;
}
.toast-close:hover { color: var(--gold); }
@media (max-width: 768px) {
  .toast { top: 16px; right: 16px; left: 16px; width: auto; transform: translateY(-20px); }
  .toast.show { transform: translateY(0); }
}

/* MOBILE RESPONSIVENESS */
.menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; }
.menu-btn span { width: 25px; height: 1px; background: var(--gold); transition: 0.3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .hero { flex-direction: column; align-items: flex-start; justify-content: center; }
  h1 { font-size: clamp(40px, 6vw, 60px); }
  .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 40px; gap: 32px; justify-content: flex-start; flex-wrap: wrap; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sector-card:nth-child(even) { border-left: 1px solid var(--border); }
  .testimonial-section { padding: 100px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 30px; transition: right 0.4s ease; z-index: 99; }
  .nav-links a { font-size: 16px; letter-spacing: 4px; }
  .nav-links.active { right: 0; }
  .hide-mobile { display: none; }
  .nav-actions { gap: 16px; }
  .nav-cta { padding: 8px 12px; font-size: 10px; }
  .menu-btn { display: flex; }
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-inner, .approach-inner, .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .sectors-intro { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card:nth-child(even) { border-left: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .approach-visual { position: relative; top: 0; }
  .feature-tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-tag { padding: 12px 8px; text-align: center; font-size: 9px; letter-spacing: 1px; width: 100%; box-sizing: border-box; }
  .skel-nav { padding: 0 24px; }
  .skel-nav-links { display: none; }
  .skel-hero { padding: 120px 24px 60px; }
  .skel-h1, .skel-h1-short, .skel-desc, .skel-desc-short { width: 100%; }
  .skel-stats { align-self: flex-start; gap: 32px; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 16px; letter-spacing: 2px; }
  .nav-actions { gap: 12px; }
  .nav-cta { padding: 6px 10px; font-size: 9px; }
  .theme-toggle { padding: 4px; }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 12px; font-size: 13px; }
}
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

/* SUBPAGE STYLES */
.subpage-hero {
  padding: 200px 60px 100px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(184,150,90,0.05) 0%, transparent 70%);
}
.subpage-hero h1 { font-size: clamp(48px, 8vw, 84px); margin-bottom: 24px; }
.subpage-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 18px; font-weight: 300; }

.sector-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.sector-detail:nth-child(even) { direction: rtl; }
.sector-detail:nth-child(even) .detail-content { direction: ltr; }
.detail-icon { width: 64px; height: 64px; margin-bottom: 32px; }
.detail-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.detail-content h2 { font-size: 48px; margin-bottom: 24px; }
.detail-content p { font-size: 18px; font-weight: 300; color: var(--text-muted); margin-bottom: 40px; }
.thesis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.thesis-item { padding: 24px; background: var(--navy-mid); border: 1px solid var(--border-light); }
.thesis-item h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; }
.thesis-item p { font-size: 14px; margin-bottom: 0; }
.detail-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--navy-mid); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.detail-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(184,150,90,0.1) 0%, transparent 70%);
  animation: pulseGlow 10s infinite alternate;
}
@keyframes pulseGlow { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* LEGAL PAGE STYLES */
.legal-content { max-width: 800px; margin: 0 auto; padding-bottom: 120px; }
.legal-content h2 { font-size: 32px; margin-top: 60px; margin-bottom: 24px; color: var(--gold); }
.legal-content p { margin-bottom: 24px; color: var(--stone); line-height: 1.8; }
.legal-content ul { margin-bottom: 24px; padding-left: 20px; list-style: disc; color: var(--stone); }
.legal-content li { margin-bottom: 12px; }

/* SHIMMER EFFECT */
.shimmer-text {
  background: linear-gradient(
    90deg,
    rgba(184, 150, 90, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(184, 150, 90, 1) 100%
  );
  background-size: 200% auto;
  color: var(--gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  display: inline-block;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* CONTACT CTA BOX */
.contact-cta-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.contact-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 24px;
}
.contact-cta-box p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-cta-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.contact-cta-footer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
}
