/* ============================================================
   Deals Demo page — full page styles
   Loaded only on slug: deals-demo
   All classes prefixed .dd- to isolate from Oxygen globals
   ============================================================ */

/* ── Shared variables ── */
:root {
	--dd-navy:       #1e304e;
	--dd-navy-dark:  #162440;
	--dd-yellow:     #ffcb05;
	--dd-yellow-dark:#e6b700;
	--dd-teal:       #31a6d2;
	--dd-slate:      #425a76;
	--dd-light:      #f5f8fc;
	--dd-border:     #dde5ef;
	--dd-white:      #ffffff;
	--dd-shadow:     0 2px 16px rgba(30,48,78,0.10);
	--dd-radius:     16px;
	--dd-inner-max:  1340px;
	--dd-inner-pad:  clamp(24px, 4vw, 60px);
	--dd-section-py: clamp(64px, 7vw, 100px);
}

/* ── Page wrapper ── */
.dd-page {
	width: 100%;
	overflow-x: hidden;
}

/* ── Shared inner container ── */
.dd-inner {
	max-width: var(--dd-inner-max);
	margin: 0 auto;
	padding: var(--dd-section-py) var(--dd-inner-pad);
	box-sizing: border-box;
}

/* ── Shared section heading style ── */
.dd-section-heading {
	font-size: clamp(1.6rem, 2.6vw, 2.25rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 14px;
}

.dd-section-intro {
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 660px;
	margin: 0 0 44px;
}

/* ── Buttons ── */
.dd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.97rem;
	line-height: 1;
	padding: 15px 28px;
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
	white-space: nowrap;
}

.dd-btn--yellow {
	background: var(--dd-yellow);
	color: var(--dd-navy);
	border-color: var(--dd-yellow);
}

.dd-btn--yellow:hover {
	background: var(--dd-yellow-dark);
	border-color: var(--dd-yellow-dark);
	color: var(--dd-navy);
	text-decoration: none;
}

.dd-btn--navy {
	background: var(--dd-navy);
	color: var(--dd-white);
	border-color: var(--dd-navy);
}

.dd-btn--navy:hover {
	background: var(--dd-navy-dark);
	border-color: var(--dd-navy-dark);
	color: var(--dd-white);
	text-decoration: none;
}

.dd-btn--outline-white {
	background: transparent;
	color: var(--dd-white);
	border-color: rgba(255,255,255,0.55);
}

.dd-btn--outline-white:hover {
	background: rgba(255,255,255,0.12);
	border-color: var(--dd-white);
	color: var(--dd-white);
	text-decoration: none;
}

.dd-btn--outline-navy {
	background: transparent;
	color: var(--dd-navy);
	border-color: var(--dd-navy);
}

.dd-btn--outline-navy:hover {
	background: var(--dd-navy);
	color: var(--dd-white);
	text-decoration: none;
}

.dd-btn--wa {
	background: #25d366;
	color: var(--dd-white);
	border-color: #25d366;
}

.dd-btn--wa:hover {
	background: #1fb258;
	border-color: #1fb258;
	color: var(--dd-white);
	text-decoration: none;
}

/* ── Scroll-lock ── */
body.dd-scroll-locked {
	overflow: hidden;
}

/* =============================================================
   1. HERO
   ============================================================= */

.dd-hero {
	background: linear-gradient(150deg, var(--dd-navy) 0%, #16253e 100%);
	width: 100%;
	position: relative;
	overflow: hidden;
}

.dd-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 70% 50%, rgba(255,203,5,0.06) 0%, transparent 60%);
	pointer-events: none;
}

.dd-hero__inner {
	max-width: var(--dd-inner-max);
	margin: 0 auto;
	padding: clamp(72px, 9vw, 120px) var(--dd-inner-pad) clamp(60px, 8vw, 100px);
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.dd-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dd-yellow);
	background: rgba(255,203,5,0.12);
	border: 1px solid rgba(255,203,5,0.28);
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.dd-hero__h1 {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 900;
	color: var(--dd-white);
	line-height: 1.1;
	margin: 0 0 20px;
	max-width: 820px;
}

