/* ==== CORE TOKENS ==== */
:root {
	/* Brand palette */
	--igtd-black: #000000;
	--igtd-white: #ffffff;
	--igtd-gray-900: #0b0f0d;
	--igtd-gray-800: #111111;
	--igtd-gray-700: #1b1b1b;
	--igtd-gray-200: #e7e7e7;
	--igtd-gray-100: #f4f4f4;
	--igtd-muted: #bdbdbd;

	/* Primary green */
	--igtd-green: #2ecc50;
	--igtd-green-dark: #22b844;
	--igtd-green-soft: rgba(46, 204, 80, 0.12);

	/* Typography */
	--igtd-font-body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	--igtd-font-heading: "Merriweather", Georgia, "Times New Roman", serif;
	--igtd-font-signature: "Caveat", cursive;

	/* Layout */
	--igtd-radius-lg: 18px;
	--igtd-radius-md: 14px;
	--igtd-radius-sm: 12px;

	--igtd-shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.10);
	--igtd-shadow-md: 0 14px 40px rgba(0, 0, 0, 0.14);
	--igtd-shadow-lg: 0 20px 60px rgba(0, 0, 0, .16);

	--igtd-border: 1px solid rgba(0, 0, 0, 0.12);

	/* Fixed navbar space (adjust if needed) */
	--igtd-nav-height: 72px;
}

/* ==== BASE / RESETS (Bootstrap-friendly) ==== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	font-family: var(--igtd-font-body);
	color: var(--igtd-gray-900);
	background: var(--igtd-white);
}

/* Prevent content hiding behind fixed navbar */
body {
	padding-top: var(--igtd-nav-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--igtd-font-heading);
	color: var(--igtd-green);
}

a {
	text-decoration: none;
}

/* Visible focus (WCAG) */
:focus-visible {
	outline: 3px solid rgba(46, 204, 80, 0.55);
	outline-offset: 3px;
}

/* Custom spacing helper used in markup */
@media (min-width: 992px) {
	.py-lg-6 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}
}

/* ==== BRAND UTILITY CLASSES ==== */
.bg-igtd-light {
	background: var(--igtd-gray-100);
}

.bg-igtd-dark {
	background: var(--igtd-black);
}

.text-igtd-muted {
	color: rgba(0, 0, 0, 0.62) !important;
}

/* ==== BUTTON SYSTEM ==== */
.btn-igtd-primary {
	background: var(--igtd-green);
	color: var(--igtd-black);
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 0.2px;
	padding: 0.9rem 1.35rem;

	/* pressable bottom */
	box-shadow: 0 10px 0 var(--igtd-green-dark);

	transform: translateY(0);
	will-change: transform, box-shadow;
	transition:
		transform 200ms cubic-bezier(.2, .8, .2, 1),
		box-shadow 200ms cubic-bezier(.2, .8, .2, 1),
		filter 200ms ease,
		background-color 200ms ease,
		color 200ms ease;
}

.btn-igtd-primary:hover,
.btn-igtd-primary:focus {
	background: var(--igtd-green);
	color: var(--igtd-black);
	text-decoration: none;
	filter: brightness(1.02);

	transform: translateY(4px);
	box-shadow: 0 6px 0 var(--igtd-green-dark);
}

.btn-igtd-primary:active {
	background: var(--igtd-green);
	color: var(--igtd-black);
	transform: translateY(6px);
	box-shadow: 0 4px 0 var(--igtd-green-dark);
}

/* ====== NAVBAR ====== */
#navbar .navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background: var(--igtd-black);
	transition: transform 260ms ease;
	transform: translateY(0);
	will-change: transform;
	min-height: var(--igtd-nav-height);
}

#navbar .nav-link {
	color: var(--igtd-white);
	transition: color 160ms ease;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus {
	color: var(--igtd-green);
}

#navbar .dropdown-menu {
	background: var(--igtd-black) !important;
	border: none !important;
	box-shadow: none !important;
	margin-top: 0 !important;
	padding-top: 0.25rem;
	min-width: 10rem;
}

