/**
 * LP v3 — 緊急修理LP型（エアコン・食洗機共通）
 */

:root {
	--color-main: #005BAC;
	--color-main-dark: #0B2F4A;
	--color-accent: #FFD43B;
	--color-danger: #E53935;
	--color-line: #06C755;
	--color-bg-blue: #F2F8FF;
	--color-bg-gray: #F7F9FB;
	--color-text: #1F2937;
	--color-muted: #6B7280;
	--color-border: #D8E3F0;
	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 26px;
	--shadow-card: 0 12px 30px rgba(11, 47, 74, 0.1);
	--shadow-strong: 0 18px 45px rgba(11, 47, 74, 0.18);
	--lp-max: 1120px;
	--lp-font: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Yu Gothic", sans-serif;
}

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

body.lp-service-body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: var(--color-text);
	font-family: var(--lp-font);
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

body.lp-service-body #headWrap,
body.lp-service-body #footWrap,
body.lp-service-body .site-footer:not(.lp-footer) {
	display: none !important;
}

a { color: var(--color-main); }
a:hover { opacity: 0.88; }

img { max-width: 100%; height: auto; display: block; }

button {
	font: inherit;
	cursor: pointer;
	border: none;
}

.lp-wrap {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 20px;
}

.lp-section {
	padding: 80px 20px;
}

.lp-section--gray {
	background: var(--color-bg-gray);
}

.lp-section--cta {
	padding-top: 0;
	padding-bottom: 80px;
}

/* ── Header ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
}

.header-inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.header-brand { min-width: 0; }

.header-logo-main {
	margin: 0;
	font-weight: 900;
	color: var(--color-main-dark);
	font-size: 18px;
	line-height: 1.3;
}

.header-logo-main a {
	color: inherit;
	text-decoration: none;
}

.header-logo-sub {
	margin: 2px 0 0;
	font-size: 12px;
	color: var(--color-muted);
	line-height: 1.4;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header-tel {
	font-weight: 900;
	font-size: 22px;
	color: var(--color-main);
	text-decoration: none;
	white-space: nowrap;
}

.header-line-btn {
	background: var(--color-line);
	color: #fff;
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 800;
	text-decoration: none;
}

/* ── Hero ── */
.lp-hero {
	background:
		radial-gradient(circle at 80% 10%, rgba(255, 212, 59, 0.32), transparent 28%),
		linear-gradient(135deg, #EAF5FF 0%, #FFFFFF 54%, #F7FBFF 100%);
	padding: 56px 20px 72px;
	overflow: hidden;
}

.lp-hero__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 42px;
	align-items: center;
}

.lp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--color-main);
	border: 1px solid rgba(0, 91, 172, 0.18);
	border-radius: 999px;
	padding: 8px 14px;
	font-weight: 800;
	font-size: 14px;
	box-shadow: 0 8px 20px rgba(0, 91, 172, 0.08);
	margin: 0;
}

.lp-hero h1 {
	margin: 18px 0 14px;
	color: var(--color-main-dark);
	font-size: clamp(30px, 4.2vw, 48px);
	line-height: 1.18;
	letter-spacing: -0.04em;
	font-weight: 900;
}

.lp-hero__lead {
	font-size: 18px;
	line-height: 1.8;
	color: var(--color-text);
	margin: 0 0 22px;
}

.price-panel {
	background: #fff;
	border: 3px solid var(--color-main);
	border-radius: var(--radius-lg);
	padding: 20px 24px;
	box-shadow: var(--shadow-strong);
	display: inline-block;
	margin-bottom: 4px;
}

.price-panel__label {
	margin: 0 0 4px;
	font-weight: 800;
	color: var(--color-main-dark);
}

.price-panel__price {
	margin: 0;
	color: var(--color-danger);
	font-size: clamp(42px, 6vw, 64px);
	font-weight: 900;
	line-height: 1;
}

.price-panel__tax {
	font-size: 18px;
	font-weight: 900;
}