.dd-hero__sub {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: rgba(255,255,255,0.72);
	line-height: 1.7;
	max-width: 620px;
	margin: 0 0 36px;
}

.dd-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 48px;
}

.dd-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 32px;
	border-top: 1px solid rgba(255,255,255,0.10);
	padding-top: 28px;
}

.dd-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	color: rgba(255,255,255,0.65);
	font-weight: 500;
}

.dd-hero__trust-icon {
	width: 18px;
	height: 18px;
	color: var(--dd-yellow);
	flex-shrink: 0;
}

/* =============================================================
   2. PACKAGES SECTION
   ============================================================= */

.dd-packages {
	background: var(--dd-white);
	width: 100%;
}

.dd-packages .dd-section-heading {
	color: var(--dd-navy);
}

.dd-packages .dd-section-intro {
	color: var(--dd-slate);
}

/* ── Filter tabs ── */
.dd-filter {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.dd-filter__btn {
	font-size: 0.9rem;
	font-weight: 700;
	padding: 9px 22px;
	border-radius: 100px;
	border: 2px solid var(--dd-border);
	background: transparent;
	color: var(--dd-slate);
	cursor: pointer;
	transition: all 0.15s ease;
	line-height: 1;
	white-space: nowrap;
}

.dd-filter__btn:hover {
	border-color: var(--dd-navy);
	color: var(--dd-navy);
}

.dd-filter__btn.dd-filter--active {
	background: var(--dd-navy);
	border-color: var(--dd-navy);
	color: var(--dd-white);
}

/* ── Package grid ── */
.dd-pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
}

/* ── Package card ── */
.dd-card {
	background: var(--dd-white);
	border: 1.5px solid var(--dd-border);
	border-radius: var(--dd-radius);
	padding: 0;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dd-card:hover {
	box-shadow: 0 8px 32px rgba(30,48,78,0.13);
	transform: translateY(-2px);
}

.dd-card--promo {
	border-color: var(--dd-yellow);
}

.dd-card--hidden-by-filter,
.dd-card--load-hidden {
	display: none;
}

/* Card top accent bar */
.dd-card__top-bar {
	height: 4px;
	background: var(--dd-border);
	width: 100%;
}

.dd-card--promo .dd-card__top-bar {
	background: var(--dd-yellow);
}

/* Card body */
.dd-card__body {
	padding: 22px 22px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Provider badge */
.dd-card__provider-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.dd-card__provider-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dd-slate);
	background: var(--dd-light);
	padding: 4px 10px;
	border-radius: 100px;
}

/* Promo badge */
.dd-card__promo-badge {
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--dd-navy);
	background: var(--dd-yellow);
	padding: 4px 10px;
	border-radius: 100px;
	white-space: nowrap;
}

/* Speed display */
.dd-card__speed-wrap {
	margin-bottom: 4px;
}

.dd-card__speed-main {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.dd-card__speed-dl {
	font-size: clamp(2.2rem, 4vw, 2.8rem);
	font-weight: 900;
	color: var(--dd-navy);
	line-height: 1;
}

.dd-card__speed-unit {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dd-slate);
}

.dd-card__speed-label {
	font-size: 0.78rem;
	color: var(--dd-slate);
	margin-top: 2px;
}

.dd-card__speed-upload {
	font-size: 0.82rem;
	color: var(--dd-slate);
	margin-top: 2px;
}

/* Price */
.dd-card__price-wrap {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 14px 0;
	padding: 14px 0;
	border-top: 1px solid var(--dd-border);
	border-bottom: 1px solid var(--dd-border);
}

.dd-card__price-amount {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--dd-navy);
	line-height: 1;
}

.dd-card__price-per {
	font-size: 0.88rem;
	color: var(--dd-slate);
	font-weight: 500;
}

/* Features list */
.dd-card__features {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	flex: 1;
}

.dd-card__features li {
	position: relative;
	padding: 5px 0 5px 20px;
	font-size: 0.87rem;
	color: var(--dd-slate);
	line-height: 1.4;
}

.dd-card__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--dd-yellow);
	font-weight: 900;
}

