/* The Kre8 Group market-entry experience */
:root {
	--ink: #102a43;
	--ink-soft: #1d4168;
	--forest: #1e5c99;
	--moss: #74b3e7;
	--lime: #b9ddf7;
	--sand: #f3f7fb;
	--paper: #ffffff;
	--muted: #5c7288;
	--line: rgba(16, 42, 67, 0.14);
	--display: "DM Serif Display", Georgia, serif;
	--sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

html { margin: 0; padding: 0; scroll-behavior: smooth; }

body.market-entry-page {
	margin: 0;
	padding: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
	text-align: left;
}

body.market-entry-page *, body.market-entry-page *:before, body.market-entry-page *:after { box-sizing: border-box; }
body.market-entry-page h1, body.market-entry-page h2, body.market-entry-page h3, body.market-entry-page p, body.market-entry-page ul, body.market-entry-page ol { margin: 0; }
body.market-entry-page ul, body.market-entry-page ol { padding: 0; list-style: none; }
body.market-entry-page a { color: inherit; }
body.market-entry-page img { display: block; max-width: 100%; border: 0; }
body.market-entry-page button, body.market-entry-page input, body.market-entry-page textarea { font: inherit; }
body.market-entry-page main { overflow: hidden; }
body.market-entry-page #page-wrapper { padding-top: 0; padding-bottom: 0; }

body.market-entry-page .container {
	margin-right: auto;
	margin-left: auto;
	width: min(1200px, calc(100% - 64px)) !important;
	max-width: none;
	min-width: 0;
}

/* Shared navigation */
body.market-entry-page #header-wrapper {
	display: block !important;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: rgba(255, 254, 249, 0.93);
	border-bottom: 1px solid rgba(16, 42, 67, 0.1);
	box-shadow: none;
	backdrop-filter: blur(16px);
	z-index: 10000;
}

body.market-entry-page #header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 80px;
	line-height: normal;
}

body.market-entry-page #header h1 { display: flex; align-items: center; height: auto; }
body.market-entry-page #logo { display: flex; align-items: center; }
body.market-entry-page #logo img { display: block; width: 86px; height: auto; }
body.market-entry-page #nav { position: static; height: auto; line-height: normal; }
body.market-entry-page #nav > ul { display: flex; align-items: center; gap: 28px; margin: 0; }
body.market-entry-page #nav > ul > li { display: block; margin: 0; }
body.market-entry-page #nav > ul > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.025em;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

body.market-entry-page #nav > ul > li > a:hover { color: var(--forest); }
body.market-entry-page #nav > ul > li > a.nav-cta {
	padding: 11px 15px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--lime);
}
body.market-entry-page #nav > ul > li > a.nav-cta:hover { background: var(--forest); color: #fff; transform: translateY(-1px); }
body.market-entry-page #titleBar, body.market-entry-page #navPanel { display: none !important; }

.eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	color: currentColor;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}
.eyebrow:before { width: 20px; height: 1px; background: currentColor; content: ""; opacity: .72; }

body.market-entry-page h2 {
	font-family: var(--display);
	font-size: clamp(44px, 5.2vw, 76px);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: .98;
}
body.market-entry-page h2 em { color: var(--moss); font-style: italic; }
body.market-entry-page h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.15; }

