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

:root {
  --navy: #042C53;
  --navy-mid: #0C447C;
  --blue: #185FA5;
  --blue-light: #378ADD;
  --blue-pale: #E6F1FB;
  --blue-muted: #85B7EB;
  --white: #ffffff;
  --off-white: #F7F8FA;
  --text: #1A1E2A;
  --text-muted: #5A6070;
  --border: #DDE2EA;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }

/* NAV */
.ce-nav { position: sticky; top: 0; z-index: 100; background: rgba(4,44,83,0.97); backdrop-filter: blur(12px); padding: 0 48px; height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ce-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ce-nav-logo-icon { width: 32px; height: 32px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ce-nav-logo-icon svg { width: 17px; height: 17px; fill: white; }
.ce-nav-logo-text { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: white; }
.ce-nav-links { display: flex; gap: 32px; align-items: center; list-style: none; margin: 0; padding: 0; }
.ce-nav-links a { font-size: 13px; color: var(--blue-muted); text-decoration: none; transition: color 0.2s; }
.ce-nav-links a:hover { color: white; }
.btn-nav { background: var(--blue-light) !important; color: white !important; font-size: 13px; font-weight: 500; padding: 9px 20px; border-radius: var(--radius); text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-nav:hover { background: var(--blue) !important; transform: translateY(-1px); }

/* HERO */
.ce-hero { background: linear-gradient(135deg, rgba(2,29,56,0.82) 0%, rgba(4,44,83,0.78) 50%, rgba(10,61,107,0.82) 100%); min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.ce-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(55,138,221,0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(24,95,165,0.1) 0%, transparent 60%); }
.ce-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.ce-hero-badge { display: inline-flex; align-items: center; gap: 14px; background: transparent; border: none; color: rgba(133,183,235,0.75); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0; margin-bottom: 32px; }
.ce-hero-badge::before { display: none; }
.ce-badge-line { display: inline-block; width: 32px; height: 1px; background: rgba(55,138,221,0.45); flex-shrink: 0; }
.ce-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 54px); font-weight: 500; color: white; line-height: 1.18; margin-bottom: 20px; }
.ce-hero h1 em { font-style: italic; color: var(--blue-muted); }
.ce-hero-sub { font-size: 16px; color: rgba(133,183,235,0.8); max-width: 500px; margin: 0 auto 40px; line-height: 1.75; font-weight: 300; }
.ce-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: var(--blue-light); color: white; font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 14px 28px; border-radius: var(--radius); border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(55,138,221,0.3); color: white; }
.btn-ghost { background: transparent; color: var(--blue-muted); font-family: var(--font-body); font-size: 14px; padding: 14px 28px; border-radius: var(--radius); border: 1px solid rgba(55,138,221,0.35); cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s, transform 0.15s; }
.btn-ghost:hover { background: rgba(55,138,221,0.1); color: white; transform: translateY(-2px); }

/* OUTCOMES STRIP */
.ce-outcomes-strip { background: var(--blue-pale); border-bottom: 1px solid #C8DCF4; padding: 20px 48px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.ce-outcome-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--navy-mid); }
.ce-outcome-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.ce-outcome-sep { display: none; }

/* SECTIONS */
.ce-section { padding: 80px 24px; }
.ce-section-inner { max-width: 1080px; margin: 0 auto; }
.ce-section-header { text-align: center; margin-bottom: 48px; }
.ce-section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.ce-section-header h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 500; color: var(--text); line-height: 1.25; max-width: 560px; margin: 0 auto; }

/* SERVICES */
.ce-services { background: var(--white); }
.ce-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.ce-service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.ce-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-light), var(--blue)); opacity: 0; transition: opacity 0.2s; }
.ce-service-card:hover { border-color: #B5D4F4; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(24,95,165,0.08); }
.ce-service-card:hover::before { opacity: 1; }
.ce-service-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ce-service-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; }
.ce-service-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.ce-service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* METHODOLOGY */
.ce-methodology { background: var(--navy); }
.ce-methodology .ce-section-label { color: var(--blue-muted); }
.ce-methodology .ce-section-header h2 { color: white; }
.ce-steps-row { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.ce-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 120px; max-width: 160px; padding: 0 8px; }
.ce-step-circle { width: 60px; height: 60px; border-radius: 50%; background: rgba(55,138,221,0.15); border: 1px solid rgba(55,138,221,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ce-step-circle svg { width: 22px; height: 22px; stroke: var(--blue-light); fill: none; }
.ce-step:last-child .ce-step-circle { background: rgba(15,110,86,0.2); border-color: rgba(15,110,86,0.4); }
.ce-step:last-child .ce-step-circle svg { stroke: #5DCAA5; }
.ce-step-num { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--blue-light); margin-bottom: 4px; }
.ce-step h3 { font-size: 14px; font-weight: 500; color: white; margin-bottom: 6px; }
.ce-step p { font-size: 12px; color: rgba(133,183,235,0.7); line-height: 1.5; font-weight: 300; }
.ce-step-arrow { font-size: 20px; color: rgba(55,138,221,0.3); padding-top: 20px; flex-shrink: 0; }

/* DIFFERENTIATORS */
.ce-differentiators { background: linear-gradient(135deg, rgba(247,248,250,0.93) 0%, rgba(230,241,251,0.92) 100%); }
.ce-diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.ce-diff-card { background: white; border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--border); border-top: 3px solid var(--blue-light); }
.ce-diff-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.ce-diff-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* OUTCOMES */
.ce-outcomes-section { background: white; }
.ce-outcomes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ce-outcome-card { background: var(--blue-pale); border-radius: var(--radius); padding: 20px; display: flex; align-items: flex-start; gap: 12px; }
.ce-outcome-check { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ce-outcome-check svg { width: 12px; height: 12px; stroke: white; fill: none; }
.ce-outcome-card p { font-size: 13px; color: var(--navy-mid); line-height: 1.55; }

/* CTA */
.ce-cta { background: linear-gradient(135deg, rgba(2,29,56,0.84) 0%, rgba(4,44,83,0.80) 60%, rgba(10,61,107,0.84) 100%); padding: 96px 24px; text-align: center; position: relative; overflow: hidden; }
.ce-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(55,138,221,0.1) 0%, transparent 70%); }
.ce-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.ce-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 500; color: white; line-height: 1.2; margin-bottom: 16px; }
.ce-cta p { font-size: 15px; color: rgba(133,183,235,0.8); max-width: 460px; margin: 0 auto 36px; line-height: 1.75; font-weight: 300; }

/* FOOTER */
.ce-footer { background: #021222; padding: 28px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ce-footer p { font-size: 12px; color: rgba(133,183,235,0.5); margin: 0; }
.ce-footer-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.ce-footer-links a { font-size: 12px; color: rgba(133,183,235,0.5); text-decoration: none; transition: color 0.2s; }
.ce-footer-links a:hover { color: var(--blue-muted); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.ce-hero-inner > * { animation: fadeUp 0.7s ease both; }
.ce-hero-badge { animation-delay: 0.1s; }
.ce-hero h1 { animation-delay: 0.2s; }
.ce-hero-sub { animation-delay: 0.3s; }
.ce-hero-ctas { animation-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .ce-nav { padding: 0 20px; }
  .ce-nav-links { display: none; }
  .ce-outcomes-strip { padding: 16px 20px; }
  .ce-section { padding: 56px 20px; }
  .ce-footer { padding: 24px 20px; flex-direction: column; text-align: center; }
  .ce-step-arrow { display: none; }
  .ce-steps-row { gap: 24px; }
}
