/* ==========================================================================
   Grease Trap landing page — one-off stylesheet
   Loads ONLY on /landing/grease-trap (via layout page_css hook).
   Every rule is scoped under body.gt-landing; main.css still styles the
   shared header, footer, testimonial block, and brands slider.
   Fonts come from main.css @font-face (Helvetica Neue LT Pro).
   ========================================================================== */

body.gt-landing {
	--gt-blue: #006EB6;
	--gt-band: #006EB6B3;
	--gt-blue-bright: #4cb4e7;
	--gt-ink: #4d4d4d;
	--gt-gray: #4d4d4d;
	--gt-green: #99c221;
	--gt-radius: 10px;
	font-family: 'HelveticaNeueLTPro-Roman', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: var(--gt-ink);
	background: #fff;
}

body.gt-landing .footer,
body.gt-landing .top {
	display: none !important;
}

html:has(body.gt-landing) {
	scroll-behavior: smooth;
}

body.gt-landing .gt-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* ---------- Type ---------- */

body.gt-landing .gt h1,
body.gt-landing .gt h2,
body.gt-landing .gt h3 {
	font-family: 'HelveticaNeueLTPro-Bd', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: normal;
	margin: 0 0 18px;
	text-transform: none;
}

body.gt-landing .gt-eyebrow {
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 18px;
	letter-spacing: normal;
	text-transform: uppercase;
	color: var(--gt-blue) !important;
	width: min(100%, 500px);
	margin: 0 0 28px;
	padding: 10px 18px 8px;
	border: 2px solid var(--gt-blue);
	border-radius: 9px;
}

body.gt-landing .gt-section {
	padding: 80px 0;
}

body.gt-landing .gt-section-header {
	max-width: none;
	margin: 0 0 46px;
	text-align: left;
}

body.gt-landing .gt-section-header h2 {
	font-size: 30px;
	line-height: 1.2;
	color: var(--gt-blue);
}

body.gt-landing .gt-section-header p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--gt-gray);
	margin: 0;
}

body.gt-landing .gt-section-header .gt-eyebrow {
	font-size: 18px;
	line-height: 1.2;
	margin: 0 0 28px;
	letter-spacing: normal;
}

/* Dark sections */
body.gt-landing .gt-dark {
	background: #fff;
	color: var(--gt-ink);
}

body.gt-landing .gt-dark .gt-section-header h2 {
	color: var(--gt-blue);
}

body.gt-landing .gt-dark .gt-section-header p {
	color: var(--gt-gray);
}

/* ---------- Hero ---------- */

body.gt-landing .header {
	background:
		linear-gradient(rgba(0, 111, 183, 0.88), rgba(0, 111, 183, 0.88)),
		url('/images/uploads/grease-trap/water-droplets.jpg') center / cover no-repeat;
}

body.gt-landing .gt-hero {
	background: #fff;
	color: var(--gt-ink);
	/* .header is position:absolute + 145px tall — hero content must clear it */
	padding: 220px 0 80px;
}

body.gt-landing .gt-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 460px);
	gap: 56px;
	align-items: start;
}

body.gt-landing .gt-hero-copy h1 {
	font-size: 30px;
	line-height: 1.2;
	color: var(--gt-blue);
	margin-bottom: 22px;
}

body.gt-landing .gt-hero-intro {
	font-size: 18px;
	line-height: 1.65;
	color: var(--gt-gray);
	margin: 0 0 30px;
	max-width: 96%;
}

body.gt-landing .gt-hero-intro strong {
	color: #333;
}

body.gt-landing .gt-hero-checks {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.gt-landing .gt-hero-checks li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 18px;
	padding: 9px 0;
}

/* Icon art is white line-work on the design's circular blue chips. */
body.gt-landing .gt-hero-checks img {
	width: 70px;
    height: 70px;
	flex: 0 0 70px;
	background: var(--gt-blue);
	border-radius: 50%;
	padding: 4px;
}

/* Hero form card */
body.gt-landing .gt-hero-form {
	scroll-margin-top: 110px;
}

body.gt-landing .gt-form-card {
	background: #eef1f5;
	border: 1px solid #d7dce2;
	border-radius: 10px;
	padding: 0;
	color: var(--gt-ink);
	overflow: hidden;
}

/* ---------- Stats bar ---------- */

body.gt-landing .gt-stats {
	background: var(--gt-blue);
	padding: 34px 0;
}

body.gt-landing .gt-stats ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

body.gt-landing .gt-stats li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 20px;
	text-align: center;
	padding: 6px 16px;
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

body.gt-landing .gt-stats li:first-child {
	border-left: none;
}