.hero-badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 18px;
}

.hero-badge-list span {
	background: var(--color-bg-blue);
	color: var(--color-main);
	border: 1px solid rgba(0, 91, 172, 0.16);
	border-radius: 999px;
	padding: 6px 12px;
	font-weight: 800;
	font-size: 13px;
}

.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-primary,
.btn-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border-radius: 999px;
	padding: 0 24px;
	font-weight: 900;
	font-size: 16px;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	border: none;
	cursor: pointer;
}

.btn-primary--tel {
	flex-direction: column;
	gap: 2px;
	padding: 10px 20px;
	line-height: 1.2;
}

.btn-primary__label {
	font-size: 14px;
	font-weight: 800;
}

.btn-primary__num {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.btn-primary:hover,
.btn-line:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.btn-primary {
	background: var(--color-main);
	color: #fff;
}

.btn-line {
	background: var(--color-line);
	color: #fff;
}

.lp-hero__note {
	margin: 16px 0 0;
	font-size: 14px;
	color: var(--color-muted);
}

.hero-visual {
	position: relative;
}

.hero-visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: var(--shadow-strong);
}

.hero-floating-card {
	position: absolute;
	left: -18px;
	bottom: 52px;
	background: #fff;
	border-radius: 18px;
	padding: 14px 18px;
	box-shadow: var(--shadow-strong);
	border-left: 6px solid var(--color-accent);
	font-weight: 900;
	color: var(--color-main-dark);
	font-size: 15px;
}

.hero-visual__cap {
	margin: 12px 0 0;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-muted);
}

/* ── Quick points ── */
.quick-points {
	margin-top: -36px;
	position: relative;
	z-index: 5;
	padding-bottom: 24px;
}

.quick-points__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	padding: 0 20px;
}

.quick-point {
	background: #fff;
	border-radius: 18px;
	padding: 18px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--color-border);
	text-align: center;
}

.quick-point__icon {
	font-size: 28px;
	margin: 0 0 8px;
	line-height: 1;
}

.quick-point__title {
	margin: 0 0 4px;
	font-weight: 900;
	color: var(--color-main-dark);
	font-size: 15px;
	line-height: 1.4;
}

.quick-point__text {
	margin: 0;
	font-size: 14px;
	color: var(--color-muted);
}

/* ── Section heading ── */
.section-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 38px;
}

.section-label {
	display: inline-block;
	color: var(--color-main);
	font-weight: 900;
	letter-spacing: 0.12em;
	font-size: 13px;
	margin-bottom: 8px;
}

.section-heading h2 {
	margin: 0 0 12px;
	color: var(--color-main-dark);
	line-height: 1.35;
	font-size: clamp(25px, 3vw, 32px);
	font-weight: 800;
}

.section-heading p {
	margin: 0;
	color: var(--color-muted);
}

/* ── Symptoms ── */
.symptom-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.symptom-card {
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--color-border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.symptom-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-strong);
}

.symptom-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.symptom-card__body {
	padding: 18px;
}

.symptom-card__label {
	display: inline-block;
	background: var(--color-bg-blue);
	color: var(--color-main);
	font-size: 12px;
	font-weight: 900;
	border-radius: 999px;
	padding: 4px 10px;
	margin-bottom: 8px;
}

.symptom-card h3 {
	margin: 0 0 8px;
	color: var(--color-main-dark);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
}

.symptom-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
}

/* ── Pricing ── */
.price-section {
	background: var(--color-bg-blue);
}

.price-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: start;
}

.price-main-card {
	background: #fff;
	border-radius: 28px;
	padding: 28px;
	border: 3px solid var(--color-main);
	box-shadow: var(--shadow-strong);
	text-align: center;
}

.price-main-card__label {
	margin: 0 0 8px;
	font-weight: 800;
	color: var(--color-main-dark);
	font-size: 18px;
}

