/* ==========================================================================
   Franchise & Channel Partner page
   Reuses the global tokens/classes from style.css (--blue, --brand-blue,
   --font-manrope, .eyebrow, .btn, .section, .section-heading, .check-list,
   .accordion, .cta-banner, .reveal) so this page reads as part of the same
   site. Only the pieces this page introduces live here. No colour outside
   the token set is used anywhere below.
   ========================================================================== */

/* Nothing on this page may push the viewport sideways. `clip` rather than
   `hidden` so these sections never become scroll containers themselves
   (which would break the sticky header's containing block). */
.partner-hero,
.partner-trust,
.partner-benefits,
.partner-models,
.partner-support,
.partner-form-section { overflow-x: clip; }

/* ==========================================================================
   Hero — the handshake/network photo as a full-bleed background, with the
   copy over a scrim on the left.

   part.png is only 1472x528, so a browser asked to fill a 1920px hero with it
   stretches every pixel 1.4x with a cheap filter, which is what broke up the
   thin network lines. Both files behind this rule are Lanczos-3 resamples of
   that source built at the sizes the layout actually needs — 2880px wide for
   desktop, and 1080x1920 for phones, which is a phone hero's exact device-pixel
   size so nothing scales it twice.

   The section is sized to land inside the first screen: viewport height minus
   the top bar and nav (~104px), capped so tall monitors don't stretch it.
   ========================================================================== */
.partner-hero {
	position: relative;
	overflow: hidden;
	background: #04143d;
	min-height: min(calc(100vh - 104px), 760px);
	display: flex;
	align-items: center;
}
.partner-hero picture { display: contents; }
.partner-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.partner-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(96deg, rgba(4, 15, 46, .95) 0%, rgba(4, 15, 46, .88) 32%, rgba(4, 15, 46, .6) 54%, rgba(4, 15, 46, .26) 76%, rgba(4, 15, 46, .34) 100%);
}
.partner-hero__container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 48px 24px;
}
.partner-hero__content { max-width: 620px; }
.partner-hero .eyebrow { color: #BFD1FF; }
.partner-hero h1 {
	color: var(--white);
	font-family: var(--font-manrope);
	font-weight: 800;
	font-size: clamp(34px, 3.6vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.5px;
	margin: 14px 0 18px;
}
.partner-hero__subhead {
	color: rgba(255, 255, 255, .9);
	font-size: 16.5px;
	line-height: 1.65;
	margin-bottom: 28px;
	max-width: 56ch;
}
.partner-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.partner-hero__stats {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .18);
}
.partner-hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.partner-hero__stats strong {
	font-family: var(--font-manrope);
	font-size: 26px;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
}
.partner-hero__stats span {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, .7);
	letter-spacing: .02em;
}

/* ==========================================================================
   Trust strip — same marquee the leased-line page uses (.trusted-by__* comes
   from style.css); only the surrounding framing is defined here.
   ========================================================================== */
.partner-trust {
	position: relative;
	overflow: hidden;
	padding-top: 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--gray-100);
}
.partner-trust::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: -20% -10%;
	background: radial-gradient(700px 220px at 50% 0%, rgba(0, 104, 255, .08), transparent 70%);
	pointer-events: none;
}
.partner-trust .container { position: relative; z-index: 1; }
.partner-trust__label {
	text-align: center;
	color: var(--gray-500);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 28px;
}
.partner-trust__caption { text-align: center; color: var(--gray-500); font-size: 14.5px; margin: 24px 0 0; }

/* Centred variant of the shared section heading — several sections here are
   full-width grids that read better under a centred title. */
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Why partner — an index-numbered grid ruled by hairlines, not cards. The
   nine points share one continuous surface: each cell carries only a right
   and bottom rule, and the grid's own edges close it off. Reads as a spec
   sheet rather than nine floating boxes.
   ========================================================================== */