body.gt-landing .gt-stats strong {
	display: block;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-weight: normal;
	font-size: 34px;
	color: #fff;
	margin-bottom: 4px;
}

body.gt-landing .gt-stats span {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	line-height: 19px;
}

/* ---------- Brands slider (page-scoped tweaks over main.css) ---------- */

body.gt-landing .gt-brands {
	padding: 55px 0 40px;
	border-top: none;
	background: #fff;
}

body.gt-landing .gt-brands h2 {
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 26px;
	color: var(--gt-gray);
	text-align: left;
	margin-bottom: 18px;
}

body.gt-landing .gt-brands .brands-slider {
	background: #fff;
	padding-left: 38px;
	padding-right: 38px;
}

body.gt-landing .gt-brands .brands-slider img {
	max-height: 85px;
	max-width: 75%;
	width: auto;
	object-fit: contain;
}

/* ---------- Cards ---------- */

body.gt-landing .gt-cards {
	display: grid;
	gap: 24px;
}

body.gt-landing .gt-cards-5 {
	grid-template-columns: repeat(5, 1fr);
}

body.gt-landing .gt-cards-3 {
	grid-template-columns: repeat(3, 1fr);
}

body.gt-landing .gt-card {
	background: #fff;
	border: 2px solid var(--gt-band);
	border-radius: var(--gt-radius);
	padding: 28px 22px;
	text-align: center;
	color: var(--gt-ink);
}

/* White line-art icons sit on the design's circular blue chips. */
body.gt-landing .gt-card > img {
	width: 70px;
	height: 70px;
	padding: 4px;
	background: var(--gt-band);
	border-radius: 50%;
	margin-bottom: 20px;
}

body.gt-landing .gt-card h3 {
	font-size: 18px;
	line-height: 19px;
	color: #4d4d4d;
	margin-bottom: 20px;
}

body.gt-landing .gt-card p {
	font-size: 18px;
	line-height: 1.2;
	color: var(--gt-gray);
	margin: 0;
}

body.gt-landing .gt-card p a {
	color: var(--gt-blue);
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	text-decoration: none;
}

/* What-you-get uses the white, blue-outline treatment from the design. */
body.gt-landing .gt-services {
	background: #fff;
}

body.gt-landing .gt-services .gt-card {
	background: #fff;
	box-shadow: none;
	border: 2px solid var(--gt-band);
}

body.gt-landing .gt-services .gt-card h3 {
	color: var(--gt-ink);
}

/* The cost section is the design's solid-blue section with white cards. */
body.gt-landing .gt-real-cost {
	background: var(--gt-band);
}

body.gt-landing .gt-real-cost .gt-eyebrow {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.8);
}

body.gt-landing .gt-real-cost .gt-section-header h2,
body.gt-landing .gt-real-cost .gt-section-header p {
	color: #fff;
}

body.gt-landing .gt-real-cost .gt-card {
	background: #fff;
	border-color: #fff;
	color: var(--gt-ink);
}

body.gt-landing .gt-real-cost .gt-card h3 {
	color: var(--gt-ink);
}

body.gt-landing .gt-real-cost .gt-card p {
	color: var(--gt-gray);
}

body.gt-landing .gt-real-cost .gt-card > img {
	background: var(--gt-band);
}

/* Numbered guarantee cards */
body.gt-landing .gt-card-num {
	text-align: left;
}

body.gt-landing .gt-card-num > img {
	width: 70px;
	height: 70px;
	margin-bottom: 30px;
}

body.gt-landing .gt-card-num h3 span {
	color: var(--gt-blue);
}

body.gt-landing .gt-card-num ul {
	margin: 14px 0 0;
	padding: 0 0 0 2px;
	list-style: none;
}

body.gt-landing .gt-card-num ul li {
	position: relative;
	padding: 4px 0 4px 26px;
	font-size: 16px;
	line-height: 1.3;
	color: var(--gt-gray);
}

body.gt-landing .gt-card-num ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 7px;
	width: 15px;
	height: 15px;
	/* background: url('/images/uploads/grease-trap/icons/icon-check.png') center / contain no-repeat; */
}

/* Industry cards */
body.gt-landing .gt-card-industry {
	display: grid;
	grid-template-columns: 52px 1fr;
	grid-template-rows: auto 1fr auto;
	text-align: left;
	padding: 0;
	overflow: hidden;
}