#navbar .dropdown-item {
	color: var(--igtd-white) !important;
}

#navbar .dropdown-item:hover,
#navbar .dropdown-item:focus {
	background: var(--igtd-green) !important;
	color: var(--igtd-black) !important;
}

/* Clean focus states */
#navbar .dropdown-toggle:focus,
#navbar .nav-link:focus,
#navbar .dropdown-item:focus,
#navbar .navbar-toggler:focus {
	outline: none !important;
	box-shadow: none !important;
}

/* Toggler icon (your X animation) */
.navbar-toggler-icon-custom {
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--igtd-white);
	position: relative;
	vertical-align: middle;
	transition: all 220ms ease;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
	content: "";
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background: var(--igtd-white);
	transition: all 220ms ease;
}

.navbar-toggler-icon-custom::before {
	top: -7px;
}

.navbar-toggler-icon-custom::after {
	top: 7px;
}

.navbar-toggler-icon-custom.open {
	background-color: transparent;
}

.navbar-toggler-icon-custom.open::before {
	transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-icon-custom.open::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* Show dropdown on hover only on desktop */
@media (min-width: 992px) {
	#navbar .dropdown:hover>.dropdown-menu {
		display: block;
	}
}

/* Tighten mobile link padding a touch */
@media (max-width: 575px) {
	#navbar .navbar-nav .nav-link {
		padding-left: .75rem;
		padding-right: .75rem;
	}
}

/* ========= HOME PAGE SECTIONS ========= */

/* ==== HERO ==== */
.hero-card {
	background: transparent;
	border-radius: var(--igtd-radius-lg);
	padding: 2.25rem;
}

.hero-title {
	font-size: clamp(1.75rem, 2.6vw, 3.35rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-wrap: balance;
	/* modern browsers; helps avoid ugly wrapping */
}

.hero-subtext {
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 56ch;
	/* keeps paragraph from stretching too wide */
}

/* --- image frame + "window" bar --- */
.hero-media-frame {
	border-radius: 22px;
	overflow: hidden;
	background: #fff;
	/* ensures the bar sits on a clean surface */
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: var(--igtd-shadow-lg);
}

.hero-media-bar {
	display: flex;
	align-items: center;
	gap: .45rem;
	padding: .85rem 1rem;
	background: rgba(0, 0, 0, .04);
	border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
}

.hero-media-img {
	display: block;
	width: 100%;
	height: auto;
}

.hero-client-name {
	margin-top: 0.85rem;
	text-align: center;
	font-family: var(--igtd-font-signature);
	font-size: clamp(1.75rem, 1.6vw, 1.75rem);
	line-height: 1;
	color: rgba(0, 0, 0, 0.70);
	letter-spacing: 0.02em;
	transform: rotate(-2deg);
}

/* Tablet & down: cap media size + improve spacing */
@media (max-width: 991.98px) {
	.hero-card {
		padding: 1.75rem;
	}

	.hero-subtext {
		margin-inline: auto;
	}

	.hero-media-frame {
		max-width: 560px;
		margin-inline: auto;
	}

	.hero-media-img {
		max-height: 520px;
		object-fit: cover;
	}
}

@media (max-width: 575.98px) {
	.hero-card {
		padding: 1.25rem;
	}

	.hero-title {
		font-size: clamp(1.65rem, 6.2vw, 2.15rem);
		line-height: 1.15;
	}

	.hero-subtext {
		font-size: 1rem;
		line-height: 1.7;
	}

	.btn-igtd-primary.btn-lg {
		font-size: 1rem;
		padding: 0.75rem 1.1rem;
		box-shadow: 0 8px 0 var(--igtd-green-dark);
	}
}

/* ==== BENEFITS (icon cards) ==== */
.benefits-section {
	background: var(--igtd-gray-100);
}

.benefits-heading {
	max-width: 760px;
}

.benefits-wrap {
	max-width: 1120px;
	margin-inline: auto;
}

.benefits-caption {
	font-weight: 800;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: rgba(0, 0, 0, 0.55);
}

.benefits-title {
	font-size: clamp(1.7rem, 2vw, 2.35rem);
}

.benefit-card {
	background: var(--igtd-white);
	border: 1px solid rgba(0, 0, 0, 0.10);
	border-radius: var(--igtd-radius-lg);
	padding: 1.75rem 1.5rem;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(46, 204, 80, 0.95), rgba(46, 204, 80, 0.25));
	opacity: 0.9;
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
	border-color: rgba(46, 204, 80, 0.35);
}