.button, body.market-entry-page .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 52px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	box-shadow: none;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .015em;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover, body.market-entry-page .button:hover { transform: translateY(-2px); }
.button-primary, body.market-entry-page .button-primary { background: var(--lime); border-color: var(--lime); color: var(--ink) !important; }
.button-primary:hover, body.market-entry-page .button-primary:hover { background: #e6f8a9; border-color: #e6f8a9; color: var(--ink) !important; }
.button-ghost, body.market-entry-page .button-ghost { border-color: rgba(255,255,255,.45); background: transparent; color: #fff !important; }
.button-ghost:hover, body.market-entry-page .button-ghost:hover { background: #fff; border-color: #fff; color: var(--ink) !important; }
.button-light, body.market-entry-page .button-light { background: #ffffff; border-color: #ffffff; color: var(--ink) !important; }
.button-light:hover, body.market-entry-page .button-light:hover { background: var(--lime); border-color: var(--lime); color: var(--ink) !important; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: inherit; font-size: 12px; font-weight: 800; text-decoration: none; }
.text-link span { font-size: 17px; line-height: 1; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.dark-link { color: var(--ink); }

/* Home */
.hero { position: relative; background: var(--ink); color: #f5f5e9; padding: 162px 0 88px; }
.hero:before { position: absolute; width: 48vw; height: 48vw; top: -30vw; right: -13vw; border: 1px solid rgba(216,236,146,.13); border-radius: 50%; box-shadow: 0 0 0 72px rgba(216,236,146,.025), 0 0 0 148px rgba(216,236,146,.02); content: ""; }
.hero:after { position: absolute; left: -5vw; bottom: -16vw; width: 36vw; height: 36vw; border: 1px solid rgba(216,236,146,.08); border-radius: 50%; content: ""; }
.hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 72px; position: relative; z-index: 1; }
.hero-copy { max-width: 650px; }
.hero-copy .eyebrow { color: var(--lime); margin-bottom: 28px; }
.hero h2 { max-width: 650px; color: #f7f7eb; }
.hero-intro { max-width: 570px; margin-top: 30px !important; color: rgba(247,247,235,.72); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 37px; }
.hero-actions .text-link { color: #fff; }
.hero-proof { display: flex; gap: 0; margin-top: 80px; }
.hero-proof div { min-width: 104px; padding-right: 23px; margin-right: 23px; border-right: 1px solid rgba(255,255,255,.17); }
.hero-proof div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-proof strong { display: block; color: var(--lime); font-family: var(--display); font-size: 36px; font-weight: 400; letter-spacing: -.055em; line-height: 1; }
.hero-proof span { display: block; margin-top: 6px; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.network-card { position: relative; width: 100%; max-width: 480px; justify-self: end; min-height: 450px; border: 1px solid rgba(216,236,146,.28); border-radius: 10px; background: rgba(255,255,255,.035); overflow: hidden; }
.network-card:before { position: absolute; inset: 58px 0 56px; background-image: linear-gradient(rgba(216,236,146,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(216,236,146,.045) 1px, transparent 1px); background-size: 37px 37px; content: ""; }
.network-card-top, .network-card-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; }
.network-card-top { border-bottom: 1px solid rgba(216,236,146,.18); color: rgba(255,255,255,.75); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.network-card-top i { color: var(--lime); font-size: 9px; font-style: normal; letter-spacing: .05em; }
.network-card-top i:before { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); content: ""; }
.network-card-bottom { position: absolute; bottom: 0; width: 100%; border-top: 1px solid rgba(216,236,146,.18); color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.network-field { position: absolute; inset: 58px 0 56px; }
.route { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(216,236,146,.8), transparent); transform-origin: left center; }
.route-one { width: 64%; top: 36%; left: 20%; transform: rotate(25deg); }
.route-two { width: 60%; top: 64%; left: 23%; transform: rotate(-36deg); }
.route-three { width: 45%; top: 50%; left: 30%; transform: rotate(7deg); }
.node { position: absolute; width: 10px; height: 10px; border: 2px solid var(--lime); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 4px rgba(216,236,146,.1), 0 0 18px rgba(216,236,146,.48); }
.node:after { position: absolute; top: 50%; left: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--lime); transform: translate(-50%,-50%); content: ""; }
.n1 { left: 20%; top: 31%; }.n2 { left: 42%; top: 43%; }.n3 { left: 67%; top: 54%; }.n4 { left: 75%; top: 30%; }.n5 { left: 32%; top: 66%; }.n6 { left: 59%; top: 69%; }.n7 { left: 81%; top: 76%; }.n8 { left: 48%; top: 25%; }.n9 { left: 18%; top: 54%; }
.network-label { position: absolute; color: rgba(255,255,255,.42); font-family: var(--sans); font-size: 8px; font-weight: 800; letter-spacing: .12em; white-space: nowrap; }
.label-a { top: 14%; left: 18%; }.label-b { bottom: 14%; left: 44%; }.label-c { top: 41%; right: 8%; }

.intro-band { padding: 52px 0 56px; border-bottom: 1px solid var(--line); background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 28px; align-items: start; }
.intro-grid .eyebrow { color: var(--forest); padding-top: 8px; }
.lead-copy { max-width: 730px; color: var(--ink); font-family: var(--display); font-size: clamp(25px, 2.5vw, 36px); letter-spacing: -.04em; line-height: 1.16; }

.services-section { padding: 120px 0 128px; background: var(--sand); }
.section-heading { display: flex; justify-content: space-between; gap: 45px; align-items: flex-end; margin-bottom: 54px; }
.section-heading .eyebrow { margin-bottom: 18px; color: var(--forest); }
.section-heading h2 { max-width: 640px; color: var(--ink); font-size: clamp(42px, 4.5vw, 64px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 418px; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: #ffffff; transition: transform 220ms ease, box-shadow 220ms ease; }
.service-card:hover { box-shadow: 0 18px 42px rgba(16,42,67,.08); transform: translateY(-5px); }
.card-number { position: absolute; top: 28px; right: 29px; color: #92a8bc; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.service-icon { display: grid; width: 43px; height: 43px; margin-bottom: 65px; border: 1px solid var(--ink); border-radius: 50%; place-items: center; color: var(--ink); font-size: 20px; line-height: 1; }
.service-card p { min-height: 90px; margin-top: 17px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card ul { margin-top: 30px; padding-top: 21px; border-top: 1px solid var(--line); }
.service-card li { position: relative; margin-top: 9px; padding-left: 15px; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.service-card li:before { position: absolute; left: 0; color: var(--forest); content: "•"; }

.process-section { padding: 120px 0; background: var(--forest); color: #fff; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 115px; }
.process-intro .eyebrow { color: var(--lime); margin-bottom: 20px; }.process-intro h2 { color: #fff; font-size: clamp(44px,4.2vw,60px); }.process-intro > p:not(.eyebrow) { max-width: 390px; margin-top: 26px !important; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }.process-intro .button { margin-top: 33px; }
.process-list { counter-reset: steps; border-top: 1px solid rgba(255,255,255,.24); }
.process-list li { display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 24px 0 27px; border-bottom: 1px solid rgba(255,255,255,.24); }
.process-list li > span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .12em; padding-top: 5px; }
.process-list h3 { color: #fff; font-size: 25px; }.process-list p { max-width: 430px; margin-top: 9px !important; color: rgba(255,255,255,.65); font-size: 14px; }

.network-section { padding: 111px 0 105px; background: var(--paper); }
.network-content { display: grid; grid-template-columns: 1fr 1fr; gap: 115px; }
.network-content .eyebrow { color: var(--forest); margin-bottom: 19px; }.network-content h2 { color: var(--ink); font-size: clamp(44px,4.8vw,67px); }.network-copy { padding-top: 45px; }.network-copy > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }.region-tags span { padding: 9px 12px; border-radius: 999px; background: #e4f0fa; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .03em; }

.closing-cta { padding: 112px 0; background: var(--ink); color: #fff; text-align: center; }.closing-cta .eyebrow { justify-content: center; color: var(--lime); margin-bottom: 20px; }.closing-cta h2 { color: #fff; margin: 0 auto; }.closing-cta .button { margin-top: 38px; }.closing-cta.compact { padding: 100px 0; }

/* Inner pages */
.inner-hero { padding: 173px 0 92px; background: var(--ink); color: #fff; }.inner-hero .container { position: relative; }.inner-hero .container:after { position: absolute; top: -103px; right: 4%; width: 310px; height: 310px; border: 1px solid rgba(216,236,146,.16); border-radius: 50%; box-shadow: 0 0 0 55px rgba(216,236,146,.026); content: ""; }.inner-hero .eyebrow { color: var(--lime); margin-bottom: 24px; }.inner-hero h2 { max-width: 830px; color: #fff; }.inner-hero > .container > p:last-child { max-width: 590px; margin-top: 28px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; }

.service-detail-section { padding: 82px 0 118px; background: var(--sand); }.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.detail-card { min-height: 370px; padding: 32px; border-top: 3px solid var(--forest); background: var(--paper); }.detail-card > span { display: block; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .12em; }.detail-card h3 { margin-top: 54px; font-size: 26px; }.detail-card p { min-height: 103px; margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }.detail-card ul { margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); }.detail-card li { position: relative; margin-top: 7px; padding-left: 14px; font-size: 11px; font-weight: 700; }.detail-card li:before { position: absolute; left: 0; color: var(--forest); content: "•"; }
.specialist-callout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 54px; margin-top: 18px; padding: 39px 42px; background: var(--ink); color: #fff; }.specialist-callout .eyebrow { color: var(--lime); margin-bottom: 16px; }.specialist-callout h3 { max-width: 250px; color: #fff; font-family: var(--display); font-size: 38px; font-weight: 400; letter-spacing: -.045em; line-height: 1; }.specialist-callout > div:last-child > p { max-width: 610px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.75; }.specialist-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }.specialist-tags span { padding: 8px 11px; border: 1px solid rgba(185,221,247,.35); border-radius: 999px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .025em; }
.outcome-section { padding: 98px 0; background: var(--paper); }.outcome-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 100px; align-items: end; }.outcome-grid .eyebrow { color: var(--forest); margin-bottom: 18px; }.outcome-grid h2 { font-size: clamp(40px,4.4vw,62px); }.outcome-grid > p { color: var(--muted); font-size: 17px; line-height: 1.75; }

.network-hero { background: #123a66; }.brand-section { padding: 96px 0 120px; background: var(--sand); }.section-side-copy { max-width: 325px; color: var(--muted); font-size: 14px; line-height: 1.7; }.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.brand-card { display: flex; flex-direction: column; min-height: 268px; padding: 28px; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); }.brand-type { color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.brand-card h3 { margin-top: 34px; font-family: var(--display); font-size: 33px; font-weight: 400; letter-spacing: -.04em; }.brand-card > p:not(.brand-type) { margin-top: 11px; color: var(--muted); font-size: 13px; line-height: 1.6; }.brand-card a { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 22px; color: var(--ink); font-size: 11px; font-weight: 800; text-decoration: none; }.brand-card a span { font-size: 15px; }.brand-card-cta { border-color: var(--forest); background: var(--forest); color: #fff; }.brand-card-cta .brand-type { color: var(--lime); }.brand-card-cta h3 { margin-top: 27px; font-size: 30px; }.brand-card-cta a { color: #fff; }

/* Contact */
.contact-hero { background: #123a66; }.contact-section { padding: 94px 0 118px; background: var(--sand); }.contact-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 112px; align-items: start; }.contact-aside { padding-top: 15px; }.contact-aside .eyebrow { color: var(--forest); margin-bottom: 20px; }.contact-aside h2 { font-size: clamp(40px,4.4vw,60px); }.contact-aside > p:not(.eyebrow) { max-width: 390px; margin-top: 22px; color: var(--muted); font-size: 15px; line-height: 1.75; }.contact-points { margin-top: 48px; border-top: 1px solid var(--line); }.contact-points > * { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }.contact-points span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-card { padding: 40px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: 0 15px 30px rgba(16,42,67,.05); }.form-heading .eyebrow { color: var(--forest); margin-bottom: 15px; }.form-heading h3 { font-family: var(--display); font-size: 36px; font-weight: 400; letter-spacing: -.045em; }.form-card form { display: grid; gap: 20px; margin-top: 33px; }.form-card label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }.form-card label small { color: var(--muted); font-size: 9px; letter-spacing: 0; text-transform: none; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.form-card input, .form-card textarea { width: 100%; padding: 12px 0 11px; border: 0; border-bottom: 1px solid #a4b7ca; border-radius: 0; background: transparent; color: var(--ink); font-family: var(--sans); font-size: 14px; font-weight: 500; line-height: 1.4; outline: none; }.form-card input:focus, .form-card textarea:focus { border-color: var(--forest); box-shadow: 0 1px 0 var(--forest); background: transparent; }.form-card textarea { min-height: 106px; resize: vertical; }.form-card input::placeholder, .form-card textarea::placeholder { color: #7d91a5; opacity: 1; }.form-card button { justify-self: start; margin-top: 7px; cursor: pointer; }.form-error { padding: 11px 13px; border-left: 3px solid #b4483e; background: #fff0ec; color: #9c382f; font-size: 12px; line-height: 1.45; }.form-success { max-width: 510px; padding: 13px 0 9px; }.form-success > span { display: grid; width: 43px; height: 43px; border-radius: 50%; background: var(--lime); place-items: center; color: var(--ink); font-weight: 800; }.form-success h3 { margin-top: 27px; font-family: var(--display); font-size: 40px; font-weight: 400; letter-spacing: -.045em; line-height: 1; }.form-success p { margin-top: 19px; color: var(--muted); font-size: 14px; line-height: 1.7; }.form-success .button { margin-top: 29px; }.visually-hidden { position: absolute; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.form-card button:disabled { cursor: wait; opacity: .62; transform: none; }.form-status { display: none; margin: 0; padding: 10px 12px; border-left: 3px solid var(--forest); background: #eaf4fd; color: var(--ink-soft); font-size: 12px; font-weight: 700; line-height: 1.5; }.form-status:not(:empty) { display: block; }.form-status.is-success { border-color: #2b7e67; background: #e7f6f1; color: #145444; }.form-status.is-error { border-color: #b4483e; background: #fff0ec; color: #9c382f; }
.static-contact-card > p { max-width: 440px; margin-top: 24px; color: var(--muted); font-size: 15px; line-height: 1.75; }.static-contact-card .button { margin-top: 31px; }.static-contact-card .text-link { margin: 25px 0 4px 4px; }

/* Invoice payment */
.payment-hero { background: #123a66; }.payment-section { padding: 94px 0 118px; background: var(--sand); }.payment-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 112px; align-items: start; }.payment-aside { padding-top: 15px; }.payment-aside .eyebrow { color: var(--forest); margin-bottom: 20px; }.payment-aside h2 { font-size: clamp(40px,4.4vw,60px); }.payment-aside > p:not(.eyebrow) { max-width: 390px; margin-top: 22px; color: var(--muted); font-size: 15px; line-height: 1.75; }.payment-points { margin-top: 48px; border-top: 1px solid var(--line); }.payment-points > div { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 700; }.payment-points span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.payment-points a { color: var(--ink); text-decoration: none; }.payment-card { padding: 40px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: 0 15px 30px rgba(16,42,67,.05); }.payment-card .form-heading .eyebrow { color: var(--forest); margin-bottom: 15px; }.payment-card .form-heading h3 { font-family: var(--display); font-size: 36px; font-weight: 400; letter-spacing: -.045em; }.payment-form { display: grid; gap: 23px; margin-top: 33px; }.payment-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }.payment-form input { width: 100%; padding: 12px 0 11px; border: 0; border-bottom: 1px solid #a4b7ca; border-radius: 0; background: transparent; color: var(--ink); font-family: var(--sans); font-size: 16px; font-weight: 600; outline: none; }.payment-form input:focus { border-color: var(--forest); box-shadow: 0 1px 0 var(--forest); }.payment-form input::placeholder { color: #7d91a5; opacity: 1; }.payment-form button { justify-self: start; cursor: pointer; }.payment-disclaimer { margin-top: -1px !important; color: var(--muted); font-size: 11px; line-height: 1.6; }.payment-notice { margin-top: 26px !important; padding: 11px 13px; border-left: 3px solid var(--forest); background: #eaf4fd; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }.payment-card .form-error { margin-top: 25px; }.payment-result-section { display: grid; min-height: calc(100vh - 80px); padding: 156px 0 90px; background: var(--sand); place-items: center; }.payment-result-card { max-width: 700px; padding: 20px 0; text-align: center; }.payment-result-card .result-symbol { display: grid; width: 55px; height: 55px; margin: 0 auto 25px; border-radius: 50%; background: var(--lime); place-items: center; color: var(--ink); font-size: 23px; font-weight: 800; }.payment-result-card .result-symbol-error { background: #f8d2ca; color: #923c31; }.payment-result-card .result-symbol-pending { background: #e4f0fa; color: var(--ink); }.payment-result-card .eyebrow { justify-content: center; color: var(--forest); margin-bottom: 18px; }.payment-result-card h2 { font-size: clamp(44px,5vw,68px); }.payment-result-card > p:not(.eyebrow) { max-width: 560px; margin: 25px auto 0 !important; color: var(--muted); font-size: 15px; line-height: 1.75; }.payment-result-card .button { margin-top: 33px; }

/* Footer */
body.market-entry-page .site-footer { margin: 0; padding: 54px 0 0; background: #091f39; color: #fff; }.footer-inner { display: grid; grid-template-columns: 1.45fr 1fr .8fr; gap: 50px; padding-bottom: 51px; }.footer-mark { display: inline-flex; }.footer-mark img { display: block; width: 82px; height: auto; filter: brightness(0) invert(1); }.footer-inner > div:first-child p { max-width: 260px; margin-top: 19px; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.65; }.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 11px; }.footer-links a, .footer-contact a { color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; text-decoration: none; }.footer-links a:hover, .footer-contact a:hover { color: var(--lime); }body.market-entry-page #copyright { width: min(1200px, calc(100% - 64px)); margin: 0 auto; padding: 19px 0 21px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-family: var(--sans); font-size: 10px; text-align: left; }

/* Responsive */
@media screen and (max-width: 980px) {
	.hero-grid, .process-grid, .network-content, .contact-layout, .payment-layout { gap: 55px; }
	.hero-grid { grid-template-columns: 1fr .82fr; }.network-card { min-height: 400px; }
	.service-card { padding: 24px; }.detail-card { padding: 25px; }.detail-card h3 { font-size: 23px; }.detail-card p { min-height: 120px; }
	.contact-layout, .payment-layout { grid-template-columns: .85fr 1.15fr; }.footer-inner { grid-template-columns: 1.2fr 1fr .8fr; }
}

@media screen and (max-width: 760px) {
	body.market-entry-page .container { width: min(100% - 40px, 590px) !important; }
	body.market-entry-page #header-wrapper { height: auto; min-height: 72px; }body.market-entry-page #header { min-height: 72px; height: auto; padding: 13px 0; gap: 14px; }body.market-entry-page #logo img { width: 72px; }body.market-entry-page #nav > ul { justify-content: flex-end; flex-wrap: wrap; gap: 7px 14px; }body.market-entry-page #nav > ul > li > a { font-size: 9px; }body.market-entry-page #nav > ul > li > a.nav-cta { padding: 8px 10px; }body.market-entry-page #nav > ul > li > a.nav-cta span { display: none; }
	.hero { padding: 142px 0 59px; }.hero-grid, .intro-grid, .service-grid, .process-grid, .network-content, .detail-grid, .outcome-grid, .contact-layout, .payment-layout, .footer-inner { grid-template-columns: 1fr; }.hero-grid { gap: 45px; }.hero h2 { font-size: clamp(45px, 13vw, 64px); }.hero-intro { font-size: 15px; }.hero-proof { margin-top: 54px; }.hero-proof div { min-width: 83px; padding-right: 13px; margin-right: 13px; }.hero-proof strong { font-size: 31px; }.network-card { justify-self: stretch; max-width: none; min-height: 356px; }.network-card-bottom { padding: 15px 17px; font-size: 8px; }.intro-band { padding: 38px 0 42px; }.intro-grid { gap: 15px; }.lead-copy { font-size: 27px; }
	.services-section, .process-section, .network-section, .service-detail-section, .brand-section, .contact-section { padding: 70px 0; }.section-heading { align-items: flex-start; flex-direction: column; gap: 22px; margin-bottom: 33px; }.section-heading h2 { font-size: 43px; }.service-grid { gap: 12px; }.service-card { min-height: 0; padding: 27px; }.service-icon { margin-bottom: 42px; }.service-card p { min-height: 0; }.process-grid { gap: 47px; }.process-intro { position: static; }.process-intro h2, .network-content h2 { font-size: 45px; }.process-list li { grid-template-columns: 48px 1fr; }.network-content { gap: 24px; }.network-copy { padding-top: 0; }.closing-cta { padding: 75px 0; }.closing-cta h2 { font-size: 48px; }.closing-cta.compact { padding: 75px 0; }
	.inner-hero { padding: 145px 0 62px; }.inner-hero .container:after { top: -80px; right: -44px; width: 210px; height: 210px; }.inner-hero h2 { font-size: clamp(44px, 13vw, 62px); }.inner-hero > .container > p:last-child { font-size: 15px; }.detail-grid { gap: 12px; }.detail-card { min-height: 0; }.detail-card h3 { margin-top: 35px; }.detail-card p { min-height: 0; }.specialist-callout { grid-template-columns: 1fr; gap: 24px; padding: 30px 25px; }.specialist-callout h3 { font-size: 34px; }.outcome-section { padding: 70px 0; }.outcome-grid { gap: 30px; }.outcome-grid h2 { font-size: 43px; }.brand-grid { grid-template-columns: 1fr; }.brand-card { min-height: 230px; }.section-side-copy { max-width: 500px; }
	.contact-layout, .payment-layout { gap: 48px; }.contact-aside, .payment-aside { padding-top: 0; }.contact-aside h2, .payment-aside h2 { font-size: 45px; }.contact-points, .payment-points { margin-top: 35px; }.form-card, .payment-card { padding: 27px 21px; }.form-row { grid-template-columns: 1fr; gap: 20px; }.form-card form { gap: 19px; }.form-success h3 { font-size: 35px; }.payment-result-section { min-height: auto; padding: 145px 0 70px; }.footer-inner { gap: 31px; padding-bottom: 35px; }body.market-entry-page #copyright { width: min(100% - 40px, 590px); }
}

@media screen and (max-width: 410px) {
	body.market-entry-page #nav > ul { gap: 6px 10px; }body.market-entry-page #nav > ul > li > a { font-size: 8px; }.hero-proof { gap: 0; }.hero-proof div { min-width: 0; flex: 1; }.hero-proof strong { font-size: 27px; }.hero-proof span { font-size: 8px; }.network-card-top { padding: 16px 15px; font-size: 8px; }.network-card-bottom { gap: 6px; font-size: 7px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
}