body.gt-landing .gt-card-industry > img {
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	z-index: 1;
	width: 42px;
	height: 42px;
	margin: 0 0 0 16px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

body.gt-landing .gt-card-industry h3 {
	grid-column: 1 / -1;
	grid-row: 1;
	margin: 0;
	padding: 17px 18px 15px 70px;
	background: var(--gt-blue);
	color: #fff;
}

body.gt-landing .gt-card-industry p {
	grid-column: 1 / -1;
	padding: 22px 20px;
	margin: 0;
}

body.gt-landing .gt-card-link {
	grid-column: 1 / -1;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 18px;
	color: #fff;
	background: var(--gt-blue);
	border-radius: 4px;
	padding: 8px 12px 6px;
	margin: 0 20px 18px;
	text-decoration: none;
}

body.gt-landing .gt-card-link::after {
	content: '';
}

body.gt-landing .gt-card-link:hover {
	text-decoration: underline;
}

/* ---------- Callouts ---------- */

body.gt-landing .gt-callout {
	position: relative;
	margin-top: 34px;
	background: transparent;
	border: 0;
	padding: 10px 0 10px 100px;
	text-align: left;
}

body.gt-landing .gt-real-cost .gt-callout::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 80px;
	height: 80px;
	background: url('/images/uploads/grease-trap/icons/icon-emergency-2.png') center / contain no-repeat;
	transform: translateY(-50%);
}

body.gt-landing .gt-callout p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
}

body.gt-landing .gt-callout strong {
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-weight: normal;
	color: #fff;
}

body.gt-landing .gt-advantage {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-top: 44px;
	background: transparent;
	border-radius: 0;
	padding: 0;
}

body.gt-landing .gt-advantage > img {
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

body.gt-landing .gt-advantage h3 {
	font-size: 18px;
	line-height: 28px;
	color: var(--gt-blue);
	margin-bottom: 20px;
}

body.gt-landing .gt-advantage p {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	color: var(--gt-gray);
}

body.gt-landing .gt-advantage-light {
	background: transparent;
}

body.gt-landing .gt-advantage-light > img {
	background: transparent;
	width: 100px;
	height: 100px;
	flex: 0 0 100px;
}

body.gt-landing .gt-advantage-light h3 {
	color: var(--gt-blue);
}

body.gt-landing .gt-advantage-light p {
	color: var(--gt-gray);
}

body.gt-landing .gt-fine-print {
	margin: 26px auto 0;
	max-width: none;
	text-align: left;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--gt-gray);
}

/* ---------- Comparison ---------- */

body.gt-landing .gt-different {
	background: #fff;
	color: var(--gt-ink);
}

body.gt-landing .gt-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

body.gt-landing .gt-compare-col {
	background: #eef1f4;
	border: 2px solid #d7dce2;
	border-radius: var(--gt-radius);
	overflow: hidden;
	padding: 20px;
}
body.gt-landing .gt-compare-col.gt-compare-us {
	border-color: var(--gt-blue);
}

body.gt-landing .gt-compare-col h3 {
	margin: 0 0 8px;
	padding: 12px 16px 10px;
	font-size: 15px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-align: left;
	background: transparent;
	border: 2px solid;
	border-radius: 8px;
}

body.gt-landing .gt-compare-them h3 {
	background: transparent;
	border-color: #c7ccd1;
	color: var(--gt-gray);
}

body.gt-landing .gt-compare-us h3 {
	background: transparent;
	border-color: var(--gt-blue);
	color: var(--gt-blue);
}

body.gt-landing .gt-compare-col ul {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	background: transparent;
}

body.gt-landing .gt-compare-col ul li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 6px;
	font-size: 16px;
	line-height: 1.45;
	border-top: 1px solid rgba(0, 48, 135, 0.08);
}

body.gt-landing .gt-compare-col ul li:first-child {
	border-top: none;
}

body.gt-landing .gt-compare-col ul li img {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
}

body.gt-landing .gt-compare-them ul li {
	color: var(--gt-gray);
}

body.gt-landing .gt-compare-us ul li {
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	color: var(--gt-ink);
}

/* ---------- CTA bands ---------- */

body.gt-landing .gt-cta-band {
	background: var(--gt-band);
}

body.gt-landing .gt-cta-band-alt {
	background: var(--gt-band);
}

body.gt-landing .gt-cta-band-light {
	background: #fff;
}

body.gt-landing .gt-cta-band-light .gt-cta-copy h2 {
	color: var(--gt-blue);
}

body.gt-landing .gt-cta-band-light .gt-cta-copy p {
	color: var(--gt-gray);
}

body.gt-landing .gt-cta-band-light .gt-btn-primary {
	background: var(--gt-blue);
	border-color: var(--gt-blue);
	color: #fff;
}

