/* =========================================
   Excellence Partners — Stylesheet
   ========================================= */

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a3360;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f8f6f1;
  --white: #ffffff;
  --gray-100: #f4f4f6;
  --gray-200: #e8e8ed;
  --gray-500: #8a8a9a;
  --gray-700: #3a3a4a;
  --text: #1a1a2e;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-w: 1140px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(15,31,61,0.10);
  --shadow-lg: 0 12px 48px rgba(15,31,61,0.15);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--gray-700); }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-full { width: 100%; text-align: center; }

/* ---- Section utilities ---- */
.section { padding: 5rem 0; }
.bg-light { background: var(--cream); }
.bg-dark { background: var(--navy); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,31,61,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 6px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e2d50 100%);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline { color: var(--white); margin-bottom: 1.25rem; }
.accent { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.hero-trust span { display: flex; align-items: center; gap: 0.25rem; }

/* =========================================
   ABOUT / TWO-COL
   ========================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.col-text h2 { margin-bottom: 1.25rem; }
.col-text p { margin-bottom: 1rem; }
.col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* =========================================
   CRITERIA
   ========================================= */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.criteria-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.criteria-icon { font-size: 2rem; margin-bottom: 1rem; }
.criteria-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.criteria-card p { font-size: 0.93rem; }

/* =========================================
   INDUSTRIES
   ========================================= */
.industry-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}
.industry-group h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--navy);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.industry-group ul { list-style: none; }
.industry-group li {
  padding: 0.4rem 0;
  color: var(--gray-700);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.industry-group li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
}
.industry-note {
  background: var(--gray-100);
  border-left: 3px solid var(--gray-500);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* =========================================
   PROCESS / STEPS
   ========================================= */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 72px;
  text-align: center;
  opacity: 0.85;
}
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { font-size: 0.97rem; }

/* =========================================
   BROKERS
   ========================================= */
.broker-col { gap: 4rem; }
.broker-points { list-style: none; margin-top: 1.25rem; }
.broker-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.broker-points li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.col-quote {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
}
.col-quote::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-attr { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }

/* =========================================
   CONTACT
   ========================================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { color: var(--white); margin-bottom: 1rem; }
.contact-text p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.contact-icon { font-size: 1.1rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--gray-500); text-align: center; margin-top: 0.75rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #080f1e;
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.footer .logo-text { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { color: rgba(255,255,255,0.3); font-size: 0.78rem; max-width: 640px; line-height: 1.6; }
.footer-legal p + p { margin-top: 0.4rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .two-col, .contact-inner, .broker-col { grid-template-columns: 1fr; gap: 3rem; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .industry-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .col-stats { margin-top: 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .criteria-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 1rem; }
  .step-num { font-size: 2rem; min-width: auto; }
  .hero { padding: 8rem 0 4rem; }
  .hero-actions { flex-direction: column; }
  .section { padding: 3.5rem 0; }
  .contact-form { padding: 1.75rem; }
}