.benefit-card:focus-within {
	border-color: rgba(46, 204, 80, 0.55);
	box-shadow: 0 0 0 4px rgba(46, 204, 80, 0.18), 0 16px 40px rgba(0, 0, 0, 0.10);
}

.benefit-icon {
	width: 62px;
	height: 62px;
	border-radius: 18px;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	background: rgba(46, 204, 80, 0.10);
	border: 1px solid rgba(46, 204, 80, 0.25);
	color: var(--igtd-green);
	font-size: 1.75rem;
}

.benefit-card-title {
	margin-top: 0.25rem;
}

.benefit-card-text {
	color: rgba(0, 0, 0, 0.68);
	line-height: 1.6;
	max-width: 34ch;
	margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
	.benefit-card {
		transition: none;
	}

	.benefit-card:hover {
		transform: none;
	}
}

/* tighten on small screens */
@media (max-width: 575.98px) {
	.benefit-card {
		padding: 1.4rem 1.2rem;
	}

	.benefit-icon {
		width: 56px;
		height: 56px;
		border-radius: 16px;
		font-size: 1.6rem;
	}
}

/* ==== PROBLEM ==== */
.problem-title {
	font-size: clamp(1.55rem, 2vw, 2.15rem);
	max-width: 46rem;
	/* keeps line length clean */
}

.problem-points {
	max-width: 46rem;
	/* keeps bullets/text from stretching too wide */
}

.problem-points li {
	/* keeps spacing consistent */
	gap: 1rem;
}

.problem-dot {
	width: 12px;
	height: 12px;
	margin-top: 0.45rem;
	border-radius: 999px;
	background: var(--igtd-green);
	flex: 0 0 auto;
	animation: igtdPulse 1.7s ease-in-out infinite;
}

.problem-points li:nth-child(2) .problem-dot {
	animation-delay: 0.25s;
}

@keyframes igtdPulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(46, 204, 80, 0);
		opacity: 1;
	}

	50% {
		transform: scale(1.25);
		box-shadow: 0 0 0 10px rgba(46, 204, 80, 0.12);
		opacity: 0.95;
	}
}

.problem-text {
	color: rgba(0, 0, 0, 0.70);
	line-height: 1.75;
}

.problem-media-wrap {
	position: relative;
	border-radius: var(--igtd-radius-lg);
	overflow: visible;

	max-width: 620px;
	/* stops illustration from becoming huge */
	margin-inline: auto;
	/* centers it when stacked */
}

.problem-media-backplate {
	position: absolute;
	right: -22px;
	top: -22px;
	width: 86%;
	height: 86%;
	border-radius: var(--igtd-radius-lg);
	background: var(--igtd-green-soft);
	z-index: 0;
}

.problem-media-img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--igtd-radius-lg);
	border: var(--igtd-border);
	box-shadow: var(--igtd-shadow-sm);
}