.partner-benefits { background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 100%); }
.partner-benefits__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--gray-100);
	border-left: 1px solid var(--gray-100);
	margin: 0;
	padding: 0;
	list-style: none;
}
.partner-benefit {
	border-right: 1px solid var(--gray-100);
	border-bottom: 1px solid var(--gray-100);
	padding: 30px 28px 32px;
	transition: background .2s ease;
}
.partner-benefit:hover { background: var(--tint); }
.partner-benefit__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}
.partner-benefit__index {
	font-family: var(--font-manrope);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	color: var(--blue);
}
.partner-benefit__icon {
	width: 26px;
	height: 26px;
	fill: var(--gray-300);
	flex-shrink: 0;
	transition: fill .2s ease, transform .2s ease;
}
.partner-benefit:hover .partner-benefit__icon { fill: var(--blue); transform: translateY(-2px); }
.partner-benefit h3 {
	font-family: var(--font-manrope);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
}
.partner-benefit p { color: var(--gray-500); font-size: 14.5px; line-height: 1.65; margin: 0; }
.partner-benefits__note { color: var(--gray-500); font-size: 13.5px; margin: 26px 0 0; }

/* ==========================================================================
   Partnership models — two routes, always the same height. The grid stretches
   both columns and each card is a flex column, so the CTA sits on the same
   baseline no matter how many "suitable for" chips a card carries.
   ========================================================================== */
.partner-models { position: relative; background: var(--tint); }
.partner-models__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
	align-items: stretch;
}
.partner-model {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-top: 3px solid var(--brand-blue);
	border-radius: var(--radius-md);
	padding: 32px 30px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.partner-model:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-model__tag {
	align-self: flex-start;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--blue);
	background: color-mix(in srgb, var(--blue) 10%, var(--white));
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 16px;
}
.partner-model h3 {
	font-family: var(--font-manrope);
	font-size: clamp(22px, 2.2vw, 27px);
	font-weight: 800;
	margin: 0 0 12px;
}
.partner-model__body { color: var(--gray-500); font-size: 15.5px; line-height: 1.7; margin: 0 0 24px; }
.partner-model__label {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gray-500);
	margin-bottom: 12px;
}
/* The chips stay directly under their label — only the CTA is pushed to the
   bottom (margin-top:auto below), so the two cards end on the same line
   without opening a gap inside the shorter one. */
.partner-model__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 26px;
}
.partner-model__chips li {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--gray-700);
	background: var(--tint);
	border: 1px solid var(--gray-100);
	border-radius: 999px;
	padding: 7px 14px;
}
.partner-model__cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-top: auto;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
	color: var(--blue);
}
.partner-model__cta:hover { gap: 12px; }
.partner-model__cta span { transition: transform .15s ease; }

/* ==========================================================================
   What you'll receive / who can apply — one panel split down the middle.
   The tinted half is what the partnership gives you, the white half is what
   it asks of you; a single rule between them carries the distinction, with
   no colour introduced beyond --tint / --white / --gray-100.
   ========================================================================== */
.partner-support__panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: 1px solid var(--gray-100);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.partner-support__col { padding: 44px 40px; display: flex; flex-direction: column; }
.partner-support__col--give { background: var(--tint); }
.partner-support__col--ask { background: var(--white); border-left: 1px solid var(--gray-100); }
.partner-support h2 { font-size: 30px; margin-bottom: 8px; }
.partner-support__lead { color: var(--gray-500); font-size: 15.5px; margin: 0 0 4px; }
.partner-support .check-list li { font-size: 15.5px; margin-bottom: 12px; }
.partner-support__link { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Enquiry form — same field vocabulary as the contact form so the two feel
   like one system (.field / .phone-input / .field-error are redefined here
   because contact.css only loads on the contact page).
   ========================================================================== */
.partner-form-section { position: relative; background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%); }
.partner-form-section__container { max-width: 900px; }

.partner-form {
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-top: 3px solid var(--brand-blue);
	border-radius: 16px;
	padding: 36px 34px;
	display: flex;
	flex-direction: column;
	gap: 34px;
	box-shadow: 0 12px 32px rgba(20, 40, 80, .07);
}
/* A <fieldset> defaults to min-inline-size:min-content and will refuse to
   shrink below its contents — the classic source of a stray horizontal
   scrollbar on a form page. */
