/* CSDC landing-page shared styles.
   Loaded by paid-ad landing pages (veneers-offer first; the other offer
   pages adopt the same structure later). Structure mirrors the approved
   lead-form reference: two-column hero (copy + Call/WhatsApp duo | calendar),
   trust strip, treatment visual, live review widget, repeated CTA, FAQ.
   The red/green .cta-duo itself is styled in Content/style.css (shared theme). */

/* ---- Tighter section rhythm on landing pages (base .section is 150px) ----
   Does not affect .section.cta (higher specificity, padding:0 preserved). */
.section {
	padding-top: 55px;
	padding-bottom: 55px;
}

/* ---- Hero: two-column (copy + duo left, calendar right) ---- */
.offer-hero {
	padding: 50px 0;
}

.offer-hero__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.offer-hero__copy {
	flex: 1;
	max-width: 560px;
}

.offer-hero__title {
	font-size: 44px;
	line-height: 1.15;
	color: #1a1a1a;
	margin: 0 0 18px;
}

.offer-hero__lead {
	font-size: 18px;
	line-height: 1.6;
	color: #495057;
	margin: 0 0 26px;
}

.offer-hero__copy .cta-duo {
	justify-content: flex-start;
}

.offer-hero__calendar {
	flex: 1;
	max-width: 500px;
	width: 100%;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
	overflow: hidden;
}

/* ---- Trust strip ---- */
.offer-trust {
	background: #f8f9fa;
	border-top: 1px solid #e9ecef;
	border-bottom: 1px solid #e9ecef;
	padding: 26px 0;
}

.offer-trust__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 22px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.offer-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.offer-trust__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(178, 3, 6, .1);
	color: #B20306;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex: none;
}

.offer-trust__text {
	font-size: 15px;
	font-weight: 500;
	color: #495057;
}

/* ---- Treatment visual + copy ---- */
.offer-treatment {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.offer-treatment__media {
	flex: 1;
	max-width: 460px;
}

.offer-treatment__img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}

.offer-treatment__copy {
	flex: 1;
	text-align: left;
}

/* ---- Review widget (live GHL reputation reviews) ---- */
.offer-reviews .lc_reviews_widget {
	width: 100%;
	min-width: 100%;
	border: none;
}

/* ---- Second CTA card (repeated conversion opportunity) ---- */
.second-cta-wrapper {
	background: #fff;
	padding: 50px 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
	border: 2px solid #f7f7f7;
	position: relative;
	overflow: hidden;
	max-width: 760px;
	margin: 0 auto;
}

.second-cta-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #B20306, #e74c3c);
}

.second-cta-wrapper h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #2c3e50;
}

.second-cta-wrapper p {
	font-size: 18px;
	color: #6c757d;
	margin: 0 auto 26px;
	max-width: 600px;
	line-height: 1.6;
}

.second-cta-wrapper .cta-duo {
	margin-top: 24px;
}

/* ---- FAQ accordion ---- */
.faq-section {
	padding: 55px 0;
	border-top: 1px solid #f1f3f4;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 15px;
	margin-bottom: 20px;
	overflow: hidden;
	transition: all .3s ease;
}

.faq-item:hover {
	border-color: #B20306;
	box-shadow: 0 5px 20px rgba(178, 3, 6, .1);
}

.faq-question {
	padding: 25px 30px;
	background: #fff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all .3s ease;
}

.faq-question:hover {
	background: #fcfcfc;
}

