*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
	--blue-600: #2563EB;
	--blue-700: #1E40AF;
	--blue-800: #1E3A8A;
	--blue-900: #1E2D5B;
	--blue-950: #0F172A;
	--blue-100: #DBEAFE;
	--blue-50: #EFF6FF;
	--orange-500: #F97316;
	--orange-600: #EA580C;
	--orange-400: #FB923C;
	--slate-900: #0F172A;
	--slate-800: #1E293B;
	--slate-700: #334155;
	--slate-500: #64748B;
	--slate-400: #94A3B8;
	--slate-300: #CBD5E1;
	--slate-200: #E2E8F0;
	--slate-100: #F1F5F9;
	--slate-50: #F8FAFC;
	--white: #FFFFFF;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--shadow-md: 0 4px 12px rgba(0,0,0,0.08);
	--shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
	--shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--slate-800);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--slate-200);
	transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
	max-width: 1200px; margin: 0 auto;
	padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between;
	height: 72px;
}
.nav-logo {
	display: flex; align-items: center; gap: 10px;
	text-decoration: none;
}
.nav-logo svg { height: 40px; width: auto; }
.nav-logo-img {
	height: 40px;
	width: auto;
}
.footer-logo-img {
	height: 36px;
	width: auto;
	background: rgba(255,255,255,0.9);
	border-radius: 8px;
	padding: 6px 12px;
}
.nav-logo-text {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 22px;
	letter-spacing: -0.3px;
}
.nav-logo-text .blue { color: var(--blue-600); }
.nav-logo-text .dark { color: var(--slate-800); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
	text-decoration: none; color: var(--slate-700);
	font-weight: 500; font-size: 15px;
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-600); }
.nav-links a.btn-primary { color: var(--white); }
.nav-links a.btn-primary:hover { color: var(--white); }
.nav-links a.btn-outline { color: var(--blue-600); }
.nav-links a.btn-outline:hover { color: var(--white); }
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 12px 28px; border-radius: 50px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600; font-size: 15px;
	text-decoration: none; cursor: pointer;
	border: none; transition: all 0.25s;
}
.btn-primary {
	background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
	color: var(--white);
	box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(37,99,235,0.45);
}
.btn-orange {
	background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
	color: var(--white);
	box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.btn-orange:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(249,115,22,0.45);
}
.btn-outline {
	background: transparent;
	color: var(--blue-600);
	border: 2px solid var(--blue-600);
}
.btn-outline:hover {
	background: var(--blue-600);
	color: var(--white);
}
.btn-ghost {
	background: rgba(255,255,255,0.15);
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
	background: rgba(255,255,255,0.25);
}