.partner-form__group { border: 0; padding: 0; margin: 0; min-width: 0; }
.partner-form__legend {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-manrope);
	font-size: 18px;
	font-weight: 700;
	color: var(--charcoal);
	padding: 0;
	margin-bottom: 20px;
}
.partner-form__legend-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: var(--white);
	font-size: 14px;
	font-weight: 800;
	flex-shrink: 0;
}
.partner-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.partner-form__grid-span2 { grid-column: 1 / -1; }
.partner-form__error {
	background: #FDECEC;
	border: 1px solid #E8A5A5;
	color: #9A2C2C;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 600;
}

.partner-form .field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.partner-form .field label,
.partner-form .field-label-as-legend {
	font-family: var(--font-manrope);
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-500);
}
.partner-form .req { color: #C13333; font-weight: 700; }
.partner-form .field-optional { color: var(--gray-300); font-weight: 600; }
.partner-form .field input,
.partner-form .field textarea,
.partner-form .field select {
	height: 48px;
	border-radius: 10px;
	border: 1px solid var(--gray-100);
	background: var(--white);
	padding: 0 14px;
	font-size: 15px;
	font-family: var(--font);
	color: var(--charcoal);
	width: 100%;
	min-width: 0;
}
.partner-form .field textarea { height: auto; padding: 12px 14px; resize: vertical; }
.partner-form .field input:focus,
.partner-form .field textarea:focus,
.partner-form .field select:focus {
	outline: none;
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-blue) 14%, transparent);
}
/* Never below 16px on a real phone input, or iOS zooms the viewport on focus. */
@media (max-width: 480px) {
	.partner-form .field input,
	.partner-form .field textarea,
	.partner-form .field select { font-size: 16px; }
}

.partner-form .phone-input {
	display: flex;
	align-items: center;
	height: 48px;
	border-radius: 10px;
	border: 1px solid var(--gray-100);
	background: var(--white);
	padding: 0 14px;
	gap: 8px;
	min-width: 0;
}
.partner-form .phone-input:focus-within {
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-blue) 14%, transparent);
}
.partner-form .phone-input__prefix { font-size: 15px; font-weight: 600; color: var(--gray-500); }
.partner-form .phone-input input {
	flex: 1;
	height: 100%;
	border: 0;
	padding: 0;
	box-shadow: none !important;
}
.partner-form .phone-input input:focus { outline: none; }

.partner-form .field-error { font-size: 13px; color: #C13333; margin: 0; }

/* Interested in — the radio itself is hidden and its card is the control. */
.partner-form__radios { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.partner-radio { display: block; cursor: pointer; }
.partner-radio input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.partner-radio__box {
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 100%;
	border: 1.5px solid var(--gray-100);
	border-radius: 12px;
	padding: 16px 18px;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.partner-radio__name { font-family: var(--font-manrope); font-size: 15.5px; font-weight: 700; color: var(--charcoal); }
.partner-radio__hint { font-size: 13px; color: var(--gray-500); }
.partner-radio:hover .partner-radio__box { border-color: var(--gray-300); }
.partner-radio input:checked + .partner-radio__box {
	border-color: var(--brand-blue);
	background: color-mix(in srgb, var(--brand-blue) 5%, var(--white));
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-blue) 12%, transparent);
}
.partner-radio input:focus-visible + .partner-radio__box { outline: 2px solid var(--brand-blue); outline-offset: 2px; }

.partner-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	border-top: 1px solid var(--gray-100);
	padding-top: 24px;
}
.partner-form__note { color: var(--gray-500); font-size: 13px; margin: 0; max-width: 46ch; }
.partner-form__submit { flex-shrink: 0; }

/* Post-submit confirmation, matching the contact page's sent-card. */
.partner-sent-card {
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-top: 3px solid #1BA97A;
	border-radius: 16px;
	padding: 40px 34px;
	text-align: center;
	box-shadow: 0 12px 32px rgba(20, 40, 80, .07);
}
.partner-sent-card__emoji { font-size: 34px; line-height: 1; display: block; margin-bottom: 14px; }
.partner-sent-card__title {
	font-family: var(--font-manrope);
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 700;
	margin: 0 0 10px;
}
.partner-sent-card__body { color: var(--gray-700); font-size: 15.5px; margin: 0 0 8px; }
.partner-sent-card__note { color: var(--gray-500); font-size: 14px; margin: 0; }
.partner-sent-card__note a { color: var(--blue); font-weight: 700; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.partner-benefits__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.partner-support__panel { grid-template-columns: 1fr; }
	.partner-support__col--ask { border-left: 0; border-top: 1px solid var(--gray-100); }
	.partner-support__col { padding: 34px 28px; }
}