body.gt-landing .gt-cta-band-light .gt-btn-ghost {
	border-color: var(--gt-blue);
	color: var(--gt-blue);
}

/* body.gt-landing .gt-cta-band-light .gt-btn-ghost:hover {
	border-color: var(--gt-blue);
	color: var(--gt-blue);
	background-color: rgba(0, 110, 182, 0.2);
} */

body.gt-landing .gt-cta-band .gt-container {
	padding-top: 64px;
	padding-bottom: 64px;
}

body.gt-landing .gt-cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 46%) 1fr;
	gap: 60px;
	align-items: center;
}

body.gt-landing .gt-cta-photo {
	height: 340px;
	border-radius: var(--gt-radius);
	overflow: hidden;
}

body.gt-landing .gt-cta-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body.gt-landing .gt-cta-copy {
	color: #fff;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

body.gt-landing .gt-cta-copy h2 {
	font-size: 30px;
	line-height: 1.2;
	color: #fff;
}

body.gt-landing .gt-cta-copy p {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 28px;
}

/* ---------- Buttons ---------- */

body.gt-landing .gt-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

body.gt-landing .gt-btn {
	display: inline-block;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	border-radius: 12px;
	padding: 16px 30px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.gt-landing .gt-btn-primary {
	background: #fff;
	color: var(--gt-blue);
	border: 2px solid #fff;
}

body.gt-landing .gt-btn-primary:hover {
	background: var(--gt-green);
	border-color: var(--gt-green);
	color: white;
}

body.gt-landing .gt-btn-ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.7);
}

body.gt-landing .gt-btn-ghost:hover {
	background: var(--gt-green);
	border-color: var(--gt-green);
	color: white;
}

body.gt-landing .gt-final-cta .gt-btn-primary {
	background: #fff;
	border-color: #fff;
	color: var(--gt-blue);
}

body.gt-landing .gt-final-cta .gt-btn-primary:hover {
	background: var(--gt-green);
	border-color: var(--gt-green);
	color: white;
}

/* ---------- Testimonial (page-scoped tweaks over main.css) ---------- */

body.gt-landing .gt-testimonial blockquote::before {
	content: '';
	display: block;
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	background: url('/images/uploads/grease-trap/icons/icon-quote.png') center / contain no-repeat;
	filter: brightness(0) invert(1);
	opacity: 0.85;
}