/* ---- HERO ---- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex; align-items: center;
	background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-800) 40%, var(--blue-700) 70%, var(--blue-600) 100%);
	overflow: hidden;
	padding: 120px 24px 80px;
}
.hero::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 800px 600px at 15% 80%, rgba(249,115,22,0.15), transparent),
		radial-gradient(ellipse 600px 400px at 85% 20%, rgba(96,165,250,0.2), transparent);
}
.hero-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}
.hero-inner {
	position: relative; z-index: 2;
	max-width: 1200px; margin: 0 auto; width: 100%;
	display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50px;
	padding: 6px 16px 6px 8px;
	margin-bottom: 24px;
	animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: #22C55E;
	animation: pulse 2s infinite;
}
.hero-badge span {
	font-size: 13px; font-weight: 500;
	color: rgba(255,255,255,0.8);
	letter-spacing: 0.5px;
}
.hero h1 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 800; font-size: clamp(40px, 5vw, 64px);
	line-height: 1.08;
	color: var(--white);
	margin-bottom: 20px;
	animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .orange { color: var(--orange-400); }
.hero-sub {
	font-size: 19px; line-height: 1.65;
	color: rgba(255,255,255,0.7);
	max-width: 520px;
	margin-bottom: 36px;
	animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
	display: flex; gap: 16px; flex-wrap: wrap;
	animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
	display: flex; gap: 40px;
	margin-top: 48px;
	animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat-val {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 36px;
	color: var(--white);
}
.hero-stat-label {
	font-size: 14px; color: rgba(255,255,255,0.5);
	font-weight: 500;
}
.hero-visual {
	display: flex; justify-content: center; align-items: center;
	animation: fadeUp 0.8s 0.3s ease both;
}
.hero-phone {
	width: 320px; height: 520px;
	background: linear-gradient(165deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 36px;
	padding: 16px;
	backdrop-filter: blur(10px);
	box-shadow: 0 30px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
	position: relative;
	overflow: hidden;
}
.hero-phone-notch {
	width: 120px; height: 28px;
	background: var(--blue-950);
	border-radius: 0 0 16px 16px;
	margin: 0 auto 20px;
}
.hero-phone-screen {
	background: rgba(0,0,0,0.2);
	border-radius: 20px;
	padding: 24px 20px;
	height: calc(100% - 48px);
	display: flex; flex-direction: column; gap: 16px;
}
.phone-caller {
	text-align: center; padding: 16px 0;
}
.phone-caller-avatar {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
	margin: 0 auto 12px;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 28px;
	color: var(--white);
}
.phone-caller-name {
	color: var(--white); font-weight: 600; font-size: 18px;
}
.phone-caller-number {
	color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 4px;
}
.phone-caller-status {
	color: #22C55E; font-size: 13px; font-weight: 500; margin-top: 8px;
}
.phone-wave {
	display: flex; align-items: center; justify-content: center;
	gap: 3px; height: 48px; margin-top: auto;
}
.phone-wave-bar {
	width: 4px; border-radius: 4px;
	background: var(--orange-400);
	animation: wave 1.2s ease-in-out infinite;
}
.phone-wave-bar:nth-child(1) { height: 16px; animation-delay: 0s; }
.phone-wave-bar:nth-child(2) { height: 28px; animation-delay: 0.1s; }
.phone-wave-bar:nth-child(3) { height: 40px; animation-delay: 0.2s; }
.phone-wave-bar:nth-child(4) { height: 32px; animation-delay: 0.3s; }
.phone-wave-bar:nth-child(5) { height: 24px; animation-delay: 0.4s; }
.phone-wave-bar:nth-child(6) { height: 36px; animation-delay: 0.5s; }
.phone-wave-bar:nth-child(7) { height: 20px; animation-delay: 0.6s; }
.phone-wave-bar:nth-child(8) { height: 30px; animation-delay: 0.7s; }
.phone-actions {
	display: flex; justify-content: center; gap: 20px; margin-top: 16px;
}
.phone-action-btn {
	width: 56px; height: 56px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.phone-action-btn.end { background: #EF4444; }
.phone-action-btn.mute { background: rgba(255,255,255,0.15); }
.phone-action-btn.speaker { background: rgba(255,255,255,0.15); }

/* ---- SECTIONS ---- */
.section {
	padding: 100px 24px;
}
.section-inner {
	max-width: 1200px; margin: 0 auto;
}
.section-label {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 13px;
	letter-spacing: 3px; text-transform: uppercase;
	color: var(--orange-500);
	margin-bottom: 12px;
}
.section-title {
	font-family: 'Exo 2', sans-serif;
	font-weight: 800; font-size: clamp(32px, 4vw, 48px);
	line-height: 1.15;
	color: var(--slate-900);
	margin-bottom: 16px;
}
.section-sub {
	font-size: 18px; color: var(--slate-500);
	max-width: 600px; line-height: 1.7;
}

/* ---- FEATURES ---- */
.features-bg { background: var(--slate-50); }
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 56px;
}
.feature-card {
	background: var(--white);
	border: 1px solid var(--slate-200);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.feature-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--blue-600), var(--orange-500));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
	border-color: transparent;
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.feature-icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: var(--blue-50);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
	font-size: 26px;
}
.feature-card:nth-child(even) .feature-icon {
	background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.15));
}
.feature-card h3 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 20px;
	color: var(--slate-900);
	margin-bottom: 10px;
}
.feature-card p {
	color: var(--slate-500); font-size: 15px; line-height: 1.65;
}

/* ---- COMPARISON ---- */
.comparison-wrapper { margin-top: 56px; overflow-x: auto; }
.comparison-table {
	width: 100%; border-collapse: separate; border-spacing: 0;
	border: 1px solid var(--slate-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	font-size: 15px;
}
.comparison-table thead th {
	background: var(--slate-900);
	color: var(--white);
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 16px;
	padding: 20px 24px;
	text-align: left;
}
.comparison-table thead th:first-child {
	width: 34%;
}
.comparison-table tbody td {
	padding: 16px 24px;
	border-bottom: 1px solid var(--slate-100);
	color: var(--slate-700);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--blue-50); }
