@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep:      #060d1a;
  --bg-card:      #0c1628;
  --bg-surface:   #102038;
  --bg-hover:     #152844;
  --navy:         #0d1b3e;
  --blue:         #1a6fd8;
  --blue-light:   #3d8ef0;
  --blue-dim:     #0f4f9e;
  --orange:       #f07820;
  --orange-dim:   #c45f10;
  --orange-glow:  0 0 30px rgba(240,120,32,0.25);
  --blue-glow:    0 0 30px rgba(26,111,216,0.25);
  --text-primary: #e8edf8;
  --text-secondary:#8a9ec0;
  --text-muted:   #4a5e80;
  --border:       rgba(255,255,255,0.07);
  --border-blue:  rgba(26,111,216,0.3);
  --border-orange:rgba(240,120,32,0.3);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ── LOGO SVG INLINE ── */
.logo-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,13,26,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-cta { display: flex; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.3rem; cursor: pointer; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all 0.2s; border: none;
}
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text-primary); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dim)); color: #fff; box-shadow: var(--orange-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 40px rgba(240,120,32,0.4); }
.btn-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dim)); color: #fff; box-shadow: var(--blue-glow); }
.btn-blue:hover { transform: translateY(-1px); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 1px solid var(--orange); }
.btn-outline-orange:hover { background: rgba(240,120,32,0.1); }
.btn-outline-blue { background: transparent; color: var(--blue-light); border: 1px solid var(--blue); }
.btn-outline-blue:hover { background: rgba(26,111,216,0.1); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }

/* ── CARDS ── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s; }
.card:hover { border-color: var(--border-blue); box-shadow: var(--blue-glow); transform: translateY(-3px); }

/* ── SECTIONS ── */
.section { padding: 90px 5%; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--orange); opacity: 0.5; }

h1, h2, h3 { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.3rem; font-weight: 600; }

.text-orange { color: var(--orange); }
.text-blue { color: var(--blue-light); }
.text-muted { color: var(--text-secondary); }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-orange { background: rgba(240,120,32,0.15); color: var(--orange); border: 1px solid rgba(240,120,32,0.3); }
.badge-blue { background: rgba(26,111,216,0.15); color: var(--blue-light); border: 1px solid rgba(26,111,216,0.3); }
.badge-green { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.badge-gray { background: rgba(100,116,139,0.2); color: #94a3b8; border: 1px solid rgba(100,116,139,0.3); }

/* ── FORM INPUTS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-primary);
  outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,111,216,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--bg-card); }

/* ── AVATAR ── */
.avatar {
  border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; flex-shrink: 0;
}

/* ── PROGRESS ── */
.progress-bar { width: 100%; height: 6px; background: var(--bg-surface); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 3px; transition: width 0.4s; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 0.8rem; margin: 20px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── FOOTER ── */
footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.tagline { font-size: 0.75rem; color: var(--orange); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
