@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --mint: #99F6E4;
  --mint-light: #CCFBF1;
  --white: #FFFFFF;
  --slate: #0F172A;
  --slate-2: #1E293B;
  --grey: #64748B;
  --grey-light: #E2E8F0;
  --bg: #F8FAFC;
  --display: 'DM Serif Display', Georgia, serif;
  --body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Plus pattern decoration */
.plus-bg { position: relative; }
.plus-bg::before {
  content: ''; position: absolute; top: 30px; right: 30px; width: 60px; height: 60px;
  background: radial-gradient(circle, var(--mint) 2px, transparent 3px);
  background-size: 20px 20px; opacity: 0.5; pointer-events: none;
}

/* TOPBAR */
.topbar { background: var(--mint); color: var(--slate); font-size: 13px; padding: 10px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-tagline { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.topbar-tagline svg { width: 16px; height: 16px; color: var(--blue); }
.topbar-meta { display: flex; gap: 24px; font-weight: 500; }

/* NAV */
.nav { background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 18px 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 46px; height: 46px; background: var(--blue); position: relative; border-radius: 12px; }
.logo-mark::before, .logo-mark::after { content: ''; position: absolute; background: var(--white); }
.logo-mark::before { width: 4px; height: 22px; top: 12px; left: 21px; border-radius: 2px; }
.logo-mark::after { width: 22px; height: 4px; top: 21px; left: 12px; border-radius: 2px; }
.logo-text { font-family: var(--display); font-size: 22px; color: var(--slate); letter-spacing: -0.3px; }
.logo-text span { color: var(--blue); font-style: italic; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--slate); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 12px 24px; border-radius: 30px; font-size: 14px; }
.nav-cta:hover { background: var(--slate); }

/* HERO */
.hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #4338CA 100%); color: var(--white); padding: 100px 0 110px; position: relative; overflow: hidden; }
.hero::before {
  content: '+'; position: absolute; top: 60px; right: 8%; font-size: 200px; color: rgba(153,246,228,0.12); font-family: var(--display); pointer-events: none;
}
.hero::after {
  content: '+'; position: absolute; bottom: 50px; left: 5%; font-size: 140px; color: rgba(255,255,255,0.08); font-family: var(--display); pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.hero-eyebrow::before { content: '+'; color: var(--mint); font-family: var(--display); font-size: 22px; }
.hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 66px); line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 em { color: var(--mint); font-style: italic; }
.hero-lede { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; font-size: 15px; font-weight: 700; border-radius: 30px; transition: all 0.25s; cursor: pointer; border: 2px solid; }
.btn-primary { background: var(--mint); color: var(--slate); border-color: var(--mint); }
.btn-primary:hover { background: var(--mint-light); border-color: var(--mint-light); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--mint); color: var(--mint); }
.hero-points { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 24px; max-width: 540px; }
.hero-points li { color: rgba(255,255,255,0.85); font-size: 14.5px; padding-left: 26px; position: relative; }
.hero-points li::before { content: '+'; position: absolute; left: 0; color: var(--mint); font-weight: 700; font-size: 18px; line-height: 1; top: 1px; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(153,246,228,0.3); padding: 36px 32px; border-radius: 20px; backdrop-filter: blur(10px); }
.hero-card .quote { font-family: var(--display); font-size: 21px; color: var(--white); line-height: 1.4; margin-bottom: 22px; }
.hero-card .attr { font-size: 12px; color: var(--mint); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; }
.hero-card .attr strong { display: block; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 13px; margin-top: 4px; }

/* TRUST */
.trust { background: var(--bg); padding: 56px 0; }
.trust-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-item { background: var(--white); padding: 28px; border-radius: 16px; text-align: center; border: 1px solid var(--grey-light); position: relative; }
.trust-item::before { content: '+'; position: absolute; top: 8px; right: 14px; color: var(--mint); font-family: var(--display); font-size: 28px; }
.trust-item .num { font-family: var(--display); font-size: 36px; color: var(--blue); margin-bottom: 6px; }
.trust-item .lbl { font-size: 13.5px; color: var(--grey); font-weight: 500; }