.comparison-table .check {
	color: var(--blue-600); font-weight: 700; font-size: 18px;
}
.comparison-table .cross {
	color: var(--slate-300); font-size: 18px;
}
.comparison-table .feat-label {
	font-weight: 600; color: var(--slate-800);
}

/* ---- PRICING ---- */
.pricing-bg {
	background: linear-gradient(180deg, var(--white), var(--blue-50));
}
.pricing-toggle {
	display: flex; align-items: center; justify-content: center;
	gap: 16px; margin-top: 32px; margin-bottom: 48px;
}
.pricing-toggle span {
	font-weight: 600; font-size: 15px; color: var(--slate-500);
}
.pricing-toggle span.active { color: var(--slate-900); }
.toggle-track {
	width: 52px; height: 28px;
	background: var(--blue-600);
	border-radius: 50px;
	position: relative; cursor: pointer;
	transition: background 0.3s;
}
.toggle-thumb {
	width: 22px; height: 22px;
	background: var(--white);
	border-radius: 50%;
	position: absolute;
	top: 3px; left: 3px;
	transition: transform 0.3s;
	box-shadow: var(--shadow-sm);
}
.toggle-track.annual .toggle-thumb { transform: translateX(24px); }
.pricing-toggle span.pricing-save {
	background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
	color: var(--white);
	font-size: 12px; font-weight: 700;
	padding: 3px 10px;
	border-radius: 50px;
	letter-spacing: 0.5px;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	align-items: start;
}
.price-card {
	background: var(--white);
	border: 1px solid var(--slate-200);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	position: relative;
	transition: all 0.3s;
}
.price-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.price-card.featured {
	border: 2px solid var(--blue-600);
	box-shadow: var(--shadow-xl);
	transform: scale(1.03);
}
.price-card.featured:hover {
	transform: scale(1.03) translateY(-4px);
}
.price-popular {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
	color: var(--white);
	font-size: 12px; font-weight: 700;
	padding: 5px 20px;
	border-radius: 50px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.price-name {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 22px;
	color: var(--slate-900);
	margin-bottom: 4px;
}
.price-desc {
	color: var(--slate-500); font-size: 14px; margin-bottom: 24px;
}
.price-amount {
	display: flex; align-items: baseline; gap: 4px;
	margin-bottom: 8px;
}
.price-currency {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 24px;
	color: var(--slate-800);
}
.price-number {
	font-family: 'Exo 2', sans-serif;
	font-weight: 800; font-size: 56px;
	line-height: 1;
	color: var(--slate-900);
}
.price-period {
	color: var(--slate-400); font-size: 15px; font-weight: 500;
}
.price-billed {
	color: var(--slate-400); font-size: 13px; margin-bottom: 28px;
}
.price-features {
	list-style: none;
	display: flex; flex-direction: column; gap: 12px;
	margin-bottom: 32px;
}
.price-features li {
	display: flex; align-items: center; gap: 10px;
	font-size: 14px; color: var(--slate-700);
}
.price-features li::before {
	content: '✓';
	display: flex; align-items: center; justify-content: center;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: var(--blue-50);
	color: var(--blue-600);
	font-weight: 700; font-size: 12px;
	flex-shrink: 0;
}
.price-card.featured .price-features li::before {
	background: var(--blue-600);
	color: var(--white);
}
.price-card .btn { width: 100%; }

/* ---- CTA ---- */
.cta-section {
	background: linear-gradient(160deg, var(--blue-950), var(--blue-800));
	position: relative; overflow: hidden;
}
.cta-section::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 600px 400px at 20% 80%, rgba(249,115,22,0.12), transparent),
		radial-gradient(ellipse 500px 300px at 80% 20%, rgba(96,165,250,0.15), transparent);
}
.cta-inner {
	position: relative; z-index: 2;
	text-align: center;
}
.cta-inner .section-title { color: var(--white); }
.cta-inner .section-sub {
	color: rgba(255,255,255,0.6);
	margin: 0 auto 40px;
}
.cta-actions {
	display: flex; gap: 16px;
	justify-content: center; flex-wrap: wrap;
}
.cta-phone {
	margin-top: 28px;
	font-size: 15px;
	color: rgba(255,255,255,0.6);
}
.cta-phone a {
	color: var(--orange-400);
	font-weight: 600;
	text-decoration: none;
}
.cta-phone a:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
.footer {
	background: var(--slate-900);
	padding: 64px 24px 32px;
}
.footer-inner {
	max-width: 1200px; margin: 0 auto;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 48px;
}
.footer-brand p {
	color: var(--slate-400);
	font-size: 14px; line-height: 1.7;
	margin-top: 16px; max-width: 280px;
}
.footer-contact a {
	color: var(--slate-400);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col h4 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 14px;
	letter-spacing: 1.5px; text-transform: uppercase;
	color: var(--slate-400);
	margin-bottom: 20px;
}
.footer-col a {
	display: block;
	color: var(--slate-400);
	text-decoration: none;
	font-size: 14px;
	padding: 4px 0;
	transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 24px;
	display: flex; justify-content: center; align-items: center;
}
.footer-bottom p {
	color: var(--slate-500); font-size: 13px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
@keyframes wave {
	0%, 100% { transform: scaleY(0.5); }
	50% { transform: scaleY(1); }
}
.fade-in {
	opacity: 0; transform: translateY(30px);
	transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
	opacity: 1; transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
	.hero-inner { grid-template-columns: 1fr; text-align: center; }
	.hero-sub { margin-left: auto; margin-right: auto; }
	.hero-actions { justify-content: center; }
	.hero-stats { justify-content: center; }
	.hero-visual { display: none; }
	.pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
	.price-card.featured { transform: none; }
	.price-card.featured:hover { transform: translateY(-4px); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 640px) {
	/* No mobile menu — the anchor links are section jumps the page
	   itself covers; phones keep just the Sign In / Get Started
	   buttons, sized to fit. !important outranks the inline
	   desktop spacing/sizing on those elements. */
	.nav-links { gap: 10px; }
	.nav-links li { margin: 0 !important; }
	.nav-links li:not(:has(.btn)) { display: none; }
	.nav-links .btn { padding: 8px 16px !important; font-size: 13px !important; white-space: nowrap; }
	.nav-logo-img { height: 32px; }
	.section { padding: 64px 20px; }
	.hero { padding: 100px 20px 60px; }
	.hero-stats { flex-direction: column; gap: 16px; }
	.footer-grid { grid-template-columns: 1fr; }
	.comparison-table { font-size: 13px; }
	.comparison-table thead th,
	.comparison-table tbody td { padding: 12px 14px; }
}

/* ============================================================
   LANDING PAGE ADDITIONS (/landing/*)
   Everything below extends the base above. Nothing here changes
   homepage rendering except where noted.
   ============================================================ */

:root {
	--red-500: #EF4444;
	--green-500: #22C55E;
}

/* Landing hero: shorter than the 100vh homepage hero */
.hero.hero-compact {
	min-height: 0;
	padding: 150px 24px 90px;
}
.hero-compact h1 {
	font-size: clamp(36px, 4.5vw, 56px);
}
.hero-compact .hero-actions { align-items: center; }
.hero-call {
	font-size: 15px; color: rgba(255,255,255,0.6);
}
.hero-call a {
	color: var(--orange-400); font-weight: 600; text-decoration: none; font-size: 17px;
}
.hero-compact .price-card { box-shadow: var(--shadow-xl); }

/* Receipts: the "bill you actually get" hero visual */
.receipts {
	display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
	align-items: start; width: 100%;
}
.receipt {
	background: var(--white); color: var(--slate-800); border-radius: 6px;
	padding: 22px 20px 26px;
	font-size: 13.5px;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 30px 80px rgba(0,0,0,0.3);
	position: relative;
	text-align: left;
}
.receipt::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 10px;
	background: radial-gradient(circle at 8px -2px, transparent 7px, var(--white) 7.5px);
	background-size: 16px 10px; background-repeat: repeat-x;
}
.receipt.theirs { transform: rotate(-1.2deg); }
.receipt.ours { transform: rotate(1.2deg); }
.receipt h3 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 12px;
	text-transform: uppercase; letter-spacing: 2px; text-align: center;
	color: var(--slate-900);
	border-bottom: 1.5px dashed var(--slate-200);
	padding-bottom: 12px; margin-bottom: 12px;
}
.r-line { display: flex; justify-content: space-between; gap: 10px; padding: 5px 0; }
.r-line .amt { white-space: nowrap; font-weight: 600; }
.r-line.fee { color: var(--red-500); }
.r-line.inc { color: var(--green-500); }
.r-total {
	border-top: 1.5px dashed var(--slate-200); margin-top: 12px; padding-top: 12px;
	display: flex; justify-content: space-between;
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 15px;
	color: var(--slate-900);
}
.receipt.ours .r-total .amt { color: var(--green-500); }
.r-note { font-size: 11px; color: var(--slate-400); margin-top: 10px; line-height: 1.5; }
@media (prefers-reduced-motion: no-preference) {
	.r-line { opacity: 0; animation: fadeUp 0.4s ease forwards; }
	.r-line:nth-child(2) { animation-delay: 0.5s; }
	.r-line:nth-child(3) { animation-delay: 0.65s; }
	.r-line:nth-child(4) { animation-delay: 0.8s; }
	.r-line:nth-child(5) { animation-delay: 0.95s; }
	.r-line:nth-child(6) { animation-delay: 1.1s; }
}