.price-main-card .price {
	margin: 0;
	color: var(--color-danger);
	font-size: clamp(48px, 8vw, 64px);
	font-weight: 900;
	line-height: 1;
}

.price-main-card .price-tax {
	font-size: 22px;
	font-weight: 900;
}

.price-main-card__sub {
	margin: 12px 0 0;
	color: var(--color-muted);
	font-size: 15px;
}

.price-note-list {
	display: grid;
	gap: 14px;
}

.price-note {
	background: #fff;
	border-radius: 18px;
	padding: 18px 20px;
	border-left: 6px solid var(--color-main);
	box-shadow: var(--shadow-card);
}

.price-note h3 {
	margin: 0 0 6px;
	color: var(--color-main-dark);
	font-size: 18px;
	font-weight: 800;
}

.price-note p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
}

.price-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 32px;
}

.price-detail-card {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.price-detail-card h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 800;
	color: var(--color-main-dark);
}

.price-detail-card table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.price-detail-card th,
.price-detail-card td {
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}

.price-detail-card th {
	width: 55%;
	font-weight: 700;
	color: var(--color-text);
}

.price-detail-card td {
	font-weight: 800;
	color: var(--color-main-dark);
}

.price-detail-card__note {
	margin: 12px 0 0;
	font-size: 13px;
	color: var(--color-muted);
}

.price-disclaimer {
	margin: 24px 0 0;
	font-size: 14px;
	color: var(--color-muted);
	text-align: center;
}

/* ── Compare ── */
.compare-section {
	background: #fff;
}

.compare-table {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.compare-box {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-strong);
	background: #fff;
}

.compare-box.good {
	border: 3px solid var(--color-main);
}

.compare-box.bad {
	border: 3px solid #FCA5A5;
}

.compare-box__head {
	padding: 18px 22px;
	color: #fff;
	font-weight: 900;
	font-size: clamp(18px, 2.5vw, 22px);
	line-height: 1.35;
	display: flex;
	align-items: center;
	gap: 10px;
}

.compare-box__mark {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	font-size: 18px;
	flex-shrink: 0;
}