@media (max-width: 860px) {
	/* Phones load part-bg-m.webp instead — a 9:16 crop of the same photo,
	   built at 1080x1920. A 2.8:1 frame cannot show much through a portrait
	   window, so that crop is the centre of it: the clasped hands. The scrim
	   is heavier here because the copy runs the full width over it. */
	.partner-hero { min-height: min(calc(100vh - 92px), 720px); }
	.partner-hero__overlay {
		background: linear-gradient(180deg, rgba(4, 15, 46, .86) 0%, rgba(4, 15, 46, .8) 45%, rgba(4, 15, 46, .9) 100%);
	}
	.partner-hero__container { padding: 40px 24px; }
	.partner-hero__content { max-width: none; text-align: center; }
	.partner-hero__ctas { justify-content: center; }
	.partner-hero__stats { justify-content: center; gap: 26px; }
	.partner-models__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	.partner-benefits__list { grid-template-columns: 1fr; }
	.partner-benefit { padding: 24px 20px 26px; }
	.partner-form { padding: 26px 20px; gap: 28px; }
	.partner-form__grid { grid-template-columns: 1fr; }
	.partner-form__radios { grid-template-columns: 1fr; }
	.partner-form__footer { flex-direction: column; align-items: stretch; }
	.partner-form__submit { width: 100%; }
	.partner-model { padding: 26px 22px; }
	.partner-support__col { padding: 28px 22px; }
}

/* ==========================================================================
   Page motion — three quiet ideas, all built from the brand blue and the
   existing rules, no new palette entries and no pattern fills.

   1. Fibre strands: long stroked curves that draw themselves in and drift,
      so a flat section behind the cards reads as network rather than blank.
   2. Circuit pulse: a light travelling along the hairlines of the benefits
      grid, which already looks like a circuit board.
   3. Heading rule: a short blue bar that grows out from under each heading
      as the section scrolls in.
   ========================================================================== */
.partner-strands {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	fill: none;
}
.partner-strands__line {
	stroke: var(--blue);
	stroke-width: 1.5;
	stroke-linecap: round;
	opacity: .16;
	stroke-dasharray: 340 1700;
	animation: partnerStrand 18s linear infinite;
	animation-delay: calc(var(--strand-i, 0) * -4.5s);
}
.partner-strands--form .partner-strands__line { opacity: .12; }
@keyframes partnerStrand {
	from { stroke-dashoffset: 2040; }
	to { stroke-dashoffset: 0; }
}
/* Both sections carrying strands need their own stacking context so the
   content sits above them. */
.partner-models .container,
.partner-form-section .container { position: relative; z-index: 1; }

/* Circuit pulse — each cell's bottom rule carries a travelling highlight,
   staggered so the light appears to move through the whole grid. */
.partner-benefit { position: relative; }
.partner-benefit::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--blue), transparent);
	background-size: 38% 100%;
	background-repeat: no-repeat;
	animation: partnerPulse 7s ease-in-out infinite;
	animation-delay: calc(var(--pulse-i, 0) * .55s);
	pointer-events: none;
}
@keyframes partnerPulse {
	0% { background-position: -40% 0; opacity: 0; }
	8% { opacity: .85; }
	42% { opacity: .85; }
	55%, 100% { background-position: 140% 0; opacity: 0; }
}

/* Heading rule — grows in with the reveal it sits inside. */
.partner-benefits .section-heading h2,
.partner-models .section-heading h2,
.partner-form-section .section-heading h2,
.partner-support h2 { position: relative; padding-bottom: 14px; }
.partner-benefits .section-heading h2::after,
.partner-models .section-heading h2::after,
.partner-form-section .section-heading h2::after,
.partner-support h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--blue), var(--blue-dark));
	transition: width .8s cubic-bezier(.2, .65, .3, 1) .15s;
}
.partner-benefits .reveal.is-visible h2::after,
.partner-models .reveal.is-visible h2::after,
.partner-form-section .reveal.is-visible h2::after,
.partner-support .reveal.is-visible h2::after { width: 56px; }
/* The centred headings anchor their rule to the middle instead. */
.section-heading--center h2::after { left: 50%; transform: translateX(-50%); }