/* Landing card accents */
.pain-tag {
	display: inline-block;
	font-size: 12px; font-weight: 700;
	letter-spacing: 1px; text-transform: uppercase;
	color: var(--red-500);
	background: rgba(239,68,68,0.08);
	border-radius: 50px;
	padding: 5px 14px;
	margin-bottom: 16px;
}
.step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
	color: var(--white);
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 19px;
	margin-bottom: 18px;
}
.how-note {
	margin-top: 28px;
	background: var(--blue-50);
	border: 1px solid var(--blue-100);
	border-radius: var(--radius-lg);
	padding: 22px 26px;
	font-size: 15px; color: var(--slate-700);
}

/* Comparison table extensions.
   NOTE: min-width also improves the homepage table's mobile scroll. */
.comparison-table { min-width: 640px; background: var(--white); }
.comparison-table thead th.bb { color: var(--orange-400); }
.comparison-table td.yes { color: var(--blue-600); font-weight: 600; }
.comparison-table td.no { color: var(--red-500); }
.comparison-table td.meh { color: var(--slate-500); }
.tbl-note {
	font-size: 13px; color: var(--slate-400);
	margin-top: 16px; max-width: 90ch; line-height: 1.65;
}

/* FAQ accordion */
.faq-list { margin-top: 56px; max-width: 840px; }
.faq-list details {
	background: var(--white);
	border: 1px solid var(--slate-200);
	border-radius: var(--radius-lg);
	margin-bottom: 14px;
	padding: 0 26px;
	transition: box-shadow 0.3s;
}
.faq-list details[open] { box-shadow: var(--shadow-md); }
.faq-list summary {
	cursor: pointer;
	font-family: 'Exo 2', sans-serif;
	font-weight: 700; font-size: 17px;
	color: var(--slate-900);
	padding: 22px 36px 22px 0;
	list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
	content: "+"; position: absolute; right: 0; top: 18px;
	font-size: 26px; font-weight: 400;
	color: var(--blue-600);
	transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
	color: var(--slate-500); font-size: 15.5px; line-height: 1.7;
	padding-bottom: 22px;
}

/* Footer fine print for comparison disclaimers */
.footer-fine {
	color: var(--slate-500); font-size: 12.5px; line-height: 1.7;
	max-width: 860px; margin: 0 auto 16px;
	text-align: center;
}

/* Reduced motion: applies site-wide, harmless on the homepage */
@media (prefers-reduced-motion: reduce) {
	.fade-in { opacity: 1; transform: none; transition: none; }
	.hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-visual { animation: none; }
	.r-line { opacity: 1; animation: none; }
}

/* Landing responsive.
   The homepage hides .hero-visual under 900px (it holds the fake phone);
   landing heroes keep theirs (receipts / price card) and stack instead. */
@media (max-width: 900px) {
	.hero-compact .hero-visual { display: flex; }
	.receipts { max-width: 520px; margin: 0 auto; }
	.hero-compact .price-card { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 640px) {
	.receipts { grid-template-columns: 1fr; }
	.receipt.theirs, .receipt.ours { transform: none; }
}