@media (max-width: 991.98px) {

	.problem-title,
	.problem-points {
		margin-inline: auto;
		padding-inline: 0.75rem;
		/* prevents edge-to-edge text */
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.problem-title {
		text-align: center;
	}

	.problem-text {
		text-align: center;
	}

	/* centers bullet rows visually on tablet */
	.problem-points li {
		justify-content: center;
	}

	/* extra space between copy and image */
	.problem-media-col {
		margin-top: 1.75rem;
	}
}

@media (max-width: 575.98px) {
	.problem-title {
		text-align: left;
	}

	.problem-text {
		text-align: left;
	}
}

@media (min-width: 992px) {
	.problem-media-wrap {
		max-width: 720px;
	}
}

/* === FREE VIDEO SECTION === */
.free-video-section {
	background: var(--igtd-black);
	color: #ccc;
	text-align: center;
}

.free-video-section .section-title {
	color: var(--igtd-green);
	font-size: 2.3rem;
	font-weight: 700;
}

.free-video-section .section-description {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

/* Video Wrapper */
.video-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.video-thumbnail {
	width: 100%;
	border-radius: 12px;
	display: block;
}

/* Play Button */
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(46, 204, 80, 0.85);
	border: none;
	color: #fff;
	font-size: 3rem;
	padding: 15px 25px;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 2;
}

.play-button:hover {
	background: rgba(46, 204, 80, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

/* Video Overlay */
.video-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	z-index: 9999;
}

.video-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Video Container */
.video-container {
	position: relative;
	max-width: 800px;
	width: 90%;
}

.video-container video {
	width: 100%;
	border-radius: 12px;
}

/* Close Button */
.close-video {
	position: absolute;
	top: -18px;
	right: -18px;
	background: var(--igtd-green);
	border: none;
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	cursor: pointer;
	z-index: 2;
	transition: transform 0.3s ease;
}

.close-video:hover {
	transform: scale(1.1);
}

.video-cta {
	font-size: 1rem;
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.free-video-section .section-title {
		font-size: 2rem;
	}

	.play-button {
		font-size: 2.2rem;
		padding: 10px 18px;
	}

	.video-container {
		width: 95%;
	}
}

/* ====== WHAT'S INSIDE ====== */

/* Heading */
.inside-heading {
	max-width: 820px;
}

.inside-title {
	font-size: clamp(1.7rem, 2.2vw, 2.4rem);
}

.inside-intro {
	font-size: 1.05rem;
	line-height: 1.7;
}

/* Panel wrapper */
.inside-panel {
	background: var(--igtd-gray-100);
	border: var(--igtd-border);
	border-radius: var(--igtd-radius-lg);
}

/* Panel content */
.inside-panel-kicker {
	font-weight: 800;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: rgba(0, 0, 0, 0.55);
}

.inside-panel-title {
	font-size: clamp(1.15rem, 1.4vw, 1.35rem);
	line-height: 1.25;
}

.inside-panel-text {
	color: rgba(0, 0, 0, 0.70);
	line-height: 1.75;
}

/* Panel image (centered, controlled growth) */
.inside-panel-media {
	max-width: 420px;
	margin-inline: auto;
}

.inside-panel-img {
	display: block;
	width: 100%;
	height: auto;
	margin-inline: auto;
	border-radius: var(--igtd-radius-lg);
}

.inside-panel-cta {
	margin-top: 1.15rem;
	display: inline-block;
}

/* ====== CARD REUSE ====== */

.benefit-card {
	text-align: center;
}

.benefit-icon {
	margin-inline: auto;
}

.benefit-card-title,
.benefit-card-text {
	text-align: center;
	margin-inline: auto;
}

@media (max-width: 991.98px) {

	/* Center panel text on tablet */
	.inside-panel .col-lg-7 {
		text-align: center;
	}

	/* More breathing room between image and copy */
	.inside-panel .row {
		row-gap: 1.5rem;
	}

	.inside-panel-media {
		max-width: 360px;
	}

	.inside-panel {
		padding: 1.6rem !important;
	}
}

@media (max-width: 575.98px) {
	.inside-intro {
		font-size: 1rem;
	}

	.inside-panel-media {
		max-width: 320px;
	}
}

/* ==== PACKAGES ==== */
.packages-section .container-xxl {
	max-width: 1320px;
}

@media (max-width: 991.98px) {
	.packages-section .container-xxl {
		max-width: 760px;
	}
}

.package-card {
	background: var(--igtd-white);
	border: var(--igtd-border);
	border-radius: var(--igtd-radius-lg);
	box-shadow: var(--igtd-shadow-sm);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.package-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--igtd-shadow-md, 0 18px 40px rgba(0, 0, 0, 0.08));
}

.package-card-body {
	padding: 1.9rem 1.7rem;
}

.package-tag {
	font-weight: 800;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: rgba(0, 0, 0, 0.55);
}

.package-name {
	line-height: 1.15;
}

.package-list li {
	line-height: 1.65;
}

.package-check {
	color: var(--igtd-green);
	font-size: 1.15rem;
	margin-top: 0.2rem;
}

.package-card--featured {
	border: 1px solid rgba(46, 204, 80, 0.55);
	box-shadow: var(--igtd-shadow-md, 0 20px 50px rgba(46, 204, 80, 0.08));
}

@media (max-width: 991.98px) {
	.package-card-body {
		padding: 1.75rem 1.55rem;
	}

	.package-name,
	.package-tag {
		text-align: center;
	}

	.package-list {
		margin-top: 1rem !important;
	}
}

@media (max-width: 575.98px) {
	.package-card-body {
		padding: 1.6rem 1.35rem;
	}
}

/* ==== FAQ ==== */
.faq-heading {
	max-width: 820px;
}

.faq-title {
	font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

/* Accordion shell */
.faq-accordion {
	max-width: 980px;
	margin-inline: auto;
	--faq-radius: var(--igtd-radius-lg);
	--faq-border: rgba(0, 0, 0, 0.10);
	--faq-bg: #fff;
	--faq-open-bg: var(--igtd-green-soft);
	--faq-shadow: var(--igtd-shadow-sm);
}

.faq-accordion .accordion-item {
	border: 1px solid var(--faq-border);
	border-radius: var(--faq-radius);
	overflow: hidden;
	margin-bottom: 1rem;
	background: var(--faq-bg);
	box-shadow: var(--faq-shadow);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

/* Subtle hover polish */
.faq-accordion .accordion-item:hover {
	transform: translateY(-2px);
	border-color: rgba(46, 204, 80, 0.35);
	box-shadow: var(--igtd-shadow-md, 0 18px 40px rgba(0, 0, 0, 0.08));
}

/* Button reset + spacing */
.faq-accordion .accordion-button {
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1.25;
	padding: 1.15rem 1.25rem;
	background: transparent;
	color: var(--igtd-gray-900);
	box-shadow: none !important;
}

/* Remove Bootstrap focus glow and use a cleaner outline */
.faq-accordion .accordion-button:focus {
	outline: 2px solid rgba(46, 204, 80, 0.35);
	outline-offset: 2px;
	box-shadow: none !important;
}

/* Open state */
.faq-accordion .accordion-button:not(.collapsed) {
	background: var(--faq-open-bg);
	color: var(--igtd-gray-900);
	border-bottom: 1px solid rgba(46, 204, 80, 0.18);
}

/* Make the caret feel “designed” */
.faq-accordion .accordion-button::after {
	background-size: 1.15rem;
	transform: rotate(0deg);
	transition: transform 220ms ease;
	opacity: 0.9;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
}

/* Body */
.faq-accordion .accordion-body {
	padding: 1rem 1.25rem 1.25rem;
	color: rgba(0, 0, 0, 0.72);
	line-height: 1.75;
}

/* Tighter on mobile */
@media (max-width: 575.98px) {
	.faq-accordion .accordion-button {
		padding: 1.05rem 1.05rem;
		font-size: 1rem;
	}

	.faq-accordion .accordion-body {
		padding: 0.95rem 1.05rem 1.1rem;
	}
}

/* ==== FINAL CTA ==== */
.final-cta-section {
	position: relative;
	isolation: isolate;
	/* keeps pseudo-elements behind content cleanly */
	overflow: hidden;

	background: var(--igtd-black);
	color: var(--igtd-white);
}

/* Decorative blurred green circles */
.final-cta-section::before,
.final-cta-section::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(48px);
	opacity: 0.65;
	pointer-events: none;
	z-index: 0;
}

/* Top-left circle (partially visible) */
.final-cta-section::before {
	width: 340px;
	height: 340px;
	top: -170px;
	/* half outside */
	left: -170px;
	/* half outside */
	background: radial-gradient(circle at 30% 30%,
			rgba(46, 204, 80, 0.95),
			rgba(46, 204, 80, 0.35) 55%,
			rgba(46, 204, 80, 0.00) 75%);
}

/* Bottom-right circle (partially visible) */
.final-cta-section::after {
	width: 420px;
	height: 420px;
	bottom: -210px;
	/* half outside */
	right: -210px;
	/* half outside */
	background: radial-gradient(circle at 65% 65%,
			rgba(46, 204, 80, 0.90),
			rgba(46, 204, 80, 0.28) 55%,
			rgba(46, 204, 80, 0.00) 78%);
}

/* Keep content above the circles */
.final-cta-inner {
	position: relative;
	z-index: 1;
	max-width: 920px;
}

/* Title should NOT be green here */
.final-cta-title {
	color: var(--igtd-green);
	font-size: clamp(1.7rem, 2.2vw, 2.4rem);
	line-height: 1.15;
}

/* Copy */
.final-cta-text {
	color: rgba(255, 255, 255, 0.82);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.final-cta-ps {
	color: rgba(255, 255, 255, 0.72);
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

/* Slightly tighter on mobile */
@media (max-width: 575.98px) {
	.final-cta-section::before {
		width: 280px;
		height: 280px;
		top: -140px;
		left: -140px;
		filter: blur(42px);
	}

	.final-cta-section::after {
		width: 320px;
		height: 320px;
		bottom: -160px;
		right: -160px;
		filter: blur(42px);
	}
}

/* ====== Legal Pages ====== */
.legal-close {
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--igtd-green);
	font-size: 2rem;
	line-height: 1;
	padding: .35rem .55rem;
	border-radius: 999px;
	opacity: .9;
	transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.legal-close:hover,
.legal-close:focus {
	opacity: 1;
	transform: scale(1.06);
	background: rgba(46, 204, 80, 0.10);
	outline: none;
}

.legal-close:active {
	transform: scale(0.98);
}

.legal-link,
.legal-link:visited {
	color: var(--igtd-green);
	text-decoration: none;
}

.legal-link:hover,
.legal-link:focus {
	color: var(--igtd-green);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ====== Go Pro ====== */
.sales-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sales-badge {
	font-weight: 800;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	color: rgba(0, 0, 0, 0.55);
	text-transform: uppercase;
}

.sales-badge-pill {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(46, 204, 80, 0.12);
	border: 1px solid rgba(46, 204, 80, 0.25);
	color: var(--igtd-gray-900);
}

.sales-badge-sep {
	margin: 0 0.35rem;
	opacity: 0.6;
}

.sales-title {
	font-size: clamp(2rem, 2.6vw, 3.1rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.sales-subtitle {
	max-width: 72ch;
	margin-inline: auto;
	color: rgba(0, 0, 0, 0.70);
	line-height: 1.7;
}

.sales-transition-warning {
	color: #ff3b3b;
}

.sales-transition-arrow {
	margin-bottom: -0.3rem;
}

.sales-transition-subtitle {
	font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}

.sales-hero-media {
	max-width: 560px;
	margin-inline: auto;
}

.sales-hero-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--igtd-radius-lg);
}

.feature-section {
	position: relative;
}

.feature-row {
	max-width: 1180px;
	margin-inline: auto;
}

.feature-media {
	max-width: 560px;
	margin-inline: auto;
}

.feature-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--igtd-radius-lg);
}

.feature-title {
	font-size: clamp(1.9rem, 2.4vw, 2.8rem);
}

.feature-subtitle {
	font-size: clamp(1.05rem, 1.2vw, 1.35rem);
	color: var(--igtd-gray-900);
}

.feature-body p {
	color: rgba(0, 0, 0, 0.70);
	line-height: 1.75;
	margin-bottom: 1rem;
}

.pricing-title {
	font-size: clamp(1.9rem, 2.6vw, 3rem);
	line-height: 1.1;
}

.price-card {
	position: relative;
	/* ribbon anchors here */
	background: var(--igtd-white);
	border: 1px solid rgba(0, 0, 0, 0.10);
	border-radius: 22px;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: var(--igtd-shadow-md);
	transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--igtd-shadow-lg);
	border-color: rgba(46, 204, 80, 0.35);
}

.price-card-header {
	position: relative;
	padding: 1.15rem 1.25rem;
	text-align: center;
	overflow: visible;
	/* ribbon can visually overlap header/body */
}

.price-card-header.basic {
	background: linear-gradient(180deg, #23292f 0%, #14181b 100%);
	color: var(--igtd-white);
}

.price-card-header.pro {
	background: linear-gradient(180deg, #33e05a 0%, var(--igtd-green) 100%);
	color: var(--igtd-black);
}

.price-card-name {
	font-weight: 900;
	letter-spacing: 0.2px;
	font-size: 1.25rem;
	color: inherit;
}

/* Badge */
.price-card-badge {
	position: absolute;
	left: 50%;
	top: -14px;
	transform: translateX(-50%);
	z-index: 50;
	pointer-events: none;
}

.price-card-badge-text {
	display: inline-block;
	padding: .32rem .75rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #ff3b3b 0%, #c40012 100%);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .68rem;
	line-height: 1;
	white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, .18);
}

@media (max-width:575.98px) {
	.price-card-badge {
		top: -12px;
	}

	.price-card-badge-text {
		font-size: .62rem;
		padding: .3rem .65rem;
	}
}

/* Body */
.price-card-body {
	padding: 1.75rem 1.6rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	flex: 1 1 auto;
}

.price-card-pricewrap {
	text-align: center;
	padding-bottom: .75rem;
}

.price-card-price {
	font-family: var(--igtd-font-heading);
	font-weight: 900;
	font-size: clamp(2.0rem, 2.2vw, 2.6rem);
	letter-spacing: -0.02em;
	color: var(--igtd-green);
}

.price-card-price.pro {
	color: var(--igtd-gray-900);
}

.price-card-sub {
	font-weight: 700;
	color: rgba(0, 0, 0, 0.55);
	margin-top: .2rem;
}

/* List */
.price-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price-card-list li {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	padding: 0.9rem .15rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	color: rgba(0, 0, 0, 0.72);
	line-height: 1.45;
}

.price-card-list li:last-child {
	border-bottom: 0;
}

.price-card-list i {
	color: var(--igtd-green);
	margin-top: .15rem;
	flex: 0 0 auto;
}

/* Featured */
.price-card.featured {
	border-color: rgba(46, 204, 80, 0.45);
	box-shadow: 0 22px 70px rgba(46, 204, 80, 0.14), var(--igtd-shadow-md);
}

/* Mobile spacing */
@media (max-width: 575.98px) {
	.price-card-body {
		padding: 1.45rem 1.2rem 1.25rem;
	}
}

/* ====== FOOTER ====== */
#footer {
	background: var(--igtd-black);
	color: var(--igtd-white);
	font-size: 0.95rem;
	line-height: 1.6;
}

#footer .footer-links a {
	color: var(--igtd-white);
	text-decoration: none;
	display: inline-block;
	transition: color 0.25s ease, transform 0.25s ease;
}

#footer .footer-links a:hover {
	color: var(--igtd-green);
	transform: translateX(5px);
}

#footer .footer-links li+li {
	margin-top: 0.5rem;
}

#footer .footer-links i {
	color: var(--igtd-green);
}

#footer h5,
#footer h6 {
	font-weight: 600;
	margin-bottom: 1rem;
}

#footer .brand-img {
	max-width: 230px;
	height: auto;
}

#footer .footer-description {
	color: #ccc;
	font-size: 0.9rem;
	max-width: 400px;
	margin: 0 auto;
}

#footer small {
	font-size: 0.85rem;
	color: var(--igtd-white);
}

@media (max-width: 991px) {
	#footer .footer-section .row {
		text-align: center;
	}

	#footer .footer-section .col-md-5 {
		margin-bottom: 2rem;
	}

	#footer .footer-links {
		text-align: center;
	}
}