@media (prefers-reduced-motion: reduce) {
	.partner-strands__line,
	.partner-benefit::after,
	.partner-hero__img { animation: none; }
	.partner-benefit::after { opacity: 0; }
	.partner-benefits .section-heading h2::after,
	.partner-models .section-heading h2::after,
	.partner-form-section .section-heading h2::after,
	.partner-support h2::after { transition: none; width: 56px; }
}

/* Narrow phones — the stat row, hero buttons and section headings need a
   tighter scale than the 767px breakpoint alone gives them. */
@media (max-width: 600px) {
	.partner-hero__container { padding: 44px 20px 36px; }
	.partner-hero h1 { font-size: clamp(28px, 8vw, 34px); }
	.partner-hero__subhead { font-size: 15.5px; line-height: 1.65; margin-bottom: 26px; }
	.partner-hero__ctas { flex-direction: column; align-items: stretch; }
	.partner-hero__ctas .btn { width: 100%; }
	/* Three equal columns instead of a wrapping flex row, so the stats stay on
	   one line however long the labels are. */
	.partner-hero__stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		margin-top: 28px;
		padding-top: 20px;
	}
	.partner-hero__stats li { align-items: center; text-align: center; }
	.partner-hero__stats strong { font-size: 21px; }
	.partner-hero__stats span { font-size: 11.5px; line-height: 1.35; }

	.partner-trust { padding-top: 40px; padding-bottom: 40px; }
	.partner-trust__caption { font-size: 13.5px; }

	.partner-benefits .section-heading h2,
	.partner-models .section-heading h2,
	.partner-form-section .section-heading h2 { font-size: 27px; }
	.partner-benefits .section-heading p,
	.partner-models .section-heading p,
	.partner-form-section .section-heading p { font-size: 15.5px; }
	.partner-support h2 { font-size: 25px; }

	.partner-model h3 { font-size: 24px; }
	.partner-model__body { font-size: 15px; }
	.partner-model__chips li { font-size: 13px; padding: 6px 12px; }

	.partner-form__legend { font-size: 17px; }
	.partner-sent-card { padding: 30px 20px; }
}

/* ==========================================================================
   Desktop type scale (>=1024px) — every heading and its body copy sits a
   step larger here than the phone/tablet scale above. The hero is
   deliberately excluded; it already runs at its own display size.
   ========================================================================== */
@media (min-width: 1024px) {
	.partner-benefits .section-heading h2,
	.partner-models .section-heading h2,
	.partner-form-section .section-heading h2 { font-size: 38px; }
	.partner-benefits .section-heading p,
	.partner-models .section-heading p,
	.partner-form-section .section-heading p { font-size: 18.5px; line-height: 1.65; }

	.partner-trust__label { font-size: 14px; }
	.partner-trust__caption { font-size: 16px; }

	.partner-benefit h3 { font-size: 20px; }
	.partner-benefit p { font-size: 16px; }
	.partner-benefit__index { font-size: 14px; }
	.partner-benefits__note { font-size: 15px; }

	.partner-model h3 { font-size: 29px; }
	.partner-model__body { font-size: 17px; }
	.partner-model__label { font-size: 13.5px; }
	.partner-model__chips li { font-size: 14.5px; }
	.partner-model__cta { font-size: 16.5px; }

	.partner-support h2 { font-size: 34px; }
	.partner-support__lead { font-size: 17px; }
	.partner-support .check-list li { font-size: 17px; }

	.partner-form__legend { font-size: 20px; }
	.partner-form .field label,
	.partner-form .field-label-as-legend { font-size: 14.5px; }
	.partner-form .field input,
	.partner-form .field textarea,
	.partner-form .field select { font-size: 16px; height: 52px; }
	.partner-form .phone-input { height: 52px; }
	.partner-form .phone-input__prefix { font-size: 16px; }
	.partner-radio__name { font-size: 17px; }
	.partner-radio__hint { font-size: 14.5px; }
	.partner-form__note { font-size: 14.5px; }

	.partner-sent-card__body { font-size: 17px; }
	.partner-sent-card__note { font-size: 15px; }
}