body.gt-landing .gt-testimonial blockquote p {
	font-size: 32px;
	line-height: 1.45;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

body.gt-landing .gt-testimonial blockquote cite {
	color: #cde9fa;
}

body.gt-landing .gt-testimonial {
	background:
		linear-gradient(rgba(0, 111, 183, 0.9), rgba(0, 111, 183, 0.9)),
		url('/images/uploads/grease-trap/water-droplets.jpg') center / cover no-repeat;
}

/* ---------- Final bands ---------- */

body.gt-landing .gt-final-band {
	background:
		linear-gradient(rgba(0, 111, 183, 0.9), rgba(0, 111, 183, 0.9)),
		url('/images/uploads/grease-trap/water-droplets.jpg') center / cover no-repeat;
	color: #fff;
	text-align: center;
	padding: 76px 0;
}

body.gt-landing .gt-final-band h2 {
	font-size: 32px;
	line-height: 1.25;
	color: #fff;
	margin: 0 auto 16px;
}

body.gt-landing .gt-final-band p {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 720px;
	margin: 0 auto 30px;
}

body.gt-landing .gt-final-band .gt-btn-row {
	justify-content: center;
}

/* body.gt-landing .gt-final-band .gt-btn-ghost {
	background: #fff;
	border-color: #fff;
	color: var(--gt-blue);
} */

body.gt-landing .gt-final-cta {
	background: var(--gt-blue);
	text-align: center;
	padding: 76px 0;
}

body.gt-landing .gt-final-cta h2 {
	font-size: 32px;
	color: #fff;
	margin-bottom: 12px;
}

body.gt-landing .gt-final-cta p {
	font-size: 18px;
	color: #fff;
	margin: 0 0 22px;
}

body.gt-landing .gt-phone {
	display: block;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 44px;
	color: #fff;
	text-decoration: none;
	margin-bottom: 26px;
}

body.gt-landing .gt-final-cta .gt-btn-row {
	justify-content: center;
}

/* ---------- SEO strip ---------- */

body.gt-landing .gt-seo-strip {
	background: #3c5896;
	padding: 16px 0;
}

body.gt-landing .gt-seo-strip p {
	margin: 0;
	text-align: center;
	font-size: 16px;
	line-height: 28px;
	color: white;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	body.gt-landing .gt-hero-copy h1 {
		font-size: 36px;
	}

	body.gt-landing .gt-cards-5 {
		grid-template-columns: repeat(3, 1fr);
	}

	body.gt-landing .gt-cta-copy {
		padding: 44px 40px;
	}

	body.gt-landing .gt-cta-copy h2 {
		font-size: 25px;
	}
}

@media (max-width: 1024px) {
	body.gt-landing .gt-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	body.gt-landing .gt-hero-form {
		max-width: 520px;
	}

	body.gt-landing .gt-cards-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	body.gt-landing .gt-compare {
		grid-template-columns: 1fr;
	}

	body.gt-landing .gt-cta-grid {
		grid-template-columns: 1fr;
	}

	body.gt-landing .gt-cta-photo {
		height: auto;
		max-height: 320px;
		overflow: hidden;
	}

	body.gt-landing .gt-stats ul {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 22px;
	}

	body.gt-landing .gt-stats li:nth-child(4) {
		border-left: none;
	}
}

/* The shared header changes from 145px to 100px at this breakpoint. */
@media (max-width: 850px) {
	body.gt-landing .gt-hero {
		padding-top: 132px;
	}
}

@media (max-width: 640px) {
	body.gt-landing .gt-section {
		padding: 56px 0;
	}

	body.gt-landing .gt-hero {
		padding: 132px 0 56px;
	}

	body.gt-landing .gt-hero-copy h1 {
		font-size: 30px;
	}

	body.gt-landing .gt-section-header h2 {
		font-size: 27px;
	}

	body.gt-landing .gt-cards-5,
	body.gt-landing .gt-cards-3 {
		grid-template-columns: 1fr;
	}

	body.gt-landing .gt-advantage {
		flex-direction: column;
		padding: 0;
	}

	/* 2x2 grid of the first four stats, with the fifth centered below */
	body.gt-landing .gt-stats ul {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 0;
	}

	body.gt-landing .gt-stats li {
		border-left: none;
		border-top: none;
		padding: 24px 16px;
	}

	/* vertical divider between the two columns (rows 1–2) */
	body.gt-landing .gt-stats li:nth-child(2),
	body.gt-landing .gt-stats li:nth-child(4) {
		border-left: 1px solid rgba(255, 255, 255, 0.22);
	}

	/* horizontal dividers between the rows */
	body.gt-landing .gt-stats li:nth-child(3),
	body.gt-landing .gt-stats li:nth-child(4),
	body.gt-landing .gt-stats li:nth-child(5) {
		border-top: 1px solid rgba(255, 255, 255, 0.22);
	}

	/* fifth stat spans the full width, centered below the 2x2 block */
	body.gt-landing .gt-stats li:nth-child(5) {
		grid-column: 1 / -1;
	}

	body.gt-landing .gt-testimonial blockquote p {
		font-size: 24px;
	}

	body.gt-landing .gt-final-band h2,
	body.gt-landing .gt-final-cta h2 {
		font-size: 26px;
	}

	body.gt-landing .gt-phone {
		font-size: 34px;
	}

	body.gt-landing .gt-btn {
		width: 100%;
	}

	body.gt-landing .gt-cta-copy {
		padding: 36px 24px 44px;
	}
}

@media (max-width: 480px) {
	body.gt-landing .gt-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	body.gt-landing .gt-eyebrow,
	body.gt-landing .gt-section-header .gt-eyebrow {
		font-size: 11px;
		letter-spacing: 1.5px;
		padding: 9px 12px 7px;
	}

	body.gt-landing .gt-form-card {
		/* padding: 24px 18px 20px; */
	}

	body.gt-landing .gt-hero-checks li {
		font-size: 15px;
	}

	body.gt-landing .gt-cta-photo {
		max-height: 240px;
	}
}

/* ---------- Quote modal ---------- */

body.gt-landing .gt-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

body.gt-landing .gt-modal.is-open {
	display: flex;
}

body.gt-landing.gt-modal-open {
	overflow: hidden;
}

body.gt-landing .gt-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 40, 0.65);
}

body.gt-landing .gt-modal-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(560px, 100%);
	max-height: 90vh;
	background: #eef1f5;
	border-radius: 10px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

body.gt-landing .gt-modal-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
}

body.gt-landing .gt-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-family: 'HelveticaNeueLTPro-Bd', sans-serif;
	font-size: 26px;
	line-height: 1;
	color: var(--gt-ink);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d7dce2;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.gt-landing .gt-modal-close:hover,
body.gt-landing .gt-modal-close:focus {
	background: var(--gt-green);
	border-color: var(--gt-green);
	color: #fff;
}