.dd-card__netflix {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	color: #e50914;
	background: #fff3f3;
	border: 1px solid #f8d0d0;
	padding: 4px 10px;
	border-radius: 6px;
	margin-top: 6px;
	margin-bottom: 4px;
}

/* Card CTA */
.dd-card__select {
	width: 100%;
	margin: 0 0 4px;
	border-radius: 8px;
	font-size: 0.95rem;
}

.dd-card__footer {
	padding: 0 22px 16px;
}

.dd-card__tcs {
	font-size: 0.72rem;
	color: #aab8ca;
	text-align: center;
	margin: 8px 0 0;
	line-height: 1.4;
}

/* ── Load more ── */
.dd-packages__load-more-wrap {
	text-align: center;
	margin-top: 36px;
}

.dd-load-more {
	font-size: 0.95rem;
	font-weight: 700;
	padding: 13px 32px;
	border-radius: 8px;
	border: 2px solid var(--dd-border);
	background: transparent;
	color: var(--dd-navy);
	cursor: pointer;
	transition: all 0.15s ease;
}

.dd-load-more:hover {
	border-color: var(--dd-navy);
	background: var(--dd-navy);
	color: var(--dd-white);
}

/* =============================================================
   3. WHY INFINI-FI
   ============================================================= */

.dd-why {
	background: var(--dd-light);
	width: 100%;
}

.dd-why .dd-section-heading {
	color: var(--dd-navy);
}

.dd-why .dd-section-intro {
	color: var(--dd-slate);
}

.dd-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.dd-why-card {
	background: var(--dd-white);
	border: 1px solid var(--dd-border);
	border-top: 3px solid var(--dd-yellow);
	border-radius: var(--dd-radius);
	padding: 28px 24px;
	box-sizing: border-box;
}

.dd-why-card__icon {
	width: 44px;
	height: 44px;
	color: var(--dd-yellow);
	margin-bottom: 16px;
}

.dd-why-card__icon svg {
	width: 44px;
	height: 44px;
	display: block;
}

.dd-why-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dd-navy);
	margin: 0 0 8px;
	line-height: 1.3;
}

.dd-why-card__copy {
	font-size: 0.92rem;
	color: var(--dd-slate);
	margin: 0;
	line-height: 1.65;
}

/* =============================================================
   4. COMPARISON TABLE
   ============================================================= */

.dd-comparison {
	background: var(--dd-navy);
	width: 100%;
}

.dd-comparison .dd-section-heading {
	color: var(--dd-white);
}

.dd-comparison .dd-section-intro {
	color: rgba(255,255,255,0.70);
}

.dd-comparison__table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	margin-bottom: 24px;
}

.dd-comparison__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.93rem;
	min-width: 520px;
}

.dd-comparison__table thead th {
	padding: 15px 20px;
	text-align: left;
	font-weight: 700;
	font-size: 0.93rem;
	vertical-align: middle;
}

.dd-comparison__table thead th:first-child {
	background: rgba(255,255,255,0.07);
	color: rgba(255,255,255,0.48);
	font-weight: 600;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	width: 26%;
}

.dd-comparison__table thead th:nth-child(2),
.dd-comparison__table thead th:nth-child(3) {
	background: var(--dd-yellow);
	color: var(--dd-navy);
	font-weight: 900;
}

.dd-comparison__table tbody tr {
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dd-comparison__table tbody tr:nth-child(even) {
	background: rgba(255,255,255,0.04);
}

.dd-comparison__table tbody td {
	padding: 14px 20px;
	color: rgba(255,255,255,0.80);
	vertical-align: top;
	line-height: 1.55;
	font-size: 0.93rem;
}

.dd-comparison__table tbody td:first-child {
	color: rgba(255,255,255,0.44);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	white-space: nowrap;
}

.dd-comparison__note {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.48);
	margin: 0;
	font-style: italic;
	line-height: 1.65;
}

/* =============================================================
   5. STEPS / HOW IT WORKS
   ============================================================= */

.dd-steps {
	background: var(--dd-white);
	width: 100%;
}

.dd-steps .dd-section-heading {
	color: var(--dd-navy);
}

.dd-steps .dd-section-intro {
	color: var(--dd-slate);
}

.dd-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	align-items: stretch;
}

