@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Cabin:wght@400;500;600;700&display=swap');

:root {
  --magenta: #BE185D; --magenta-deep: #831843; --magenta-soft: #F9A8D4;
  --navy: #1E1B4B; --navy-deep: #0F0E2E; --navy-mid: #312E81;
  --yellow: #FBBF24; --yellow-deep: #D97706; --yellow-soft: #FDE68A;
  --cream: #FEF9E7; --cream-deep: #F4ECCC;
  --charcoal: #1A1A1A; --text: #1A1A1A; --text-light: #4B5563;
  --border: #E2D9B5; --white: #FFFFFC;
  --shadow: 0 1px 3px rgba(30,27,75,0.08), 0 4px 14px rgba(190,24,93,0.10);
  --shadow-lg: 0 6px 24px rgba(190,24,93,0.18), 0 14px 38px rgba(30,27,75,0.10);
  --radius: 12px; --radius-lg: 20px; --max: 1180px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Cabin', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); letter-spacing: -0.022em; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.005em; }
p { color: var(--text-light); }
.topbar { background: var(--navy); color: var(--cream); font-size: 0.84rem; }
.topbar-inner { max-width: var(--max); margin: 0 auto; padding: 0.55rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-tagline { display: flex; align-items: center; gap: 0.55rem; opacity: 0.94; }
.topbar-tagline svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--yellow); }
.topbar-meta { display: flex; gap: 1.4rem; align-items: center; font-size: 0.78rem; opacity: 0.85; }
.nav { background: var(--cream); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-mark { width: 50px; height: 50px; background: var(--magenta); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 800; color: var(--cream); letter-spacing: 1px; position: relative; transform: rotate(-3deg); }
.logo-mark::after { content: ''; position: absolute; inset: -4px; background: var(--yellow); border-radius: var(--radius); z-index: -1; transform: rotate(6deg); }
.logo-text { font-family: 'Sora', sans-serif; font-size: 1.32rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.logo-text span { color: var(--magenta); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy-mid); font-weight: 600; font-size: 0.94rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--magenta); }
.nav-cta { background: var(--magenta); color: var(--cream) !important; padding: 0.7rem 1.4rem; border-radius: 999px; font-weight: 700 !important; font-size: 0.84rem !important; letter-spacing: 0.5px; transition: all 0.2s; }
.nav-cta:hover { background: var(--magenta-deep); transform: translateY(-1px); }
.hero { position: relative; background: var(--cream); padding: 5rem 1.5rem 6rem; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(251,191,36,0.32), transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(190,24,93,0.18), transparent 65%); pointer-events: none; }
.hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: var(--navy); color: var(--yellow); border-radius: 999px; font-size: 0.74rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 1.4rem; }
.hero-eyebrow::before { content: '◆'; color: var(--magenta-soft); }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--magenta); position: relative; }
.hero h1 em::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: var(--yellow); opacity: 0.5; z-index: -1; transform: skewX(-8deg); }
.hero-lede { font-size: 1.16rem; color: var(--text-light); margin-bottom: 2.2rem; max-width: 580px; line-height: 1.65; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.95rem 1.8rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.4px; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; font-family: 'Sora', sans-serif; }
.btn-primary { background: var(--magenta); color: var(--cream); }
.btn-primary:hover { background: var(--magenta-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.hero-points { display: flex; flex-wrap: wrap; gap: 0.6rem 1.8rem; list-style: none; font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 0.55rem; }
.hero-points li::before { content: '→'; color: var(--magenta); font-weight: 800; }
/* hero visual: stage pipeline */
.pipeline { position: relative; display: flex; flex-direction: column; gap: 0.9rem; }
.pipeline-stage { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; position: relative; box-shadow: var(--shadow); }
.pipeline-stage:nth-child(1) { transform: translateX(-8px); }
.pipeline-stage:nth-child(2) { transform: translateX(8px); border-color: var(--magenta); }
.pipeline-stage:nth-child(3) { transform: translateX(-4px); border-color: var(--yellow-deep); }
.pipeline-stage:nth-child(4) { transform: translateX(4px); border-color: var(--magenta); }
.stage-num { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--magenta); min-width: 40px; }
.stage-text h4 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.stage-text p { font-size: 0.82rem; color: var(--text-light); line-height: 1.4; }
section { padding: 5rem 1.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { display: inline-block; font-size: 0.74rem; font-weight: 800; color: var(--magenta); letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 0.85rem; font-family: 'Sora', sans-serif; }
.section-head h2 { margin-bottom: 1rem; }
.section-head h2 em { font-style: normal; color: var(--magenta); position: relative; }
.section-head h2 em::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--yellow); opacity: 0.5; z-index: -1; transform: skewX(-8deg); }
.section-head p { font-size: 1.05rem; line-height: 1.7; }
.trust { background: var(--magenta); padding: 2.6rem 1.5rem; color: var(--cream); }
.trust-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust-item .num { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 0.4rem; }
.trust-item .lbl { font-size: 0.86rem; color: var(--cream); opacity: 0.9; }
.sectors-bg { background: var(--cream); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sector-card { background: var(--white); padding: 1.7rem 1.5rem; border: 2px solid var(--border); border-radius: var(--radius); transition: all 0.25s; }
.sector-card:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow); border-color: var(--magenta); }
.sector-card .icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--magenta); color: var(--cream); margin-bottom: 1rem; border-radius: var(--radius); transform: rotate(-3deg); }
.sector-card .icon svg { width: 20px; height: 20px; }
.sector-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--navy); }
.sector-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.55; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.why-card { padding: 2rem 1.8rem; background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); }
.why-card .icon-pill { width: 50px; height: 50px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--yellow); margin-bottom: 1.2rem; }
.why-card .icon-pill svg { width: 22px; height: 22px; }
.why-card h3 { margin-bottom: 0.55rem; font-family: 'Sora', sans-serif; font-size: 1.32rem; font-weight: 700; color: var(--navy); }
.why-card p { font-size: 0.95rem; line-height: 1.65; }
.process-bg { background: var(--cream-deep); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process-step { background: var(--white); padding: 2rem 1.8rem; border: 2px solid var(--border); border-radius: var(--radius-lg); position: relative; }
.process-step .step-num { position: absolute; top: -22px; left: 1.8rem; background: var(--yellow); color: var(--navy); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; border: 4px solid var(--cream-deep); }
.process-step h3 { margin: 1.2rem 0 0.5rem; font-family: 'Sora', sans-serif; font-size: 1.3rem; color: var(--navy); }
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.location-pill { padding: 0.85rem 1.1rem; background: var(--white); border: 2px solid var(--border); border-radius: 999px; font-size: 0.92rem; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.location-pill::before { content: '→'; color: var(--magenta); font-weight: 800; }
.location-pill:hover { background: var(--cream); border-color: var(--magenta-soft); }
.faq-bg { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); margin-bottom: 0.7rem; overflow: hidden; }
.faq-item summary { padding: 1.3rem 1.5rem; font-weight: 700; font-size: 1rem; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Sora', sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--magenta); font-weight: 300; flex-shrink: 0; transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.5rem 1.4rem; color: var(--text-light); line-height: 1.7; }
.cta-banner { background: var(--navy); color: var(--cream); text-align: center; padding: 4.8rem 1.5rem; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -180px; left: 50%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(251,191,36,0.22), transparent 65%); transform: translateX(-50%); pointer-events: none; }
.cta-banner h2 { color: var(--cream); position: relative; }
.cta-banner h2 em { color: var(--yellow); font-style: normal; }
.cta-banner p { color: rgba(254,249,231,0.88); margin: 1rem auto 2rem; max-width: 600px; position: relative; font-size: 1.04rem; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: var(--yellow); color: var(--navy); }
.cta-banner .btn-primary:hover { background: var(--cream); }
.footer { background: var(--navy-deep); color: rgba(254,249,231,0.78); padding: 4rem 1.5rem 1.5rem; font-size: 0.92rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(254,249,231,0.14); }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--yellow); margin-bottom: 1rem; font-weight: 700; font-family: 'Sora', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: rgba(254,249,231,0.78); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-brand p { margin-top: 0.9rem; max-width: 320px; line-height: 1.6; color: rgba(254,249,231,0.7); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(254,249,231,0.55); flex-wrap: wrap; gap: 1rem; }
.page-header { background: var(--cream); padding: 4.8rem 1.5rem 4.4rem; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-header::after { content: ''; position: absolute; top: -100px; right: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(251,191,36,0.32), transparent 70%); pointer-events: none; }
.page-header h1 { color: var(--navy); position: relative; margin-bottom: 1rem; }
.page-header h1 em { font-style: normal; color: var(--magenta); }
.page-header p { color: var(--text-light); max-width: 660px; margin: 0 auto; position: relative; font-size: 1.1rem; }
.crumbs { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.84rem; color: var(--text-light); margin-top: 1.5rem; position: relative; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.crumbs a { color: var(--magenta); text-decoration: none; }
.prose { max-width: 820px; margin: 0 auto; }
.prose p { font-size: 1rem; margin-bottom: 1.1rem; line-height: 1.78; color: var(--text-light); }
.prose h2 { margin: 2.5rem 0 1rem; font-family: 'Sora', sans-serif; }
.prose h3 { margin: 1.8rem 0 0.7rem; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.1rem; color: var(--text-light); }
.prose ul li { margin-bottom: 0.4rem; }
.prose strong { color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; }
.contact-info h3 { margin-bottom: 1.4rem; color: var(--navy); font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; }
.contact-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .ci { width: 42px; height: 42px; background: var(--magenta); color: var(--cream); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .ci svg { width: 19px; height: 19px; }
.contact-row .lbl { font-size: 0.74rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 0.2rem; font-weight: 700; font-family: 'Sora', sans-serif; }
.contact-row .val { color: var(--navy); font-weight: 500; }
.form-frame { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 0.6rem; min-height: 560px; }
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pipeline-stage:nth-child(n) { transform: none; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-inner { height: 64px; }
  .topbar-inner { justify-content: center; gap: 0.4rem; }
  .topbar-meta { display: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 1.5rem; }
}
