/* ══════════════════════════════════════════
   NEXOVIAN GLOBAL — Main Stylesheet
   Version 1.0 | 2025
══════════════════════════════════════════ */

:root {
  --navy:       #07111f;
  --navy2:      #0d1e33;
  --navy3:      #112240;
  --navy4:      #1d3461;
  --gold:       #c9a84c;
  --gold2:      #e8c97a;
  --gold3:      #f5e6c0;
  --gold-dark:  #a07030;
  --white:      #f8f6f1;
  --grey:       #8892a4;
  --grey2:      #5a6478;
  --text:       #d4d8e0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-head:    'Rajdhani', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w: 1200px;
  --r: 6px;

  --grad-gold: linear-gradient(135deg, #e8c97a 0%, #c9a84c 50%, #a07030 100%);
  --grad-navy: linear-gradient(135deg, #07111f, #112240);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: rgba(201,168,76,0.3); color: var(--white); }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }

/* ── SECTION COMMON ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { color: var(--gold2); font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.body-text { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 20px; }
.body-text strong { color: var(--white); font-weight: 600; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad-gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
  opacity: 0.92;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 44px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.3s, background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(7,17,31,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.1);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nl-main {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.nl-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--grey);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  padding: 9px 22px;
  background: var(--grad-gold);
  color: var(--navy) !important;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 48px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(74,158,255,0.05), transparent 70%);
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em {
  color: var(--gold2);
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}
.stat-l {
  font-size: 12px;
  color: var(--grey);
  margin-top: 4px;
  white-space: nowrap;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-ring {
  width: 100%;
  max-width: 480px;
  animation: float 6s ease-in-out infinite;
}
.hex-ring svg { width: 100%; height: auto; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--grey);
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 1; }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.03);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--grey);
  text-transform: uppercase;
}
.marquee-track .mx { color: var(--gold); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
  border-radius: 2px;
}
.founder-card {
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--r);
  padding: 36px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
}
.founder-img-wrap {
  position: relative;
  width: 90px; height: 90px;
  margin-bottom: 20px;
}
.founder-img-placeholder {
  width: 90px; height: 90px;
  background: var(--navy3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(201,168,76,0.3);
}
.founder-badge-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: spin 20s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.founder-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-title { font-size: 13px; color: var(--gold); margin-bottom: 4px; }
.founder-location { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.founder-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 20px; }
.founder-stats {
  display: flex;
  gap: 24px;
}
.founder-stats div {
  display: flex;
  flex-direction: column;
}
.founder-stats strong {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold2);
}
.founder-stats span { font-size: 11px; color: var(--grey); margin-top: 2px; }
.founder-quote {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.founder-quote p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--grey);
  line-height: 1.65;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--grey);
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.exp-tag:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services { position: relative; }
.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 50%, var(--navy) 100%);
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::after { opacity: 1; }
.service-card-cta {
  background: linear-gradient(135deg, var(--navy3), var(--navy4));
  border-color: rgba(201,168,76,0.2);
}
.sc-number {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(201,168,76,0.4);
  margin-bottom: 20px;
}
.sc-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-cta-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sc-list { margin-bottom: 28px; }
.sc-list li {
  font-size: 13px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sc-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}
.sc-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-price {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold2);
}
.sc-price em { font-style: normal; font-size: 12px; color: var(--grey); font-weight: 400; }
.sc-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}
.sc-link:hover { letter-spacing: 0.2em; }
.sc-cta-inner { display: flex; flex-direction: column; height: 100%; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
}
.why-icon { font-size: 28px; margin-bottom: 16px; }
.why-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process { position: relative; }
.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 50%, var(--navy) 100%);
}
.process .container { position: relative; z-index: 1; }
.process-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.process-step:last-child { margin-bottom: 0; }
.ps-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.25);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ps-content {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  padding: 28px 32px;
  flex: 1;
  transition: border-color 0.3s;
}
.ps-content:hover { border-color: rgba(201,168,76,0.2); }
.ps-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ps-content p { font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ══════════════════════════════════════════
   EXPERTISE
══════════════════════════════════════════ */
.expertise-section { background: var(--navy); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-group {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  padding: 28px;
}
.eg-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.eg-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.eg-items span {
  font-size: 12px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 5px 10px;
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.eg-items span:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { position: relative; }
.testi-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 50%, var(--navy) 100%);
}
.testimonials .container { position: relative; z-index: 1; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testi-card p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ta-avatar {
  width: 44px; height: 44px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}
.testi-author div { display: flex; flex-direction: column; }
.testi-author strong { font-size: 14px; color: var(--white); margin-bottom: 2px; }
.testi-author span { font-size: 12px; color: var(--grey); }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy3), var(--navy4));
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-left { max-width: 560px; }
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-left h2 em { color: var(--gold2); font-style: italic; }
.cta-left p { font-size: 16px; color: var(--grey); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.cta-note { font-size: 12px; color: var(--grey); text-align: right; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-details { margin: 40px 0; display: flex; flex-direction: column; gap: 20px; }
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cd-item div { display: flex; flex-direction: column; gap: 4px; }
.cd-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.cd-item a, .cd-item span {
  font-size: 15px;
  color: var(--white);
  transition: color 0.2s;
}
.cd-item a:hover { color: var(--gold); }
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #4caf82;
  border: 1px solid rgba(76,175,130,0.25);
  padding: 10px 18px;
  border-radius: 4px;
  background: rgba(76,175,130,0.05);
}
.avail-dot {
  width: 7px; height: 7px;
  background: #4caf82;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.contact-form {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 28px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}
.form-group select option { background: var(--navy2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--grey);
  margin-top: 16px;
}
.form-success {
  background: var(--navy2);
  border: 1px solid rgba(76,175,130,0.2);
  border-radius: var(--r);
  padding: 60px 44px;
  text-align: center;
}
.fs-icon {
  width: 64px; height: 64px;
  background: rgba(76,175,130,0.1);
  border: 2px solid rgba(76,175,130,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #4caf82;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--grey); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--navy2); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer-logo-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 3px;
}
.footer-desc { font-size: 14px; color: var(--grey); line-height: 1.8; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #4caf82;
  margin-top: 20px;
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey2);
  text-align: center;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 32px 80px;
    text-align: center;
  }
  .hero-badge { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-right { align-items: center; }
  .cta-note { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-links { display: none; gap: 20px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(7,17,31,0.97);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    align-items: center;
    z-index: 999;
  }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 110px 20px 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 16px; }
  .stat-div { display: none; }
  .founder-stats { gap: 16px; }
  .process-step { gap: 20px; }
  .ps-content { padding: 20px; }
}
