/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: #020610;
  color: #E2E8F0;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #34D399;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #F8FAFC;
  margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #34D399;
  color: #020610;
  padding: 14px 28px;
}
.btn-primary:hover { background: #6EE7B7; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #E2E8F0;
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 13px 27px;
}
.btn-ghost:hover { border-color: #34D399; color: #34D399; }
.btn-outline {
  background: transparent;
  color: #F8FAFC;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
}
.btn-outline:hover { border-color: #34D399; color: #34D399; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-ghost-sm {
  background: transparent;
  color: #94A3B8;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost-sm:hover { color: #34D399; border-color: #34D399; }

/* ── Navigation ───────────────────────────────────── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 6, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F8FAFC;
}
.nav-logo { flex-shrink: 0; }
.nav-brand-text { letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #94A3B8;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #34D399;
  transition: width 0.25s ease;
}
.nav-link:hover { color: #F8FAFC; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #34D399;
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: rgba(52, 211, 153, 0.1); border-color: #34D399; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #E2E8F0;
}
.nav-toggle-close { display: none; }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(2, 6, 16, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #94A3B8;
  padding: 12px 24px;
  border-radius: 8px;
  transition: color 0.2s ease;
}
.mobile-link:hover { color: #F8FAFC; }
.mobile-cta {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #34D399;
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s ease;
}
.mobile-cta:hover { background: rgba(52, 211, 153, 0.1); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  background: #020610;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #34D399;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: #34D399;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #F8FAFC;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: #34D399;
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat { flex: 1; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.hero-visual { position: relative; z-index: 2; }
.hero-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.hero-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #34D399;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.15;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #34D399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
}
.hero-divider-line {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: #040B18;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,0.2), transparent);
}
.services-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(52,211,153,0.25);
  background: rgba(52,211,153,0.03);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34D399;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94A3B8;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: #020610;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #020610;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-content { position: relative; z-index: 2; }
.about-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #94A3B8;
  margin-bottom: 16px;
}
.about-text em { color: #E2E8F0; font-style: italic; }
.about-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: #E2E8F0;
  line-height: 1.5;
}
.about-highlights svg { flex-shrink: 0; margin-top: 2px; }

/* ── Approach ─────────────────────────────────────── */
.approach {
  padding: 100px 0;
  background: #040B18;
  position: relative;
}
.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,153,0.2), transparent);
}
.approach-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-step {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.approach-step:hover {
  border-color: rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.03);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(52, 211, 153, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #94A3B8;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A1628 0%, #0D1F3C 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 1.0625rem;
  color: #94A3B8;
  line-height: 1.6;
}
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: #020610;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #94A3B8;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { }
.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34D399;
  margin-bottom: 6px;
}
.contact-label svg { flex-shrink: 0; }
.contact-item dd {
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.6;
}
.contact-item dd a {
  color: #E2E8F0;
  transition: color 0.2s ease;
}
.contact-item dd a:hover { color: #34D399; }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #F8FAFC;
  transition: all 0.2s ease;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #475569; }
.form-input:focus, .form-textarea:focus {
  border-color: #34D399;
  background: rgba(52,211,153,0.04);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.form-success.visible { display: block; }
.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #F8FAFC;
  margin: 16px 0 8px;
}
.form-success-text {
  font-size: 0.9375rem;
  color: #94A3B8;
  margin-bottom: 24px;
}

/* ── Map ──────────────────────────────────────────── */
.map-section { background: #040B18; }
.map-container {
  filter: grayscale(0.6) brightness(0.8) contrast(1.1);
  opacity: 0.85;
  transition: all 0.4s ease;
}
.map-container:hover {
  filter: grayscale(0.3) brightness(0.9) contrast(1.05);
  opacity: 1;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 64px 0 0;
  background: #020610;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34D399;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9375rem;
  color: #94A3B8;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #F8FAFC; }
.footer-address {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 12px;
}
.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}
.footer-contact a { color: #E2E8F0; transition: color 0.2s ease; }
.footer-contact a:hover { color: #34D399; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: #475569;
}

/* ── Scroll Reveal (progressive enhancement) ──────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-toggle-open.active { display: block; }
  .nav-toggle-close.active { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-width: 400px; margin: 0 auto; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-header { margin-bottom: 40px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-secondary { position: static; width: 70%; margin-top: -40px; margin-left: auto; }

  .approach-steps { grid-template-columns: 1fr; }
  .approach-header { margin-bottom: 40px; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.75rem; }
}
