/* === Pink-only Button Theme (override Bootstrap defaults) === */
:root {
	--pink: #ff2d6c;
	--pink-50: rgba(255, 45, 108, 0.05);
	--pink-100: rgba(255, 45, 108, 0.1);
	--pink-200: rgba(255, 45, 108, 0.16);
}

/* Solid primary */
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--pink);
	--bs-btn-border-color: var(--pink);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #ff3a76; /* slightly deeper pink */
	--bs-btn-hover-border-color: #ff3a76;
	--bs-btn-focus-shadow-rgb: 255, 45, 108;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #e72963; /* pressed state */
	--bs-btn-active-border-color: #e72963;
	--bs-btn-disabled-bg: var(--pink-200);
	--bs-btn-disabled-border-color: var(--pink-200);
}

/* Outline primary */
.btn-outline-primary {
	--bs-btn-color: var(--pink);
	--bs-btn-border-color: var(--pink);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--pink);
	--bs-btn-hover-border-color: var(--pink);
	--bs-btn-focus-shadow-rgb: 255, 45, 108;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #e72963;
	--bs-btn-active-border-color: #e72963;
	--bs-btn-disabled-color: var(--pink-200);
	--bs-btn-disabled-border-color: var(--pink-200);
	background-color: transparent;
}

/* Optional: subtle glow on keyboard focus */
.btn-primary:focus-visible,
.btn-outline-primary:focus-visible {
	box-shadow: 0 0 0 0.2rem var(--pink-100), 0 0 0 0.4rem var(--pink-200);
}

/* Optional: soft hover lift (matches the page cards) */
.btn {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
	transform: translateY(-1px);
}

/* ===== Page Base ===== */
.font-family-rubic {
	font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.aesthetic-text {
	color: #ff2d6c !important;
}

/* Light pinks derived from #ff2d6c (used subtly for UI accents) */
:root {
	--pink: #ff2d6c;
	--pink-50: rgba(255, 45, 108, 0.05);
	--pink-100: rgba(255, 45, 108, 0.1);
	--pink-200: rgba(255, 45, 108, 0.16);
	--border: rgba(0, 0, 0, 0.08);
	--ink: #1f1f1f;
	--muted: #6b7280;
	--radius-xl: 18px;
	--radius-lg: 14px;
	--radius-md: 12px;
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.section:first-child {
	padding: 60px 0 30px 0;
}

.container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 16px;
}

/* ===== Typography ===== */
.page-title {
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
	color: var(--ink);
}

.lead {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	color: var(--muted);
	max-width: 68ch;
	margin: 0.25rem 0 0;
}

.section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	margin: 0 0 1rem;
	color: var(--ink);
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: "";
	display: block;
	height: 3px;
	width: 72%;
	margin-top: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pink) 0%, var(--pink-200) 100%);
}

.section-intro {
	color: var(--muted);
	max-width: 78ch;
	margin-bottom: 1.5rem;
}

/* ===== Hero ===== */
.section-hero {
	background: linear-gradient(0deg, var(--pink-50), transparent);
	border-bottom: 1px solid var(--border);
}

/* ===== Grid Utilities ===== */
.grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
}

.cards-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlights-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1rem;
}

/* ===== Feature Cards ===== */
.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease,
		border-color 0.25s ease;
	overflow: hidden;
}

.card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--pink-200);
}

.card-head {
	padding: 16px 18px 0;
}

.card-body {
	padding: 14px 18px 18px;
	color: var(--muted);
}

.badge {
	display: inline-block;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--pink-50);
	border: 1px solid var(--pink-200);
}

/* ===== Why Choose (highlights) ===== */
.highlight {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px 18px 16px;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.25s ease, box-shadow 0.25s ease,
		transform 0.25s ease;
}

.highlight:hover {
	border-color: var(--pink-200);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.highlight-title {
	margin: 0 0 8px;
	font-size: 1.05rem;
	letter-spacing: 0.2px;
	color: var(--ink);
}

/* ===== FAQs ===== */
.section-faqs .faq-list {
	display: grid;
	gap: 10px;
	margin-top: 8px;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: #fff;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
	border-color: var(--pink-200);
	box-shadow: var(--shadow-sm);
}

.faq-item > summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 16px;
	position: relative;
	font-weight: 600;
	color: var(--ink);
}

.faq-item > summary::-webkit-details-marker {
	display: none;
}

.faq-item > summary::after {
	content: "+";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
	color: var(--pink);
}

.faq-item[open] > summary::after {
	content: "–";
}

.faq-a {
	padding: 0 16px 14px;
	color: var(--muted);
	border-top: 1px dashed var(--pink-100);
}

/* Bullet list inside FAQ answers */
.bullet-list {
	padding: 8px 0 2px 22px;
	margin: 0;
}

.bullet-list li {
	margin: 6px 0;
}

/* ===== CTA ===== */
.section-cta .cta-wrap {
	border: 1px solid var(--pink-200);
	background: linear-gradient(0deg, var(--pink-50), #fff);
	border-radius: var(--radius-xl);
	padding: clamp(1rem, 2.5vw, 1.5rem);
	display: grid;
	gap: 10px;
	align-items: center;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.section-cta .cta-title {
	margin: 0;
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	color: var(--ink);
}

.section-cta .cta-text {
	margin: 0 auto;
	color: var(--muted);
	max-width: 65ch;
}

.section-cta .cta-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== Media Queries ===== */
@media (max-width: 1100px) {
	.cards-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.cards-3,
	.highlights-2 {
		grid-template-columns: 1fr;
	}

	.section:first-child {
		padding: 1.75rem 0 0.75rem 0;
	}

	.section-title::after {
		width: 56%;
	}

	.faq-item > summary {
		padding-right: 44px;
	}
}

/* ===== Nice focus states for accessibility ===== */
a,
button,
.faq-item > summary {
	outline: none;
}

a:focus-visible,
button:focus-visible,
.faq-item > summary:focus-visible {
	box-shadow: 0 0 0 3px var(--pink-100), 0 0 0 6px var(--pink-200);
	border-radius: 10px;
}

/* ===== Small utilities (optional) ===== */
.muted {
	color: var(--muted);
}
.sep {
	height: 1px;
	background: var(--border);
	margin: 12px 0;
}
