/* Get Listed page — split out of main.css, enqueued only on /get-listed/. */
/* ============================================================
   GET LISTED PAGE
   ============================================================ */

/* The wrapper holds a continuous multi-stop gradient that gently shifts
   tone across sections — never a hard line, but each section visually
   "sits" on its own colour zone. Sections can then layer their own
   subtle atmospheric tints on top via ::before pseudos. */
.dd-listed-page {
	position: relative;
	isolation: isolate;
	margin-top: calc(var(--dd-header-height) * -1);
	padding-top: var(--dd-header-height);
	background: linear-gradient(180deg,
		#060C16 0%,                      /* very dark navy — header overlap */
		#0D1B2E 14%,                     /* midnight blue — hero */
		#14223A 28%,                     /* lifted midnight — benefits zone */
		#0F1A2E 44%,                     /* return to midnight — pricing */
		#0A1424 60%,                     /* cool dark — pricing bottom */
		#1F1620 74%,                     /* warm aubergine wash — mid CTA */
		#0F1426 88%,                     /* cool dark — FAQ */
		#050A14 100%                     /* deepest dark — footer transition */
	);
	color: #fff;
}
.dd-listed-page__decor {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 14% 4%, rgba(205, 170, 103, 0.22) 0%, transparent 30%),
		radial-gradient(ellipse at 88% 22%, rgba(204, 85, 0, 0.16) 0%, transparent 35%),
		radial-gradient(ellipse at 50% 72%, rgba(205, 170, 103, 0.18) 0%, transparent 32%),
		radial-gradient(ellipse at 92% 85%, rgba(204, 85, 0, 0.12) 0%, transparent 35%);
}

/* Per-section atmospheric accents — kept subtle so the wrapper gradient
   stays the dominant rhythm. */
.dd-listed-benefits,
.dd-listed-pricing,
.dd-listed-midcta,
.dd-listed-faq {
	position: relative;
}
.dd-listed-benefits::before {
	content: "";
	position: absolute; inset: 0; pointer-events: none; z-index: -1;
	background: radial-gradient(ellipse at 80% 50%, rgba(205, 170, 103, 0.06) 0%, transparent 55%);
}
.dd-listed-pricing::before {
	content: "";
	position: absolute; inset: 0; pointer-events: none; z-index: -1;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(205, 170, 103, 0.05) 0%, transparent 40%),
		radial-gradient(ellipse at 50% 100%, rgba(13, 27, 46, 0.4) 0%, transparent 50%);
}
.dd-listed-midcta::before {
	content: "";
	position: absolute; inset: 0; pointer-events: none; z-index: -1;
	background:
		radial-gradient(ellipse at 50% 50%, rgba(204, 85, 0, 0.10) 0%, transparent 55%);
}
.dd-listed-faq::before {
	content: "";
	position: absolute; inset: 0; pointer-events: none; z-index: -1;
	background: radial-gradient(ellipse at 15% 30%, rgba(205, 170, 103, 0.08) 0%, transparent 45%);
}