.dd-step {
	background: var(--dd-light);
	border: 1px solid var(--dd-border);
	border-radius: var(--dd-radius);
	padding: 26px 20px;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
}

.dd-step::after {
	content: '';
	position: absolute;
	top: 40px;
	right: -12px;
	width: 20px;
	height: 2px;
	background: var(--dd-yellow);
	opacity: 0.6;
	z-index: 1;
}

.dd-step:last-child::after {
	display: none;
}

.dd-step__number {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--dd-yellow);
	color: var(--dd-navy);
	font-weight: 900;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.dd-step__title {
	font-size: 0.94rem;
	font-weight: 700;
	color: var(--dd-navy);
	margin: 0 0 8px;
	line-height: 1.3;
}

.dd-step__copy {
	font-size: 0.87rem;
	color: var(--dd-slate);
	margin: 0;
	line-height: 1.6;
}

/* =============================================================
   6. COVERAGE CTA BAND
   ============================================================= */

.dd-coverage {
	background: var(--dd-yellow);
	width: 100%;
}

.dd-coverage__inner {
	max-width: var(--dd-inner-max);
	margin: 0 auto;
	padding: clamp(48px, 6vw, 72px) var(--dd-inner-pad);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.dd-coverage__text {
	flex: 1;
	min-width: 260px;
}

.dd-coverage__heading {
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 800;
	color: var(--dd-navy);
	margin: 0 0 10px;
	line-height: 1.2;
}

.dd-coverage__sub {
	font-size: 1rem;
	color: rgba(30,48,78,0.70);
	margin: 0;
	line-height: 1.6;
}

.dd-coverage__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

/* =============================================================
   7. FAQ SECTION
   ============================================================= */

.dd-faq {
	background: var(--dd-light);
	width: 100%;
}

.dd-faq .dd-section-heading {
	color: var(--dd-navy);
}

.dd-faq .dd-section-intro {
	color: var(--dd-slate);
}

.dd-faq__list {
	max-width: 820px;
	margin-bottom: 32px;
}

.dd-faq-item {
	border-bottom: 1px solid var(--dd-border);
}

.dd-faq-item:first-child {
	border-top: 1px solid var(--dd-border);
}

.dd-faq-item summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	color: var(--dd-navy);
	line-height: 1.4;
	user-select: none;
}

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

.dd-faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--dd-navy);
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.2s ease;
}

.dd-faq-item[open] summary::after {
	transform: rotate(45deg);
}

.dd-faq-item .dd-faq-answer {
	font-size: 0.95rem;
	color: var(--dd-slate);
	line-height: 1.7;
	padding-bottom: 18px;
}

.dd-faq-item .dd-faq-answer p {
	margin: 0 0 10px;
}

.dd-faq-item .dd-faq-answer p:last-child {
	margin-bottom: 0;
}

.dd-faq-item .dd-faq-answer a {
	color: var(--dd-navy);
	font-weight: 600;
	text-decoration: underline;
}

.dd-faq__more {
	font-size: 0.95rem;
	color: var(--dd-slate);
}

.dd-faq__more a {
	color: var(--dd-navy);
	font-weight: 700;
	text-decoration: underline;
}

/* =============================================================
   8. FINAL CTA
   ============================================================= */

.dd-final-cta {
	background: var(--dd-navy);
	width: 100%;
}

.dd-final-cta__inner {
	max-width: var(--dd-inner-max);
	margin: 0 auto;
	padding: var(--dd-section-py) var(--dd-inner-pad);
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.dd-final-cta__left .dd-section-heading {
	color: var(--dd-white);
	margin-bottom: 14px;
}

.dd-final-cta__sub {
	font-size: 1rem;
	color: rgba(255,255,255,0.70);
	line-height: 1.7;
	margin: 0 0 32px;
}

.dd-final-cta__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dd-final-cta__right .wpforms-container {
	background: var(--dd-white);
	border-radius: var(--dd-radius);
	padding: 28px;
}

/* WPForms label overrides inside the CTA box */
.dd-final-cta__right .wpforms-field label {
	color: var(--dd-navy) !important;
}

/* =============================================================
   9. MODAL / POPUP
   ============================================================= */

.dd-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(22,36,62,0.72);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	overflow-y: auto;
	backdrop-filter: blur(2px);
}

