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

:root {
  --navy: #1A365D;
  --navy-light: #2A4A7F;
  --blue-accent: #A7C4E0;
  --gold-accent: #C9A84C;
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --dark: #0D0D0D;
  --gray: #6B6B6B;
  --gray-light: #E8E4DC;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--dark);
  border-bottom: 1px solid rgba(167, 196, 224, 0.2);
  text-align: center;
  padding: 8px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  white-space: nowrap;
}

.demo-banner span {
  color: #c8f000;
}

.nav {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 54, 93, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(167, 196, 224, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue-accent);
}

.nav-cta {
  background: transparent;
  color: var(--blue-accent) !important;
  border: 1px solid var(--blue-accent);
  padding: 10px 24px !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-accent) !important;
  color: var(--navy) !important;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0F1F3A 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(167, 196, 224, 0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 60px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--blue-accent);
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--navy);
  padding: 14px 36px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #C5DAF0;
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--blue-accent);
  border-color: var(--blue-accent);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  margin-bottom: 70px;
}

.section-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.services {
  background: var(--cream);
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
}

.service-card {
  background: var(--cream);
  padding: 48px 40px;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--white);
}

.service-icon {
  margin-bottom: 28px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
}

.about {
  background: var(--white);
  padding: 120px 0;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  gap: 40px;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

.info-card {
  background: var(--cream);
  border: 1px solid var(--gray-light);
  padding: 40px;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

.footer {
  background: var(--navy);
  padding: 48px 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.footer-legal {
  font-size: 11px !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 0 24px;
  }

  .section-inner {
    padding: 0 24px;
  }

  .about-grid {
    padding: 0 24px;
  }

  .services,
  .about {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer {
    padding: 40px 24px;
  }
}