/* ----- Hero ----- */
.dd-listed-hero {
	position: relative;
	padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
	text-align: center;
}
.dd-listed-hero__inner { max-width: 880px; margin-inline: auto; }
.dd-listed-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--dd-color-gold);
	font-size: 0.72rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	font-weight: 700;
}
.dd-listed-hero__eyebrow .dd-hairline { background: var(--dd-color-gold); width: 32px; }
.dd-listed-hero__title {
	font-family: var(--dd-font-display);
	font-weight: 700;
	font-size: clamp(2.25rem, 5vw, 4rem);
	line-height: 1.06;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0 auto 1.75rem;
	max-width: 22ch;
}
.dd-listed-hero__title em {
	background: var(--dd-gradient-gilded);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-style: italic;
	padding-right: 0.25em;
	margin-right: -0.25em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.dd-listed-hero__lede {
	max-width: 640px;
	margin: 0 auto 2.5rem;
	color: rgba(246, 241, 232, 0.78);
	font-size: 1.0625rem;
	line-height: 1.7;
}
.dd-listed-hero__lede p { margin: 0 0 0.85rem; }
.dd-listed-hero__lede p:last-child { margin-bottom: 0; }

/* ----- Benefits 3-column ----- */
.dd-listed-benefits {
	padding-block: clamp(3rem, 6vw, 5rem);
}
.dd-benefits-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.dd-benefit {
	padding: 2rem 1.75rem;
	background:
		linear-gradient(165deg, rgba(246, 241, 232, 0.06) 0%, rgba(246, 241, 232, 0.02) 100%);
	border: 1px solid rgba(205, 170, 103, 0.20);
	border-radius: 4px;
	transition: transform 350ms ease, border-color 350ms ease, background 350ms ease;
}
.dd-benefit:hover {
	transform: translateY(-4px);
	border-color: rgba(205, 170, 103, 0.55);
	background:
		linear-gradient(165deg, rgba(205, 170, 103, 0.10) 0%, rgba(246, 241, 232, 0.03) 100%);
}
.dd-benefit__icon {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(205, 170, 103, 0.12);
	border: 1px solid rgba(205, 170, 103, 0.45);
	color: var(--dd-color-gold);
	margin-bottom: 1.25rem;
	transition: background 300ms ease, color 300ms ease;
}
.dd-benefit:hover .dd-benefit__icon {
	background: var(--dd-gradient-gilded);
	color: var(--dd-color-primary);
	border-color: transparent;
}
.dd-benefit__title {
	font-family: var(--dd-font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.65rem;
	line-height: 1.2;
}
.dd-benefit p {
	margin: 0;
	color: rgba(246, 241, 232, 0.74);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ----- Pricing tiers ----- */
.dd-listed-pricing { padding-block: clamp(3rem, 6vw, 5rem); }
.dd-listed-pricing .dd-section-head { margin-bottom: 3.5rem; }

.dd-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}
.dd-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background:
		linear-gradient(180deg, rgba(246, 241, 232, 0.05) 0%, rgba(246, 241, 232, 0.02) 100%);
	border: 1px solid rgba(205, 170, 103, 0.22);
	border-radius: 6px;
	padding: 2.25rem 2rem 2rem;
	transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}
.dd-pricing-card:hover {
	transform: translateY(-6px);
	border-color: rgba(205, 170, 103, 0.55);
	box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}

/* Touring — daily plan callout below the monthly tiers */
.dd-pricing-touring {
	margin-top: 1.6rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	background: linear-gradient(180deg, rgba(246, 241, 232, 0.05) 0%, rgba(246, 241, 232, 0.02) 100%);
	border: 1px solid rgba(205, 170, 103, 0.22);
	border-left: 3px solid var(--dd-color-accent);
	border-radius: 6px;
	padding: 1.5rem 1.75rem;
}
.dd-pricing-touring__ic { color: var(--dd-color-accent); flex-shrink: 0; display: inline-grid; place-items: center; }
.dd-pricing-touring__body { flex: 1; min-width: 240px; color: rgba(246, 241, 232, 0.82); }
.dd-pricing-touring__title {
	margin: 0 0 0.3rem;
	font-family: var(--dd-font-display);
	font-size: 1.3rem;
	color: #fff;
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.dd-pricing-touring__price { color: var(--dd-color-accent); font-weight: 700; }
.dd-pricing-touring__price small { font-size: 0.62em; color: rgba(246, 241, 232, 0.7); }
.dd-pricing-touring__body p { margin: 0; font-size: 0.95rem; line-height: 1.55; }
.dd-pricing-touring__cta { flex-shrink: 0; }
.dd-pricing-card--featured {
	border-color: rgba(205, 170, 103, 0.65);
	background:
		linear-gradient(180deg, rgba(205, 170, 103, 0.14) 0%, rgba(204, 85, 0, 0.06) 100%);
	box-shadow: 0 24px 60px -28px rgba(204, 85, 0, 0.45);
	transform: translateY(-8px);
}
.dd-pricing-card--featured:hover { transform: translateY(-14px); }
.dd-pricing-card__badge {
	position: absolute;
	top: -0.85rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--dd-gradient-gilded);
	color: var(--dd-color-primary);
	padding: 0.35rem 0.85rem;
	font-size: 0.65rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 2px;
	white-space: nowrap;
}
.dd-pricing-card__head {
	text-align: center;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(205, 170, 103, 0.18);
	margin-bottom: 1.5rem;
}
.dd-pricing-card__tier {
	font-family: var(--dd-font-display);
	font-size: 1.65rem;
	color: var(--dd-color-gold);
	margin: 0 0 0.4rem;
	letter-spacing: 0.02em;
}
.dd-pricing-card--featured .dd-pricing-card__tier {
	background: var(--dd-gradient-gilded);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.dd-pricing-card__tagline {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(246, 241, 232, 0.7);
}
.dd-pricing-card__price {
	font-family: var(--dd-font-display);
	font-size: clamp(2.25rem, 3vw, 2.75rem);
	color: #fff;
	margin: 0;
	line-height: 1;
}
.dd-pricing-card__price span {
	font-family: var(--dd-font-body);
	font-size: 0.9rem;
	color: rgba(246, 241, 232, 0.65);
	font-weight: 400;
	letter-spacing: 0.04em;
	margin-left: 0.25em;
}
.dd-pricing-card__features {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.dd-pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.93rem;
	line-height: 1.5;
	color: rgba(246, 241, 232, 0.85);
}
.dd-pricing-card__features li strong { color: #fff; font-weight: 700; }
.dd-pricing-card__features li em {
	font-style: italic;
	color: var(--dd-color-gold);
}
.dd-pricing-card__tick {
	flex-shrink: 0;
	margin-top: 0.25rem;
	color: var(--dd-color-gold);
}
.dd-pricing-card__cta { width: 100%; justify-content: center; margin-top: auto; }

/* ----- Closing CTA (last section of the page) ----- */
.dd-listed-midcta {
	padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
}
.dd-listed-midcta__inner {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
	background:
		linear-gradient(165deg, rgba(205, 170, 103, 0.10) 0%, rgba(204, 85, 0, 0.05) 100%);
	border: 1px solid rgba(205, 170, 103, 0.30);
	border-radius: 6px;
	position: relative;
	overflow: hidden;
}
.dd-listed-midcta__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(205, 170, 103, 0.18) 0%, transparent 70%);
	pointer-events: none;
}
.dd-listed-midcta__title {
	position: relative;
	font-family: var(--dd-font-display);
	font-size: clamp(1.8rem, 3.4vw, 2.65rem);
	color: #fff;
	margin: 0 0 1.25rem;
	line-height: 1.15;
}
.dd-listed-midcta__title em {
	background: var(--dd-gradient-gilded);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-style: italic;
	padding-right: 0.25em;
	margin-right: -0.25em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.dd-listed-midcta__copy {
	position: relative;
	max-width: 560px;
	margin: 0 auto 2rem;
	color: rgba(246, 241, 232, 0.82);
	font-size: 1rem;
	line-height: 1.7;
}
.dd-listed-midcta .dd-btn { position: relative; }

/* ----- FAQ ----- */
.dd-listed-faq { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 7vw, 6rem); }
.dd-listed-faq .dd-section-head { margin-bottom: 4rem; }
.dd-listed-faq .dd-section-head__lede { color: rgba(246, 241, 232, 0.78); max-width: 640px; }

/* Editorial subtitle slotted between the eyebrow and the H2 */
.dd-faq-head__sub {
	display: block;
	font-family: var(--dd-font-display);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	color: rgba(246, 241, 232, 0.6);
	margin: 0 0 1.25rem;
	letter-spacing: 0.005em;
}
.dd-faq-head__sub em { font-style: italic; color: var(--dd-color-gold); }

.dd-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1.65fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

/* Sticky frosted card on the left */
.dd-faq-aside {
	position: sticky;
	top: calc(var(--dd-header-height) + 1.5rem);
}
.dd-faq-aside__card {
	background:
		linear-gradient(165deg, rgba(246, 241, 232, 0.07) 0%, rgba(246, 241, 232, 0.02) 100%);
	border: 1px solid rgba(205, 170, 103, 0.25);
	border-radius: 6px;
	padding: 1.75rem 1.75rem 1.85rem;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.55);
}
.dd-faq-aside__item + .dd-faq-aside__item {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(205, 170, 103, 0.18);
}
.dd-faq-aside__icon {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(205, 170, 103, 0.45);
	color: var(--dd-color-gold);
	margin-bottom: 0.85rem;
	background: rgba(205, 170, 103, 0.06);
}
.dd-faq-aside__item h3 {
	font-family: var(--dd-font-display);
	font-size: 1.2rem;
	color: #fff;
	margin: 0 0 0.45rem;
	line-height: 1.25;
}
.dd-faq-aside__item p {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.6;
	color: rgba(246, 241, 232, 0.74);
}
.dd-faq-aside__item a {
	color: var(--dd-color-gold);
	text-decoration: underline;
	text-decoration-color: rgba(205, 170, 103, 0.5);
	text-underline-offset: 3px;
}
.dd-faq-aside__item a:hover { color: var(--dd-color-accent); text-decoration-color: currentColor; }