.compare-box.good .compare-box__head {
	background: linear-gradient(135deg, var(--color-main), #0084D6);
}

.compare-box.bad .compare-box__head {
	background: linear-gradient(135deg, var(--color-danger), #C62828);
}

.compare-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
}

.compare-list li {
	padding: 16px 20px;
	border-bottom: 1px solid var(--color-border);
	font-weight: 700;
	line-height: 1.55;
}

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

.compare-list li strong {
	display: block;
	color: var(--color-main-dark);
	font-size: 15px;
	margin-bottom: 4px;
}

.compare-list .small {
	display: block;
	font-size: 14px;
	color: var(--color-muted);
	margin-top: 2px;
	font-weight: 500;
	line-height: 1.6;
}

.compare-box.good .compare-list li {
	background: linear-gradient(90deg, rgba(242, 248, 255, 0.7), #fff);
}

.compare-box.bad .compare-list li {
	background: linear-gradient(90deg, rgba(254, 242, 242, 0.7), #fff);
}

/* ── Trust panel ── */
.trust-panel {
	background: linear-gradient(135deg, var(--color-main-dark), #123F63);
	color: #fff;
	border-radius: 30px;
	padding: 36px;
	box-shadow: var(--shadow-strong);
}

.trust-panel h2 {
	color: #fff;
	margin: 0 0 16px;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 800;
	line-height: 1.4;
}

.trust-panel__body {
	margin: 0 0 8px;
	opacity: 0.95;
	font-size: 16px;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 24px;
}

.trust-item {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 16px;
	padding: 16px;
	font-weight: 800;
	text-align: center;
	font-size: 15px;
}

.trust-panel__maps {
	margin: 20px 0 0;
}

.trust-panel__maps a {
	color: var(--color-accent);
	font-weight: 800;
}

/* ── Makers ── */
.makers-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.makers-list li {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	padding: 10px 18px;
	font-weight: 700;
	font-size: 15px;
	color: var(--color-main-dark);
	box-shadow: var(--shadow-card);
}

/* ── CTA band ── */
.cta-band {
	background: linear-gradient(135deg, var(--color-main), #0084D6);
	color: #fff;
	border-radius: 28px;
	padding: 30px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
	box-shadow: var(--shadow-strong);
}

.cta-band h2 {
	color: #fff;
	margin: 0 0 8px;
	font-size: clamp(20px, 2.8vw, 26px);
	font-weight: 800;
	line-height: 1.35;
}

.cta-band p {
	margin: 0;
	opacity: 0.92;
	font-size: 15px;
}

.cta-band__buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.cta-band .btn-primary {
	background: #fff;
	color: var(--color-main);
}

.cta-band .btn-line {
	background: var(--color-line);
	color: #fff;
}

/* ── Flow ── */
.flow-steps {
	display: grid;
	gap: 18px;
	max-width: 760px;
	margin: 0 auto;
	counter-reset: step;
	position: relative;
}

.flow-step {
	position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 22px 22px 22px 76px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--color-border);
}

.flow-step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 22px;
	top: 22px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--color-main);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 900;
	box-shadow: 0 6px 16px rgba(0, 91, 172, 0.28);
}

.flow-step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 40px;
	top: 64px;
	bottom: -18px;
	width: 3px;
	background: linear-gradient(180deg, var(--color-main), rgba(0, 91, 172, 0.15));
	border-radius: 999px;
}

.flow-step h3 {
	margin: 0 0 6px;
	color: var(--color-main-dark);
	font-size: 20px;
	font-weight: 800;
}

.flow-step p {
	margin: 0;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.7;
}

/* ── Payment ── */
.payment-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.payment-list li {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 14px 22px;
	font-weight: 800;
	color: var(--color-main-dark);
	box-shadow: var(--shadow-card);
}

/* ── Area ── */
.area-card {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 24px;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	margin-bottom: 20px;
}

.area-card p {
	margin: 0 0 8px;
}

.area-card p:last-child {
	margin-bottom: 0;
}

.area-map {
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--color-border);
}

.area-map iframe {
	display: block;
	width: 100%;
	height: 360px;
}

/* ── FAQ ── */
.faq-list {
	display: grid;
	gap: 14px;
	max-width: 860px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border-radius: 18px;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.faq-q {
	padding: 18px 48px 18px 22px;
	font-weight: 900;
	color: var(--color-main-dark);
	background: var(--color-bg-blue);
	cursor: pointer;
	list-style: none;
	position: relative;
	font-size: 16px;
	line-height: 1.5;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 900;
	color: var(--color-main);
}

.faq-item[open] .faq-q::after {
	content: "−";
}

.faq-a {
	padding: 18px 22px;
	color: var(--color-text);
}

.faq-a p {
	margin: 0;
}

/* ── AI facts ── */
.lp-ai-facts {
	background: var(--color-bg-gray);
}

.ai-facts {
	background: #fff;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.ai-facts__row {
	display: grid;
	grid-template-columns: 160px 1fr;
	border-bottom: 1px solid var(--color-border);
}

.ai-facts__row:last-child {
	border-bottom: 0;
}

.ai-facts dt {
	margin: 0;
	padding: 14px 18px;
	background: var(--color-bg-blue);
	font-weight: 800;
	color: var(--color-main-dark);
	font-size: 14px;
}

.ai-facts dd {
	margin: 0;
	padding: 14px 18px;
	font-size: 15px;
	color: var(--color-text);
}

/* ── Footer ── */
.lp-footer {
	background: var(--color-main-dark);
	color: rgba(255, 255, 255, 0.92);
	padding: 40px 20px;
}

.lp-footer__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	text-align: center;
}

.lp-footer__shop,
.lp-footer__hours {
	margin: 0 0 8px;
	font-size: 15px;
}

