/* ============================================
   Aegis Equity Corp. — Trade Operations Support
   Brand: deep navy + metallic gold, glossy premium
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #0a1830;
  --bg-section-dark: #0c1c3a;
  --bg-section-light: #f6f4ec;
  --bg-card: #13294f;
  --gold: #e3bd57;
  --gold-hover: #f2d477;
  --gold-dark: #a9822f;
  --gold-light: #f6e7bd;
  --text-light: #eaf1fc;
  --text-muted: #a3b2d0;
  --text-dark: #12203a;
  --text-dark-muted: #4a5878;
  --border-dark: #22386a;
  --border-light: #e2ddce;
  --radius: 6px;
  --font: 'Georgia', 'Times New Roman', serif;
  --font-ui: -apple-system, 'Segoe UI', Roboto, sans-serif;
  --gold-grad: linear-gradient(135deg, #f4da80 0%, #e3bd57 45%, #b8912f 100%);
  --navy-grad: linear-gradient(165deg, #0e2246 0%, #0a1830 55%, #071122 100%);
  --shadow-card: 0 14px 38px rgba(3, 10, 24, 0.45);
  --shadow-gold: 0 8px 22px rgba(227, 189, 87, 0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-light);
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(227, 189, 87, 0.10), transparent 60%),
    var(--navy-grad);
  background-attachment: fixed;
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; }

p, li, label { font-family: var(--font-ui); }
.eyebrow, .section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-heading {
  margin-bottom: 1rem;
  color: inherit;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* --- LAYOUT --- */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; position: relative; }

.section-dark {
  background: linear-gradient(180deg, rgba(19, 41, 79, 0.45), rgba(10, 24, 48, 0));
  border-top: 1px solid rgba(227, 189, 87, 0.12);
}

.section-light {
  background: var(--bg-section-light);
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
}

.section-light .section-eyebrow { color: var(--gold-dark); }
.section-light .section-sub { color: var(--text-dark-muted); }
.section-light h2, .section-light h3 { color: var(--text-dark); }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 18, 38, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227, 189, 87, 0.22);
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-light);
}

.nav-logo { height: 40px; width: auto; }

.nav-name {
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold-grad);
  color: #0a1830 !important;
  box-shadow: var(--shadow-gold);
}

/* --- HERO --- */
.hero {
  padding: 9rem 0 6rem;
  background:
    radial-gradient(720px 420px at 22% 30%, rgba(227, 189, 87, 0.14), transparent 55%),
    var(--navy-grad);
}

.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content { max-width: 720px; }

.hero-logo {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 0 2rem;
}

.hero h1 { color: var(--text-light); }

.hero-lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold {
  background: var(--gold-grad);
  color: #0a1830;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(227, 189, 87, 0.4);
}

.btn-ghost {
  color: var(--gold-light);
  border: 1px solid rgba(227, 189, 87, 0.45);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(227, 189, 87, 0.06);
}

.btn-full { width: 100%; }

/* --- FIT --- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.fit-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid;
}

.fit-good {
  border-color: var(--gold-dark);
  background: rgba(227, 189, 87, 0.06);
}

.fit-bad {
  border-color: #ccc;
  background: rgba(0,0,0,0.02);
}

.fit-card h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.fit-card p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.fit-card ul { list-style: none; padding: 0; }

.fit-card li {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.fit-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.section-light .fit-bad {
  background: #efece3;
  border-color: var(--border-light);
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-card {
  padding: 1.9rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(3, 10, 24, 0.55), 0 0 0 1px rgba(227, 189, 87, 0.25);
}

.service-num {
  font-family: var(--font);
  font-size: 2.1rem;
  display: block;
  margin-bottom: 0.5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 { font-family: var(--font); margin-bottom: 0.5rem; color: var(--gold-light); }

.service-card p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- PROCESS --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.process-step { text-align: center; }

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--gold-dark);
  background: radial-gradient(circle at 50% 35%, rgba(227, 189, 87, 0.18), rgba(227, 189, 87, 0.04));
}

.step-body h3 { font-family: var(--font); margin-bottom: 0.4rem; color: var(--text-dark); }

.step-body p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* --- HOW WE WORK (cards) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.price-card {
  padding: 2rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  text-align: center;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover { transform: translateY(-4px); }

.price-featured {
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(3, 10, 24, 0.55), 0 0 0 1px rgba(227, 189, 87, 0.35);
  transform: translateY(-4px);
}

.price-card h3 { font-family: var(--font); margin-bottom: 0.7rem; color: var(--gold-light); font-size: 1.2rem; }

.price {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.price span { font-size: 0.8rem; color: var(--text-muted); }

.price-desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.price-card ul { list-style: none; padding: 0; text-align: left; }

.price-card li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 0.35rem 0 0.35rem 1.3rem;
  position: relative;
  color: var(--text-muted);
}

.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* --- BOUNDARIES --- */
.boundaries { text-align: center; }
.boundaries h2 { margin-bottom: 0.8rem; color: var(--text-dark); }

.boundaries p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* --- CONTACT --- */
.contact .section-heading { margin-bottom: 0.8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

.contact-item a:hover { color: var(--gold-light); }

.contact-card {
  padding: 2rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.contact-card h3 { margin-bottom: 0.8rem; color: var(--gold-light); }

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.contact-actions { display: grid; gap: 0.8rem; }
.contact-actions .btn { text-align: center; }

/* --- FOOTER --- */
.footer {
  background: linear-gradient(180deg, rgba(8, 18, 38, 0), rgba(6, 14, 30, 0.6));
  border-top: 1px solid rgba(227, 189, 87, 0.22);
  padding: 3rem 0;
  text-align: center;
}

.footer-name {
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem !important;
}

.footer p {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.footer-fine {
  font-size: 0.72rem !important;
  margin-top: 0.8rem;
  opacity: 0.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 7rem 0 3.5rem; }
  .hero-logo { max-width: 300px; }
  .fit-grid,
  .services-grid,
  .pricing-grid,
  .contact-grid,
  .process-steps { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .process-step { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .step-marker { margin: 0; flex-shrink: 0; }
}