/* FAQ accordions: editorial numbered rows on hairline gold separators */
.dd-faq-list { display: flex; flex-direction: column; }
.dd-faq {
	border-bottom: 1px solid rgba(205, 170, 103, 0.18);
	transition: background 300ms ease;
	position: relative;
}
.dd-faq:first-child { border-top: 1px solid rgba(205, 170, 103, 0.18); }
.dd-faq::before {
	content: "";
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--dd-color-gold) 0%, var(--dd-color-accent) 100%);
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 380ms cubic-bezier(.2,.7,.2,1);
	pointer-events: none;
}
.dd-faq[open]::before { transform: scaleY(1); }
.dd-faq[open] {
	background:
		linear-gradient(90deg, rgba(205, 170, 103, 0.06) 0%, transparent 60%);
}
.dd-faq summary {
	list-style: none;
	cursor: pointer;
	padding: 1.65rem 0 1.65rem 1.5rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: clamp(1rem, 2vw, 1.75rem);
	align-items: center;
	transition: color 220ms ease, padding 280ms ease;
}
.dd-faq summary::-webkit-details-marker { display: none; }
.dd-faq[open] summary { padding-bottom: 1rem; }

.dd-faq__num {
	font-family: var(--dd-font-display);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--dd-color-gold);
	opacity: 0.55;
	line-height: 1;
	letter-spacing: 0.02em;
	min-width: 2.5ch;
	transition: opacity 280ms ease, transform 280ms ease;
}
.dd-faq[open] .dd-faq__num,
.dd-faq summary:hover .dd-faq__num { opacity: 1; transform: translateX(2px); }