.faq-question h4 {
	color: #2c3e50;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.faq-toggle {
	width: 30px;
	height: 30px;
	background: #B20306;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	transition: transform .3s ease;
	line-height: 1;
	flex: none;
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.faq-item.active .faq-answer {
	padding: 10px 30px 25px;
	max-height: 320px;
}

.faq-item.active .faq-question {
	background: #fdfdfd;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer p {
	color: #6c757d;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* ---- Responsive ---- */
@media screen and (max-width:991px) {
	.section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.offer-hero__grid,
	.offer-treatment {
		flex-direction: column;
	}

	.offer-hero__copy,
	.offer-hero__calendar,
	.offer-treatment__media,
	.offer-treatment__copy {
		max-width: 100%;
		width: 100%;
	}

	.offer-hero__copy {
		text-align: center;
	}

	.offer-hero__copy .cta-duo {
		justify-content: center;
	}

	.offer-hero__title {
		font-size: 32px;
	}

	.second-cta-wrapper {
		padding: 40px 20px;
	}

	.second-cta-wrapper h2 {
		font-size: 26px;
	}

	.faq-section {
		padding: 60px 0;
	}
}

@media screen and (max-width:767px) {
	.offer-hero__title {
		font-size: 26px;
	}

	.offer-hero__lead {
		font-size: 16px;
	}

	.offer-trust__item{
		width: 70%;
	}

	.offer-treatment__copy {
		text-align: center;
	}

	.faq-question {
		padding: 20px;
	}

	.faq-question h4 {
		font-size: 16px;
	}
}
/* ============================================================
   Conversion-hero enhancements — 2026-07-20 client reference.
   Background-image hero, trust pill, red-accent H1, Google/ISO/
   Canadian proof row, and benefit cards.

   TWO INDEPENDENT SYSTEMS, TWO BODY CLASSES:
   - .lp-hero  = the hero VISUAL system (background image, sizing,
     enlarged H1, calendar shadow). Applied to EVERY conversion
     page — the offer pages AND the service/appointments pages.
   - .lp-paid  = the compact/minimized header (hide nav links +
     burger, show only logo + Call/WhatsApp; mobile burger panel).
     Applied to the OFFER pages ONLY. Service/appointments pages
     keep the full shared navbar, so they carry .lp-hero WITHOUT
     .lp-paid. (Offer pages carry BOTH: "lp-hero lp-paid".)

   Pages that share .offer-hero markup but carry neither class are
   unaffected. Each page sets its own image via the --hero-bg
   custom property. Reuses the global red/green .cta-duo.
   ============================================================ */

html {
	scroll-behavior: smooth;
}

/* ---- Background-image hero (.lp-hero — all conversion pages) ---- */
.lp-hero .offer-hero {
	position: relative;
	padding: 0;
	background-color: #eef1f4;
	background-image:
		linear-gradient(90deg, #ffffff 0%, #ffffff 33%, rgba(255, 255, 255, .82) 44%, rgba(255, 255, 255, .22) 57%, rgba(255, 255, 255, 0) 72%),
		var(--hero-bg, none);
	background-repeat: no-repeat, no-repeat;
	background-position: left center, center right;
	background-size: cover, cover;
	overflow: hidden;
}

.lp-hero .offer-hero__grid {
	min-height: 560px;
	padding: 56px 0;
	gap: 64px;
}

.lp-hero .offer-hero__copy {
	position: relative;
	z-index: 1;
}

.lp-hero .offer-hero__calendar {
	box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
}

.lp-hero .offer-hero__title {
	font-size: 56px;
	line-height: 1.08;
	margin-bottom: 20px;
}

.lp-hero .offer-hero__lead {
	font-size: 19px;
	max-width: 470px;
}

/* Trust pill above the H1 */
.offer-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	margin: 0 0 20px;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
	font-size: 13px;
	font-weight: 500;
	color: #495057;
	line-height: 1.3;
}

.offer-hero__pill i {
	color: #B20306;
}

/* Optional eyebrow */
.offer-hero__eyebrow {
	display: inline-block;
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #B20306;
}

/* Red highlight phrase inside the H1 */
.offer-hero__title-accent {
	color: #B20306;
}

/* Red primary "Book" button (scrolls to the in-hero calendar;
   href="#appointments", so no Call tracking — tracker is href-based). */
.cta-duo__btn--book {
	border: 1px solid var(--primary, #B20306);
	background-color: var(--primary, #B20306);
	color: #fff;
}

.cta-duo__btn--book:hover {
	background-color: transparent;
	color: var(--primary, #B20306);
}

/* Offset deep-link/scroll target so the calendar top isn't clipped */
.offer-hero__calendar {
	scroll-margin-top: 100px;
}

/* ---- Proof row (Google reviews / International standards / Canadian) ---- */
.offer-hero__proof {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 34px;
	margin-top: 30px;
}

.offer-hero__proof-item {
	display: flex;
	align-items: center;
	gap: 11px;
}

.offer-hero__proof-gicon {
	display: inline-flex;
	flex: none;
}

.offer-hero__proof-icon {
	color: #B20306;
	font-size: 26px;
	display: inline-flex;
	flex: none;
}

.offer-hero__proof-text {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 600;
	color: #37424c;
	line-height: 1.3;
}

.offer-hero__proof-stars {
	color: #f5a623;
	font-size: 15px;
	letter-spacing: 1px;
}

/* ---- Benefit cards (directly below the hero) ---- */
.offer-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.offer-benefits__card {
	background: #fff;
	border: 1px solid #eef0f2;
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
	text-align: left;
}

.offer-benefits__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(178, 3, 6, .08);
	color: #B20306;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 16px;
}

.offer-benefits__title {
	font-size: 17px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 8px;
}

.offer-benefits__text {
	font-size: 14px;
	line-height: 1.55;
	color: #6c757d;
	margin: 0;
}

/* ---- Compact paid header (page-scoped via body.lp-paid) ----
   The shared Webflow nav menu is hidden entirely; desktop keeps logo +
   Call/WhatsApp (no burger); mobile keeps logo + burger, and the burger
   toggles the self-contained .lp-mobile-menu Call/WhatsApp dropdown that
   landing-page.js appends to <body> (fixed, z-index:9999). No change to
   navbar.html or the loader. */
.lp-paid .nav-menu-wrap {
	display: none !important;
}

.lp-paid .nav-menu-btns-wrap {
	position: relative;
}

/* Self-contained mobile Call/WhatsApp dropdown (built by landing-page.js) */
.lp-mobile-menu {
	display: none;
	position: fixed;
	top: 68px;
	right: 14px;
	width: 230px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
	padding: 14px;
	z-index: 9999;
}

.lp-mobile-menu.lp-open {
	display: block;
}

.lp-mobile-menu .cta-duo {
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.lp-mobile-menu .cta-duo__btn {
	flex: none;
	width: 100%;
	max-width: none;
}

@media screen and (min-width:992px) {
	.lp-paid .menu-button {
		display: none !important;
	}

	.lp-mobile-menu {
		display: none !important;
	}
}

@media screen and (max-width:991px) {
	.lp-paid .cta-duo--nav {
		display: none !important;
	}
}

/* ---- Conversion-hero responsive ---- */
@media screen and (max-width:991px) {
	/* Mobile: drop the photo background for readability (the
	   treatment close-up below the fold carries mobile imagery). */
	.lp-hero .offer-hero {
		background-image: none;
		background-color: #f4f6f8;
	}

	.lp-hero .offer-hero__grid {
		min-height: auto;
		padding: 36px 0;
	}

	.offer-hero__proof {
		justify-content: center;
	}

	.offer-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

@media screen and (max-width:479px) {
	.offer-benefits__grid {
		grid-template-columns: 1fr;
	}
}