.dd-modal-backdrop.is-open {
	display: flex;
}

.dd-modal {
	background: var(--dd-white);
	border-radius: 20px;
	width: 100%;
	max-width: 600px;
	box-shadow: 0 24px 80px rgba(22,36,62,0.30);
	position: relative;
	overflow: hidden;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}

.dd-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(30,48,78,0.08);
	border: none;
	cursor: pointer;
	font-size: 1.3rem;
	line-height: 1;
	color: var(--dd-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.15s ease;
}

.dd-modal__close:hover {
	background: rgba(30,48,78,0.16);
}

.dd-modal__summary {
	background: var(--dd-navy);
	padding: 28px 28px 24px;
}

.dd-modal__summary .dd-modal__close {
	background: rgba(255,255,255,0.12);
	color: var(--dd-white);
}

.dd-modal__summary .dd-modal__close:hover {
	background: rgba(255,255,255,0.22);
}

.dd-modal__pkg-kicker {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--dd-yellow);
	margin-bottom: 8px;
}

.dd-modal__pkg-name {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--dd-white);
	margin: 0 0 14px;
	line-height: 1.2;
	padding-right: 40px;
}

.dd-modal__pkg-details {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dd-modal__pkg-detail-chip {
	font-size: 0.85rem;
	font-weight: 600;
	color: rgba(255,255,255,0.90);
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.14);
	padding: 5px 12px;
	border-radius: 100px;
}

.dd-modal__pkg-promo-chip {
	background: var(--dd-yellow);
	color: var(--dd-navy);
	border-color: var(--dd-yellow);
	font-weight: 700;
}

.dd-modal__body {
	padding: 28px;
}

.dd-modal__form-heading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dd-navy);
	margin: 0 0 18px;
}

/* WPForms label overrides in modal */
.dd-modal .wpforms-field label {
	color: var(--dd-navy) !important;
}

.dd-modal__divider {
	border: none;
	border-top: 1px solid var(--dd-border);
	margin: 24px 0;
}

.dd-modal__wa-section {
	text-align: center;
}

.dd-modal__wa-label {
	font-size: 0.88rem;
	color: var(--dd-slate);
	margin: 0 0 12px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* ≤ 1100px — 2-column package grid */
@media (max-width: 1100px) {
	.dd-pkg-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.dd-steps__list {
		grid-template-columns: repeat(3, 1fr);
	}

	.dd-step:nth-child(3)::after {
		display: none;
	}

	.dd-final-cta__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ≤ 767px — 1-column, mobile layout */
@media (max-width: 767px) {
	.dd-hero__ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.dd-hero__ctas .dd-btn {
		width: 100%;
		justify-content: center;
	}

	.dd-hero__trust {
		gap: 14px 20px;
	}

	.dd-pkg-grid {
		grid-template-columns: 1fr;
	}

	.dd-why__grid {
		grid-template-columns: 1fr;
	}

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

	.dd-step:nth-child(2)::after,
	.dd-step:nth-child(4)::after {
		display: none;
	}

	.dd-coverage__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.dd-coverage__actions {
		flex-direction: column;
		width: 100%;
	}

	.dd-coverage__actions .dd-btn {
		width: 100%;
		justify-content: center;
	}

	.dd-final-cta__btns {
		flex-direction: column;
	}

	.dd-final-cta__btns .dd-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ≤ 479px — tightest mobile */
@media (max-width: 479px) {
	.dd-inner {
		padding: clamp(44px, 8vw, 60px) 20px;
	}

	.dd-hero__inner {
		padding: 56px 20px 48px;
	}

	.dd-coverage__inner {
		padding: 40px 20px;
	}

	.dd-steps__list {
		grid-template-columns: 1fr;
	}

	.dd-step::after {
		display: none;
	}

	.dd-filter__btn {
		font-size: 0.85rem;
		padding: 8px 16px;
	}

	.dd-modal {
		border-radius: 16px;
	}

	.dd-modal__summary,
	.dd-modal__body {
		padding: 20px;
	}
}