.dd-faq__q {
	font-family: var(--dd-font-display);
	font-size: clamp(1.1rem, 1.55vw, 1.3rem);
	color: #fff;
	line-height: 1.3;
	transition: color 220ms ease;
}
.dd-faq[open] .dd-faq__q,
.dd-faq summary:hover .dd-faq__q { color: var(--dd-color-gold); }

.dd-faq__toggle {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(205, 170, 103, 0.45);
	color: var(--dd-color-gold);
	position: relative;
	transition: background 280ms ease, border-color 280ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}
.dd-faq summary:hover .dd-faq__toggle {
	background: rgba(205, 170, 103, 0.10);
	border-color: var(--dd-color-gold);
}
.dd-faq__toggle::before,
.dd-faq__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--dd-color-gold);
	transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 220ms ease;
}
.dd-faq__toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.dd-faq__toggle::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.dd-faq[open] .dd-faq__toggle { transform: rotate(180deg); background: var(--dd-color-gold); border-color: var(--dd-color-gold); }
.dd-faq[open] .dd-faq__toggle::before,
.dd-faq[open] .dd-faq__toggle::after { background: var(--dd-color-primary); }
.dd-faq[open] .dd-faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.dd-faq__a {
	padding: 0 1rem 1.85rem calc(2.5ch + 1.5rem + clamp(1rem, 2vw, 1.75rem));
	color: rgba(246, 241, 232, 0.82);
	font-size: 1rem;
	line-height: 1.75;
	max-width: 68ch;
}
.dd-faq__a p { margin: 0; }

@media (max-width: 1024px) {
	.dd-faq-aside { position: static; }
}
@media (max-width: 700px) {
	.dd-faq summary { padding-left: 1rem; gap: 0.85rem; }
	.dd-faq__num { font-size: 1rem; min-width: 2ch; }
	.dd-faq__q  { font-size: 1.05rem; }
	.dd-faq__toggle { width: 28px; height: 28px; }
	.dd-faq__a { padding-left: 1rem; padding-right: 0; font-size: 0.95rem; }
	.dd-faq-aside__card { padding: 1.5rem; }
}

@media (max-width: 1024px) {
	.dd-listed-pricing .dd-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
	.dd-pricing-card--featured { transform: none; }
	.dd-pricing-card--featured:hover { transform: translateY(-6px); }
	.dd-faq-grid { grid-template-columns: 1fr; }
	.dd-benefits-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}
