/* Plan 180 Campaign Toolkit — front-end styles */

:root {
	--p180t-teal: #0e9488;
	--p180t-teal-dark: #0a6e66;
	--p180t-cyan: #22d3ee;
	--p180t-ink: #0b1b1e;
	--p180t-radius: 18px;
}

/* Buttons */
.p180t-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.p180t-btn--primary {
	background: linear-gradient(135deg, var(--p180t-teal), var(--p180t-cyan));
	color: #fff !important;
}

.p180t-btn--outline {
	border: 2px solid var(--p180t-teal);
	color: var(--p180t-teal-dark) !important;
	background: transparent;
}

.p180t-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -10px rgba(14, 148, 136, 0.55);
}

.p180t-btn--sm {
	padding: 0.45rem 1.1rem;
	font-size: 0.9rem;
}

.p180t-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1rem 0;
}

/* Countdown */
.p180t-countdown {
	text-align: center;
	margin: 1.5rem 0;
}

.p180t-countdown-inner {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.p180t-count-unit {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(6, 40, 43, 0.08);
	border-radius: var(--p180t-radius);
	box-shadow: 0 6px 24px -8px rgba(6, 40, 43, 0.14);
	padding: 1rem 1.25rem;
	min-width: 88px;
	display: flex;
	flex-direction: column;
}

.p180t-count-num {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(120deg, var(--p180t-teal-dark), var(--p180t-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-variant-numeric: tabular-nums;
}

.p180t-count-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	opacity: 0.7;
}

.p180t-count-caption {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.75;
}

/* Cards / grid */
.p180t-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.p180t-card {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(6, 40, 43, 0.08);
	border-radius: var(--p180t-radius);
	box-shadow: 0 6px 24px -8px rgba(6, 40, 43, 0.14);
	padding: 1.5rem;
	margin: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p180t-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 44px -12px rgba(14, 148, 136, 0.35);
}

.p180t-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--p180t-teal-dark);
	background: rgba(14, 148, 136, 0.1);
	border-radius: 999px;
	padding: 0.3rem 0.8rem;
	margin-bottom: 0.6rem;
}

.p180t-card h3 {
	margin: 0.35rem 0 0.5rem;
	font-size: 1.15rem;
}

.p180t-more {
	font-weight: 600;
	color: var(--p180t-teal-dark);
	text-decoration: none;
}

.p180t-quote footer {
	margin-top: 0.75rem;
}

.p180t-role {
	display: block;
	font-size: 0.85rem;
	opacity: 0.7;
}

/* Q&A accordion */
.p180t-qa details {
	background: #fff;
	border: 1px solid rgba(6, 40, 43, 0.09);
	border-radius: 14px;
	padding: 1rem 1.25rem;
	margin-bottom: 0.75rem;
}

.p180t-qa details[open] {
	border-color: rgba(14, 148, 136, 0.4);
	box-shadow: 0 6px 24px -8px rgba(6, 40, 43, 0.14);
}

.p180t-qa summary {
	cursor: pointer;
	font-weight: 600;
}

.p180t-qa-answer {
	padding-top: 0.5rem;
}

/* Events */
.p180t-events {
	display: grid;
	gap: 1rem;
	margin: 1.5rem 0;
}

.p180t-event {
	display: flex;
	gap: 1rem;
	align-items: center;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(6, 40, 43, 0.08);
	border-radius: var(--p180t-radius);
	padding: 1rem 1.25rem;
	box-shadow: 0 6px 24px -8px rgba(6, 40, 43, 0.1);
}

.p180t-event-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	min-height: 64px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--p180t-teal), var(--p180t-cyan));
	color: #fff;
}

.p180t-event-day {
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1;
}

.p180t-event-month {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.p180t-event-info h3 {
	margin: 0 0 0.2rem;
	font-size: 1.05rem;
}

.p180t-event-meta {
	margin: 0;
	font-size: 0.88rem;
	opacity: 0.75;
}

/* Contact card */
.p180t-contact-card {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(6, 40, 43, 0.08);
	border-radius: var(--p180t-radius);
	box-shadow: 0 6px 24px -8px rgba(6, 40, 43, 0.14);
	padding: 1.75rem;
	margin: 1.5rem 0;
}

.p180t-contact-card h3 {
	margin: 0 0 0.25rem;
}

.p180t-tagline {
	opacity: 0.7;
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
}

.p180t-contact-card a {
	text-decoration: none;
	color: var(--p180t-teal-dark);
	line-height: 1.9;
}

/* Sticky CTA bar */
.p180t-sticky {
	position: fixed;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: rgba(6, 40, 43, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff;
	border-radius: 999px;
	padding: 0.6rem 0.75rem 0.6rem 1.25rem;
	box-shadow: 0 18px 44px -12px rgba(6, 40, 43, 0.6);
	max-width: calc(100vw - 2rem);
}

.p180t-sticky.is-hidden {
	display: none;
}

.p180t-sticky-text {
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
}

.p180t-sticky-buttons {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.p180t-sticky .p180t-btn--outline {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff !important;
}

.p180t-sticky-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
}

.p180t-sticky-close:hover {
	color: #fff;
}

@media (max-width: 560px) {
	.p180t-sticky-text { display: none; }
}