/* SECTION */
section { padding: 90px 0; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.eyebrow { display: inline-block; color: var(--blue); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.eyebrow::before { content: '+ '; color: var(--mint); font-weight: 700; }
.section-head h2 { font-family: var(--display); font-size: clamp(34px,4vw,48px); color: var(--slate); margin-bottom: 18px; line-height: 1.1; letter-spacing: -0.5px; }
.section-head h2 em { color: var(--blue); font-style: italic; }
.section-head p { color: var(--grey); font-size: 17px; line-height: 1.6; }

/* SERVICES GRID */
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sector-card { background: var(--white); padding: 32px 28px; border-radius: 20px; border: 1px solid var(--grey-light); transition: all 0.25s; position: relative; overflow: hidden; }
.sector-card::after { content: '+'; position: absolute; top: 16px; right: 24px; color: var(--mint); font-family: var(--display); font-size: 32px; transition: color 0.25s; }
.sector-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,99,235,0.1); }
.sector-card:hover::after { color: var(--blue); }
.sector-card .icon { width: 48px; height: 48px; background: var(--mint-light); border-radius: 14px; display: grid; place-items: center; color: var(--blue); margin-bottom: 18px; }
.sector-card .icon svg { width: 24px; height: 24px; }
.sector-card h3 { font-family: var(--display); font-size: 22px; color: var(--slate); margin-bottom: 10px; line-height: 1.2; }
.sector-card p { color: var(--grey); font-size: 14.5px; }

/* WHY/PILLARS */
.why-bg { background: var(--slate); color: var(--white); position: relative; overflow: hidden; }
.why-bg::before { content: '+'; position: absolute; top: 60px; left: 5%; font-size: 180px; color: rgba(153,246,228,0.06); font-family: var(--display); pointer-events: none; }
.why-bg::after { content: '+'; position: absolute; bottom: 80px; right: 8%; font-size: 220px; color: rgba(37,99,235,0.08); font-family: var(--display); pointer-events: none; }
.why-bg .section-head h2 { color: var(--white); }
.why-bg .section-head h2 em { color: var(--mint); }
.why-bg .section-head p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; z-index: 1; }
.why-card { background: rgba(255,255,255,0.04); padding: 36px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); }
.icon-pill { width: 56px; height: 56px; background: var(--blue); border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; color: var(--mint); }
.icon-pill svg { width: 26px; height: 26px; }
.why-card h3 { font-family: var(--display); font-size: 23px; color: var(--mint); margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 14.5px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.process-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(153,246,228,0.2); padding: 36px 28px; border-radius: 20px; }
.step-num { display: inline-block; width: 44px; height: 44px; background: var(--mint); color: var(--slate); border-radius: 50%; text-align: center; line-height: 44px; font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.process-step h3 { font-family: var(--display); font-size: 21px; margin-bottom: 10px; color: var(--white); }
.process-step p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* PROSE */
.prose-section { background: var(--bg); }
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose-wrap h2 { font-family: var(--display); font-size: 36px; color: var(--slate); margin-bottom: 24px; line-height: 1.15; letter-spacing: -0.5px; }
.prose-wrap h2 em { color: var(--blue); font-style: italic; }
.prose-wrap h3 { font-family: var(--display); font-size: 24px; color: var(--blue); margin: 32px 0 12px; }
.prose-wrap p { color: var(--slate-2); margin-bottom: 18px; font-size: 16.5px; }
.prose-wrap ul { padding-left: 22px; margin-bottom: 20px; }
.prose-wrap li { color: var(--slate-2); margin-bottom: 10px; padding-left: 8px; }
.prose-wrap li::marker { color: var(--blue); content: '+ '; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: '+'; position: absolute; top: 30px; left: 6%; font-size: 140px; color: rgba(153,246,228,0.15); font-family: var(--display); pointer-events: none; }
.cta-section::after { content: '+'; position: absolute; bottom: 30px; right: 6%; font-size: 180px; color: rgba(153,246,228,0.1); font-family: var(--display); pointer-events: none; }
.cta-section h2 { font-family: var(--display); font-size: clamp(34px,4vw,50px); color: var(--white); margin-bottom: 18px; position: relative; z-index: 1; }
.cta-section h2 em { color: var(--mint); font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 600px; margin: 0 auto 32px; position: relative; z-index: 1; }

/* FOOTER */
.footer { background: var(--slate); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--display); color: var(--white); font-size: 24px; margin-bottom: 12px; }
.footer-brand em { color: var(--mint); font-style: italic; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: var(--mint); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--mint); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 28px; color: var(--blue); margin-bottom: 16px; }
.contact-info p { color: var(--grey); margin-bottom: 24px; }
.contact-info .info-row { padding: 18px 0; border-top: 1px solid var(--grey-light); }
.contact-info .info-row:last-child { border-bottom: 1px solid var(--grey-light); }
.contact-info .info-row strong { display: block; color: var(--slate); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.contact-info .info-row span { color: var(--grey); font-size: 15px; }
.form-wrap { background: var(--white); border: 1px solid var(--grey-light); padding: 32px; border-radius: 20px; }
.form-wrap iframe { border: none; width: 100%; min-height: 580px; }

@media (max-width: 900px) {
  .hero-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .sectors-grid, .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; font-size: 14px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .topbar-meta { display: none; }
}
