:root {
  --navy-950: #070f1c;
  --navy-900: #0a1628;
  --navy-800: #0f1f38;
  --navy-700: #162a4a;
  --navy-600: #1f3a63;
  --gold-400: #d4af37;
  --gold-300: #e8c96a;
  --gold-500: #b8962e;
  --cream: #f6f4ef;
  --white: #ffffff;
  --gray-100: #f4f5f7;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --success: #10b981;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 14px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.08), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(31,58,99,0.6), transparent 45%);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header h2,
.about-text h2,
.cta-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-header h2 em,
.about-text h2 em,
.cta-text h2 em {
  color: var(--gold-400);
  font-style: normal;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 18px 0;
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.site-header.scrolled .logo-text,
.site-header.scrolled .nav-menu a {
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-radius: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

.logo-text strong {
  color: var(--gold-300);
  font-weight: 700;
}

.main-nav {
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-400);
  color: var(--navy-900) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(212,175,55,0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-300);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.12), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(31,58,99,0.8), transparent 40%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-text h1 em {
  color: var(--gold-400);
  font-style: normal;
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(212,175,55,0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

.btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-large {
  padding: 18px 34px;
  font-size: 1.05rem;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* Globe visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), inset 0 0 60px rgba(212,175,55,0.08);
  display: grid;
  place-items: center;
}

.globe-core {
  width: 120px;
  height: 120px;
  color: var(--gold-400);
  z-index: 2;
}

.globe-core svg {
  width: 100%;
  height: 100%;
}

.globe-ring {
  position: absolute;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  animation: rotate 12s linear infinite;
}

.ring-1 {
  width: 180px;
  height: 180px;
  animation-duration: 14s;
}

.ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(255,255,255,0.12);
  animation-duration: 20s;
  animation-direction: reverse;
}

.ring-3 {
  width: 340px;
  height: 340px;
  border-color: rgba(212,175,55,0.15);
  animation-duration: 26s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Trust bar */
.trust-bar {
  background: var(--navy-800);
  color: var(--white);
  padding: 22px 0;
  text-align: center;
}

.trust-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212,175,55,0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
  background-color: rgba(212,175,55,0.15);
  border-radius: 50%;
}

.about-cards {
  display: grid;
  gap: 22px;
}

.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
  transition: transform var(--transition), background var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.about-card strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.about-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-300), var(--gold-400), var(--gray-300));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  padding: 0 20px;
}

.step-number {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.step p {
  color: var(--gray-500);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* CTA / Contact */
.cta-section {
  padding-bottom: 64px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(31,58,99,0.35));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 48px;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.contact-card strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.contact-card a,
.contact-card span {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold-300);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gold-400);
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.footer-bottom .disclaimer {
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 900px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .services-grid,
  .process-steps,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    text-align: center;
  }

  .cta-actions {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    transition: right 0.3s ease;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .services-grid,
  .process-steps,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    width: 280px;
    height: 280px;
  }

  .globe-core {
    width: 90px;
    height: 90px;
  }

  .ring-1 { width: 140px; height: 140px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 260px; height: 260px; }

  .hero-stats {
    gap: 28px;
  }

  .cta-box {
    padding: 40px 28px;
  }

  .btn-large {
    width: 100%;
  }
}
