/* Tender Academy landing page - specific styles on top of FreeTools.css */

/* Hero: deeper gradient + larger headline */
.ta-hero {
	background: linear-gradient(135deg, #0a2540 0%, #1e40af 60%, #2563eb 100%);
	padding: 5rem 0 5rem;
}
.ta-hero-h1 {
	font-size: 3rem;
	line-height: 1.15;
	font-weight: 800;
	margin-bottom: 1.25rem;
	color: #fff;
}
.ta-hero-lead {
	color: rgba(255,255,255,0.92);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.15rem;
}
.ta-hero-footnote {
	color: rgba(255,255,255,0.75);
	font-size: 0.875rem;
}
.ta-cta-hero {
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
	.ta-hero { padding: 3rem 0; }
	.ta-hero-h1 { font-size: 2rem; }
	.ta-hero-lead { font-size: 1rem; }
}

/* §1.5 intro - quiet kicker right under the hero */
.ta-intro-text {
	font-size: 1.3rem;
	line-height: 1.6;
	color: #1f2937;
	margin-bottom: 0;
}
.ta-intro-text strong {
	color: #0f172a;
}
@media (max-width: 768px) {
	.ta-intro-text { font-size: 1.1rem; }
}

/* Warning band for §2 cost-of-doing-nothing */
.ta-band-warning {
	background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
}
.ref-pill-red {
	background: #fee2e2 !important;
	color: #991b1b !important;
}

/* Prose: comfortable reading width and rhythm */
.ta-prose {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #1f2937;
}
.ta-prose p {
	margin-bottom: 1.1rem;
}
.ta-prose em {
	color: #4b5563;
	font-style: italic;
}
.ta-prose strong {
	color: #0f172a;
}
.ta-prose-light, .ta-prose-light p, .ta-prose-light strong, .ta-prose-light em {
	color: rgba(255,255,255,0.92);
}
.ta-prose-light em { color: rgba(255,255,255,0.75); }

/* Callout line at the end of §2 and §3 */
.ta-callout {
	border-left: 4px solid #1e40af;
	padding: 0.75rem 0 0.75rem 1rem;
	font-size: 1.1rem;
	font-weight: 500;
	color: #0f172a;
	background: rgba(30, 64, 175, 0.04);
	border-radius: 0 0.5rem 0.5rem 0;
}

/* Reusable list with subtle markers */
.ta-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.ta-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.6rem;
	line-height: 1.5;
}
.ta-list li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	top: 0;
	color: #16a34a;
	font-weight: 700;
}

/* §8 comparison table */
.ta-comparison {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	overflow: hidden;
	margin-top: 1.5rem;
}
.ta-comparison-row {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas: "label value" "note note";
	gap: 0.5rem 1.5rem;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #f1f5f9;
	align-items: baseline;
}
.ta-comparison-row:last-child { border-bottom: none; }
.ta-comparison-label {
	grid-area: label;
	font-size: 1.05rem;
	font-weight: 600;
	color: #0f172a;
}
.ta-comparison-value {
	grid-area: value;
	font-size: 1.25rem;
	font-weight: 700;
	color: #6b7280;
	white-space: nowrap;
}
.ta-comparison-note {
	grid-area: note;
	font-size: 0.9rem;
	color: #6b7280;
	margin-top: 0.1rem;
}
.ta-comparison-winner {
	background: linear-gradient(90deg, #ecfdf5 0%, #d1fae5 100%);
	position: relative;
}
.ta-comparison-winner .ta-comparison-label,
.ta-comparison-winner .ta-comparison-note {
	color: #064e3b;
}
.ta-comparison-price {
	color: #047857;
	font-size: 1.75rem;
}
.ta-comparison-price-detail {
	font-size: 0.8rem;
	font-weight: 600;
	color: #047857;
	display: block;
	margin-top: -0.25rem;
}

/* §10 final call band */
.ta-band-final {
	background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
	padding: 5rem 0;
}
.ta-final-line {
	font-size: 1.35rem;
	color: #fde68a !important;
	margin-top: 1.5rem;
}

/* Sticky CTA bar */
.ta-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.97);
	backdrop-filter: blur(6px);
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 0.75rem 0;
	z-index: 1030;
	transform: translateY(120%);
	transition: transform 0.25s ease;
	box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
}
.ta-sticky-cta.is-visible {
	transform: translateY(0);
}
.ta-sticky-cta-text {
	color: #fff;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.ta-sticky-cta-headline {
	font-size: 1rem;
}
.ta-sticky-cta-price {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.7);
}

@media (max-width: 576px) {
	.ta-sticky-cta-headline { font-size: 0.9rem; }
	.ta-sticky-cta-price { font-size: 0.75rem; }
}

/* Promo pricing treatment (struck-through list price + promo price) */
.ta-cta-was {
	text-decoration: line-through;
	opacity: 0.55;
	font-weight: 600;
	margin-right: 0.2rem;
}
.ta-hero-promo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
}
.ta-promo-pill {
	background: #fde047;
	color: #713f12;
	border-radius: 999px;
	padding: 0.3rem 0.85rem;
	font-weight: 700;
	font-size: 0.9rem;
}
.ta-promo-prices {
	color: rgba(255,255,255,0.92);
	font-size: 1.1rem;
}
.ta-promo-prices s {
	opacity: 0.6;
	margin-right: 0.3rem;
}
.ta-promo-prices strong {
	color: #fde047;
	font-size: 1.2rem;
}
.ta-comparison-was {
	color: #6b7280;
	opacity: 0.75;
	font-size: 0.6em;
	font-weight: 600;
	margin-right: 0.25rem;
}