.lp-footer__hours a {
	color: #fff;
	font-weight: 800;
}

.lp-footer__links {
	margin: 16px 0 8px;
	font-size: 14px;
}

.lp-footer__links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.lp-footer__copy {
	margin: 0;
	font-size: 13px;
	opacity: 0.7;
}

/* ── Mobile sticky CTA ── */
.mobile-sticky-cta {
	display: none;
}

@media (max-width: 767px) {
	body.lp-service-body {
		padding-bottom: 76px;
	}

	.lp-section {
		padding: 56px 16px;
	}

	.lp-section--cta {
		padding-bottom: 56px;
	}

	.lp-wrap {
		padding: 0 16px;
	}

	.header-inner {
		padding: 10px 16px;
	}

	.header-logo-main {
		font-size: 15px;
	}

	.header-logo-sub {
		font-size: 11px;
	}

	.header-tel {
		font-size: 16px;
	}

	.header-line-btn {
		padding: 8px 14px;
		font-size: 14px;
	}

	.lp-hero {
		padding: 24px 16px 36px;
	}

	.lp-hero__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.lp-hero__content {
		order: 1;
	}

	.hero-visual {
		order: 10;
		margin-top: 24px;
	}

	.lp-hero h1 {
		font-size: 30px;
		margin: 12px 0 10px;
	}

	.lp-hero__lead {
		font-size: 15px;
		line-height: 1.65;
		margin-bottom: 14px;
	}

	.price-panel {
		width: 100%;
		text-align: center;
		display: block;
		padding: 16px 18px;
		margin-bottom: 0;
	}

	.price-panel__price {
		font-size: 46px;
	}

	.hero-badge-list {
		justify-content: center;
		margin: 12px 0 14px;
	}

	.hero-badge-list span {
		font-size: 12px;
		padding: 5px 10px;
	}

	.lp-hero__note {
		display: none;
	}

	.hero-cta {
		flex-direction: column;
	}

	.hero-cta a,
	.hero-cta button {
		width: 100%;
		min-height: 52px;
	}

	.btn-primary--tel {
		padding: 12px 16px;
	}

	.hero-floating-card {
		left: 12px;
		right: 12px;
		bottom: 52px;
		text-align: center;
	}

	.quick-points {
		margin-top: -20px;
	}

	.quick-points__inner {
		grid-template-columns: repeat(2, 1fr);
		padding: 0 16px;
		gap: 10px;
	}

	.quick-point {
		padding: 14px 12px;
	}

	.quick-point__title {
		font-size: 13px;
	}

	.symptom-grid {
		grid-template-columns: 1fr;
	}

	.price-layout {
		grid-template-columns: 1fr;
	}

	.price-detail-grid {
		grid-template-columns: 1fr;
	}

	.compare-table {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-band {
		grid-template-columns: 1fr;
		padding: 24px 20px;
		text-align: center;
	}

	.cta-band__buttons {
		justify-content: center;
	}

	.cta-band__buttons a,
	.cta-band__buttons button {
		flex: 1 1 100%;
		min-width: 0;
	}

	.ai-facts__row {
		grid-template-columns: 1fr;
	}

	.ai-facts dt {
		border-bottom: 1px solid var(--color-border);
	}

	.mobile-sticky-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2000;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.96);
		border-top: 1px solid var(--color-border);
		box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.12);
	}

	.mobile-sticky-cta a,
	.mobile-sticky-cta button {
		min-height: 48px;
		border-radius: 999px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 900;
		text-decoration: none;
		color: #fff;
		font-size: 15px;
	}

	.mobile-sticky-cta .tel {
		background: var(--color-main);
	}

	.mobile-sticky-cta .line {
		background: var(--color-line);
	}
}

@media (max-width: 480px) {
	.quick-points__inner {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust-panel {
		padding: 24px 20px;
	}
}

@media (min-width: 769px) and (max-width: 960px) {
	.symptom-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.quick-points__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}
