/* ============================================================
   DealMango DK front page (member design)
   Scoped with .dm- prefix to avoid clashing with style.css
   ============================================================ */

:root {
	--dm-green: #39bf4c;
	--dm-green-2: #4cc655;
	--dm-green-dark: #2fa84f;
	--dm-green-ink: #2e7d46;
	--dm-orange: #f26e21;
	--dm-orange-dark: #df5f13;
	--dm-ink: #171a1f;
	--dm-muted: #6b7280;
	--dm-mint: #e9f6ec;
	--dm-mint-2: #d7efdb;
	--dm-mint-3: #f4faf6;
	--dm-gold: #f6b01e;
	--dm-border: #e7eae8;
	--dm-card-shadow: 0 10px 30px rgba(23, 26, 31, 0.06);
}

.dm-hero,
.dm-how,
.dm-calc,
.dm-cta-banner,
.dm-cats,
.dm-products,
.dm-why,
.dm-faq,
.dm-reviews,
.dm-mission,
.dm-story,
.dm-transparency,
.dm-trust,
.dm-join {
	font-family: 'Nunito', sans-serif;
	color: var(--dm-ink);
	-webkit-font-smoothing: antialiased;
}

.dm-hero *,
.dm-how *,
.dm-calc *,
.dm-cta-banner *,
.dm-cats *,
.dm-products *,
.dm-why *,
.dm-faq *,
.dm-reviews *,
.dm-mission *,
.dm-story *,
.dm-transparency *,
.dm-trust *,
.dm-join * {
	box-sizing: border-box;
}

/* No hover underline on any front-page / footer link */
.dm-hero a,
.dm-how a,
.dm-calc a,
.dm-cta-banner a,
.dm-cats a,
.dm-products a,
.dm-why a,
.dm-faq a,
.dm-reviews a,
.dm-footer a,
.dm-mission a,
.dm-story a,
.dm-transparency a,
.dm-trust a,
.dm-join a,
.dm-hero a:hover,
.dm-how a:hover,
.dm-calc a:hover,
.dm-cta-banner a:hover,
.dm-cats a:hover,
.dm-products a:hover,
.dm-why a:hover,
.dm-faq a:hover,
.dm-reviews a:hover,
.dm-footer a:hover,
.dm-mission a:hover,
.dm-story a:hover,
.dm-transparency a:hover,
.dm-trust a:hover,
.dm-join a:hover,
.dm-hero a:focus,
.dm-how a:focus,
.dm-calc a:focus,
.dm-cta-banner a:focus,
.dm-cats a:focus,
.dm-products a:focus,
.dm-why a:focus,
.dm-faq a:focus,
.dm-reviews a:focus,
.dm-footer a:focus,
.dm-mission a:focus,
.dm-story a:focus,
.dm-transparency a:focus,
.dm-trust a:focus,
.dm-join a:focus {
	text-decoration: none;
}

/* ============================================================
   TOP BAR (all DK pages) — replaces .bullet-head
   ============================================================ */
.dm-topbar { font-family: 'Nunito', sans-serif; display: contents; }
.dm-topbar * { box-sizing: border-box; }
.dm-topbar a { text-decoration: none; }
.dm-topbar a:hover { text-decoration: none; }

.dm-topbar-promo {
	background: linear-gradient(120deg, #2fb646 0%, #45c34f 60%, #58c94f 100%);
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.dm-topbar-promo-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 44px;
	padding: 6px 0;
}
.dm-topbar-promo-items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
}
.dm-topbar-promo-items i { color: #fff; margin-right: 4px; }
.dm-topbar-dot { opacity: .7; }
.dm-topbar-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--dm-orange);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	padding: 8px 18px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background .15s ease;
}
.dm-topbar-btn i { font-size: 11px; }
.dm-topbar-btn:hover { background: var(--dm-orange-dark); color: #fff; }

.dm-topbar-info { background: #fff; border-bottom: 1px solid var(--dm-border); }
.dm-topbar-info-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
	padding: 6px 0;
	font-size: 13px;
	font-weight: 700;
	color: #4b5563;
}
.dm-topbar-info-inner i { color: var(--dm-green-dark); margin-right: 6px; }

@media (max-width: 767px) {
	.dm-topbar-promo { display: none; }
	.dm-topbar-info-inner { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
}

/* ---------- Shared buttons ---------- */
.dm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 26px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.dm-btn i { font-size: 13px; }
.dm-btn-orange {
	background: var(--dm-orange);
	color: #fff;
	box-shadow: 0 8px 20px rgba(242, 110, 33, .28);
}
.dm-btn-orange:hover { background: var(--dm-orange-dark); color: #fff; transform: translateY(-1px); }
.dm-btn-ghost {
	background: rgba(255, 255, 255, .16);
	border: 1px solid rgba(255, 255, 255, .7);
	color: #fff;
}
.dm-btn-ghost:hover { background: rgba(255, 255, 255, .26); color: #fff; }
.dm-btn-block { width: 100%; }
.dm-btn-green {
	background: var(--dm-green);
	color: #fff;
	box-shadow: 0 8px 20px rgba(57, 191, 76, .28);
}
.dm-btn-green:hover { background: var(--dm-green-dark); color: #fff; transform: translateY(-1px); }

.dm-pill-eyebrow-frost {
	background: rgba(255, 255, 255, .22);
	border: 1px solid rgba(255, 255, 255, .35);
}

.dm-icon-circle-solid {
	background: var(--dm-green);
	color: #fff;
}

/* ---------- Shared section head ---------- */
.dm-section-head { text-align: center; max-width: 740px; margin: 0 auto 46px; }
.dm-eyebrow {
	color: var(--dm-green-dark);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-size: 13px;
}
.dm-eyebrow-light { color: rgba(255, 255, 255, .85); }
.dm-section-head h2 {
	font-size: 38px;
	font-weight: 800;
	color: var(--dm-ink);
	margin: 12px 0 14px;
	line-height: 1.15;
}
.dm-section-head p { color: var(--dm-muted); font-size: 17px; margin: 0; }

/* ---------- Icon circles ---------- */
.dm-icon-circle {
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--dm-mint-2);
	color: var(--dm-green-dark);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.dm-icon-circle.sm { width: 40px; height: 40px; border-radius: 12px; font-size: 16px; }

/* ---------- Stars ---------- */
.dm-stars { display: inline-flex; gap: 2px; }
.dm-stars i { font-size: 14px; }
.dm-stars-gold i { color: var(--dm-gold); }
.dm-stars-lg i { font-size: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.dm-hero {
	background: linear-gradient(120deg, #2fb646 0%, #45c34f 55%, #58c94f 100%);
	position: relative;
	overflow: hidden;
}
.dm-hero-inner {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 66px 0 72px;
}
.dm-hero-left { flex: 1 1 55%; min-width: 0; }
.dm-hero-right { flex: 1 1 45%; text-align: center; }
.dm-hero-right img { max-width: 100%; height: auto; }

.dm-pill-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 0, 0, .13);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: 999px;
}
.dm-hero-title {
	color: #fff;
	font-weight: 800;
	font-size: 54px;
	line-height: 1.04;
	margin: 22px 0 16px;
}
.dm-hero-price {
	display: inline-block;
	background: var(--dm-orange);
	color: #fff;
	font-weight: 800;
	font-size: 40px;
	padding: 8px 20px;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(242, 110, 33, .3);
}
.dm-hero-sub {
	color: rgba(255, 255, 255, .96);
	font-size: 18px;
	line-height: 1.55;
	max-width: 520px;
	margin: 22px 0 24px;
}
.dm-hero-sub strong { font-weight: 800; }

.dm-hero-checks {
	background: #fff;
	border-radius: 18px;
	padding: 20px 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	max-width: 560px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
.dm-hero-check {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 15px;
	color: #2a2f36;
}
.dm-hero-check i { color: var(--dm-green-dark); font-size: 16px; }

.dm-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 20px; }

.dm-hero-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}
.dm-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.dm-hero-pay {
	display: flex;
	align-items: center;
	margin-top: 16px;
}

/* ---------- About hero stats ---------- */
.dm-about-hero .dm-hero-sub { margin-bottom: 8px; }
.dm-about-hero .dm-hero-cta { margin-top: 8px; margin-bottom: 36px; }
.dm-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 36px 48px;
	color: #fff;
}
.dm-hero-stat { display: flex; flex-direction: column; gap: 2px; }
.dm-hero-stat strong {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.1;
}
.dm-hero-stat span {
	font-size: 14px;
	font-weight: 600;
	opacity: .92;
}

/* ============================================================
   SÅDAN VIRKER
   ============================================================ */
.dm-how { padding: 82px 0; background: #fff; }
.dm-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dm-how-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--dm-border);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
	overflow: hidden;
}
.dm-how-num {
	position: absolute;
	top: 22px;
	right: 26px;
	font-size: 46px;
	font-weight: 800;
	color: #e9f6ec;
	line-height: 1;
}
.dm-how-card h3 { margin: 22px 0 8px; font-size: 20px; font-weight: 800; }
.dm-how-card p { color: var(--dm-muted); font-size: 15px; margin: 0; line-height: 1.55; }

/* ============================================================
   BESPARELSES-BEREGNER
   ============================================================ */
.dm-calc { padding: 82px 0; background: #fbfcfb; }
.dm-calc-card {
	background: #fff;
	border: 1px solid var(--dm-border);
	border-radius: 24px;
	box-shadow: var(--dm-card-shadow);
	padding: 24px;
}
.dm-calc-body { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 22px; }
.dm-calc-left { padding: 10px 14px; }
.dm-calc-label { font-weight: 700; font-size: 15px; color: #333b42; }
.dm-calc-amount { font-size: 46px; font-weight: 800; color: var(--dm-green-dark); margin: 6px 0 18px; }
.dm-calc-amount small { font-size: 18px; font-weight: 700; }

.dm-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--dm-green) 25%, #e3e7e4 25%);
	outline: none;
	margin: 4px 0 0;
}
.dm-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--dm-green);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	cursor: pointer;
}
.dm-slider::-moz-range-thumb {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--dm-green);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	cursor: pointer;
}
.dm-calc-ticks {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 700;
	color: #9aa1a9;
	margin-top: 10px;
}
.dm-calc-ticks .active { color: var(--dm-green-dark); }

.dm-calc-breakdown { background: #f5f7f6; border-radius: 14px; padding: 8px 18px; margin-top: 22px; }
.dm-calc-row { display: flex; justify-content: space-between; padding: 11px 0; font-size: 15px; color: #4b5563; border-bottom: 1px solid #ebefec; }
.dm-calc-row:last-child { border-bottom: none; }
.dm-calc-row span:last-child { font-weight: 800; color: #111; }
.dm-calc-row-green span:last-child { color: var(--dm-green-dark); }
.dm-calc-row-muted span:last-child { color: #9aa1a9; font-weight: 700; }

.dm-calc-right { background: #e6f5e9; border-radius: 18px; padding: 30px; display: flex; flex-direction: column; }
.dm-calc-right-label { color: var(--dm-green-dark); font-weight: 800; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; }
.dm-calc-net { font-size: 54px; font-weight: 800; color: var(--dm-green-dark); margin: 6px 0 16px; }
.dm-calc-net small { font-size: 20px; }
.dm-calc-pill {
	background: #fff;
	border-radius: 999px;
	padding: 11px 18px;
	font-size: 13px;
	font-weight: 800;
	color: var(--dm-green-ink);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: auto;
	align-self: flex-start;
}
.dm-calc-pill i { color: var(--dm-green-dark); }
.dm-calc-right .dm-btn { margin-top: 26px; }
.dm-calc-note { font-size: 12px; color: #5f6b60; margin-top: 12px; text-align: center; }

.dm-calc-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	border-top: 1px solid #eef1ef;
	margin-top: 22px;
	padding: 22px 10px 6px;
}
.dm-calc-feature { display: flex; align-items: center; gap: 14px; }
.dm-calc-feature strong { display: block; font-size: 15px; }
.dm-calc-feature span { display: block; color: var(--dm-muted); font-size: 13px; }

/* ============================================================
   GRØN CTA-BANNER
   ============================================================ */
.dm-cta-banner { padding: 24px 0 46px; background: #fff; }
.dm-cta-banner-inner {
	background: linear-gradient(120deg, #2fb646 0%, #45c34f 60%, #58c94f 100%);
	border-radius: 26px;
	padding: 42px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.dm-cta-price { font-size: 46px; font-weight: 800; color: #fff; margin: 8px 0 12px; }
.dm-cta-price small { font-size: 20px; font-weight: 600; }
.dm-cta-banner-text p { color: rgba(255, 255, 255, .95); font-size: 16px; max-width: 540px; margin: 0 0 14px; line-height: 1.5; }
.dm-cta-checks { display: flex; flex-wrap: wrap; gap: 8px 22px; color: #fff; font-size: 14px; font-weight: 700; }
.dm-cta-checks i { margin-right: 6px; }
.dm-cta-banner-action { flex-shrink: 0; }

/* ============================================================
   KATEGORIER
   ============================================================ */
.dm-cats { padding: 42px 0; background: #fff; }
.dm-cats-title { font-size: 28px; font-weight: 800; margin: 0 0 22px; }
.dm-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dm-cat {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--dm-mint);
	border-radius: 16px;
	padding: 16px 20px;
	color: var(--dm-ink);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: background .15s ease, transform .15s ease;
}
.dm-cat:hover { background: var(--dm-mint-2); color: var(--dm-ink); transform: translateY(-1px); }

/* ============================================================
   NYESTE PRODUKTER
   ============================================================ */
.dm-products { padding: 44px 0 64px; background: #fff; }
.dm-products-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dm-products-head h2 { font-size: 28px; font-weight: 800; margin: 0; }
.dm-see-all { color: var(--dm-green-dark); font-weight: 800; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.dm-see-all i { font-size: 12px; }
.dm-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.dm-product {
	display: flex;
	flex-direction: column;
	background: #ecf6ee;
	border: 1px solid #e0efe3;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}
.dm-product:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(23, 26, 31, .1); }
.dm-product-media {
	position: relative;
	height: 200px;
	padding: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4faf6;
}
.dm-product-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.dm-badge-member {
	position: absolute; top: 12px; left: 12px;
	background: var(--dm-green);
	color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .5px;
	padding: 5px 11px; border-radius: 999px;
}
.dm-badge-discount {
	position: absolute; top: 12px; right: 12px;
	background: var(--dm-orange);
	color: #fff; font-size: 12px; font-weight: 800;
	padding: 5px 11px; border-radius: 999px;
}
.dm-product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.dm-product-name { font-weight: 700; font-size: 15px; color: #1c1c1c; line-height: 1.35; min-height: 40px; margin-bottom: 14px; }
.dm-product-before { color: #8a9290; text-decoration: line-through; font-size: 13px; font-weight: 600; }
.dm-product-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 4px; }
.dm-product-price-label { color: var(--dm-green-dark); font-size: 11px; font-weight: 800; letter-spacing: .5px; }
.dm-product-price { font-size: 24px; font-weight: 800; color: #111; }
.dm-product-price small { font-size: 13px; font-weight: 700; }
.dm-product-save { margin-top: 14px; background: #dcefe0; color: var(--dm-green-ink); text-align: center; font-weight: 800; font-size: 13px; padding: 9px; border-radius: 10px; }

/* ============================================================
   HVORFOR BLIVE MEDLEM
   ============================================================ */
.dm-why { padding: 82px 0; background: #fafbfa; }
.dm-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dm-why-card { background: #fff; border: 1px solid var(--dm-border); border-radius: 18px; padding: 28px; }
.dm-why-card h3 { margin: 18px 0 8px; font-size: 18px; font-weight: 800; }
.dm-why-card p { color: var(--dm-muted); font-size: 15px; margin: 0; line-height: 1.55; }
.dm-why-cta { text-align: center; margin-top: 42px; }

/* ============================================================
   FAQ
   ============================================================ */
.dm-faq { padding: 82px 0; background: #fff; }
.dm-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.dm-faq-item { border: 1px solid var(--dm-border); border-radius: 14px; background: #fff; overflow: hidden; }
.dm-faq-q {
	width: 100%;
	text-align: left;
	background: #fff;
	border: none;
	padding: 18px 22px;
	font-size: 16px;
	font-weight: 700;
	color: #1c1c1c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	font-family: inherit;
}
.dm-faq-q i { color: #9aa1a9; transition: transform .25s ease; flex-shrink: 0; }
.dm-faq-item.open .dm-faq-q i { transform: rotate(180deg); }
.dm-faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; padding: 0 22px; }
.dm-faq-a p { color: var(--dm-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.dm-faq-item.open .dm-faq-a { max-height: 320px; padding: 0 22px 20px; }

/* ============================================================
   ANMELDELSER
   ============================================================ */
.dm-reviews { padding: 82px 0; background: #f1f8f2; }
.dm-reviews-head { text-align: center; margin-bottom: 42px; }
.dm-reviews-head .dm-stars { margin-bottom: 12px; }
.dm-reviews-head .dm-eyebrow { display: block; margin-bottom: 10px; }
.dm-reviews-head h2 { font-size: 34px; font-weight: 800; margin: 0; }
.dm-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dm-review-card { background: #fff; border-radius: 18px; padding: 26px; box-shadow: 0 4px 16px rgba(23, 26, 31, .05); }
.dm-review-card .dm-stars { margin-bottom: 14px; }
.dm-review-name { font-weight: 800; font-size: 16px; margin-bottom: 10px; }
.dm-review-text { color: #5c6660; font-size: 14px; line-height: 1.65; margin: 0; }
.dm-reviews-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.dm-trust-chip { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 15px 18px; font-weight: 700; font-size: 14px; flex-wrap: wrap; }

/* ============================================================
   BENEFITS PAGE — shared setup for new sections
   ============================================================ */
.dm-compare, .dm-perks, .dm-final {
	font-family: 'Nunito', sans-serif;
	color: var(--dm-ink);
	-webkit-font-smoothing: antialiased;
}
.dm-compare *, .dm-perks *, .dm-final * { box-sizing: border-box; }
.dm-compare a, .dm-perks a, .dm-final a,
.dm-compare a:hover, .dm-perks a:hover, .dm-final a:hover,
.dm-compare a:focus, .dm-perks a:focus, .dm-final a:focus { text-decoration: none; }

/* ---------- Plan card (hero + final CTA) ---------- */
.dm-plan-card {
	background: #fff;
	border-radius: 20px;
	padding: 26px 28px;
	box-shadow: 0 20px 45px rgba(23, 26, 31, .12);
	max-width: 540px;
}
.dm-plan-card-label { display: block; color: var(--dm-green-dark); font-weight: 800; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; }
.dm-plan-head { display: flex; align-items: center; gap: 12px; margin: 8px 0 18px; }
.dm-plan-price { font-size: 44px; font-weight: 800; color: var(--dm-ink); line-height: 1; }
.dm-plan-price small { font-size: 18px; font-weight: 600; color: var(--dm-muted); }
.dm-plan-badge { margin-left: auto; background: var(--dm-mint); color: var(--dm-green-dark); font-weight: 800; font-size: 12px; padding: 6px 14px; border-radius: 999px; }
.dm-plan-checks { list-style: none; padding: 0; margin: 0 0 20px; }
.dm-plan-checks li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: #2a2f36; margin-bottom: 12px; }
.dm-plan-checks li:last-child { margin-bottom: 0; }
.dm-plan-checks li i { color: var(--dm-green-dark); font-size: 16px; }
.dm-plan-checks-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.dm-plan-checks-2 li { margin-bottom: 0; }
.dm-plan-note { color: var(--dm-muted); font-size: 12px; margin-top: 14px; text-align: center; }
.dm-hero .dm-plan-card { margin: 4px 0 6px; }

.dm-plan-card-center { text-align: center; }
.dm-plan-card-center .dm-plan-head { justify-content: center; }
.dm-plan-card-center .dm-plan-checks { max-width: 290px; margin-left: auto; margin-right: auto; }

/* ---------- Comparison ---------- */
.dm-compare { padding: 82px 0; background: #fafbfa; }
.dm-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.dm-compare-card { background: #fff; border: 1px solid var(--dm-border); border-radius: 20px; padding: 32px; }
.dm-compare-highlight { border: 2px solid var(--dm-green); box-shadow: 0 16px 40px rgba(57, 191, 76, .15); }
.dm-compare-badge { display: inline-flex; align-items: center; gap: 8px; background: #eef0ef; color: #6b7280; font-weight: 800; font-size: 12px; letter-spacing: .6px; padding: 6px 14px; border-radius: 999px; }
.dm-compare-badge-green { background: var(--dm-mint); color: var(--dm-green-dark); }
.dm-compare-title { font-size: 24px; font-weight: 800; margin: 18px 0 20px; }
.dm-compare-title-green { color: var(--dm-green-dark); }
.dm-compare-list { list-style: none; padding: 0; margin: 0; }
.dm-compare-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: #3a4048; padding: 9px 0; }
.dm-compare-list li i { font-size: 18px; flex-shrink: 0; }
.dm-compare-list .dm-x { color: #e5484d; }
.dm-compare-list .dm-check { color: var(--dm-green-dark); }
.dm-compare-highlight .dm-btn { margin-top: 18px; }

/* ---------- Perks ---------- */
.dm-perks { padding: 82px 0; background: #fff; }
.dm-perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dm-perk { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--dm-border); border-radius: 16px; padding: 22px 24px; }
.dm-perk h3 { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.dm-perk p { color: var(--dm-muted); font-size: 14px; line-height: 1.5; margin: 0; }

/* ---------- Final CTA ---------- */
.dm-final { padding: 24px 0 70px; background: #fff; }
.dm-final-inner {
	background: linear-gradient(120deg, #2fb646 0%, #45c34f 60%, #58c94f 100%);
	border-radius: 26px;
	padding: 56px 40px;
	text-align: center;
}
.dm-final-inner .dm-pill-eyebrow { background: rgba(255, 255, 255, .18); }
.dm-final-inner h2 { color: #fff; font-size: 40px; font-weight: 800; margin: 18px 0 12px; }
.dm-final-sub { color: rgba(255, 255, 255, .95); font-size: 17px; margin: 0 0 26px; }
.dm-final .dm-plan-card { margin: 0 auto; }

/* ============================================================
   OM OS — mission, story, transparency, trust, join
   ============================================================ */
.dm-mission { padding: 82px 0; background: #fff; }
.dm-mission-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.dm-mission-card {
	background: #fff;
	border: 1px solid var(--dm-border);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}
.dm-mission-card h3 { margin: 18px 0 8px; font-size: 18px; font-weight: 800; }
.dm-mission-card p { color: var(--dm-muted); font-size: 15px; margin: 0; line-height: 1.55; }

.dm-story { padding: 82px 0; background: #f5faf7; }
.dm-story-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 48px;
	align-items: stretch;
}
.dm-story-quote {
	background: linear-gradient(145deg, #d4f0c8 0%, #b8e4b0 45%, #9fd89a 100%);
	border-radius: 32px;
	padding: 36px 34px 32px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 30px rgba(23, 26, 31, .06);
	min-height: 100%;
}
.dm-story-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	background: #fff;
	color: var(--dm-green-dark);
	font-weight: 800;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 28px;
}
.dm-story-badge i { font-size: 11px; }
.dm-story-quote blockquote {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--dm-ink);
	margin: 0 0 18px;
}
.dm-story-attr {
	font-size: 15px;
	font-weight: 600;
	color: var(--dm-ink);
	margin-bottom: auto;
}
.dm-story-loved {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 40px;
}
.dm-story-avatars { display: flex; }
.dm-story-avatars span {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--dm-green);
	border: 2px solid #fff;
	margin-left: -10px;
}
.dm-story-avatars span:first-child { margin-left: 0; background: #2fa84f; }
.dm-story-avatars span:nth-child(2) { background: #45c34f; }
.dm-story-avatars span:nth-child(3) { background: #58c94f; }
.dm-story-loved strong { display: block; font-size: 15px; font-weight: 800; color: var(--dm-ink); }
.dm-story-loved span { font-size: 13px; color: var(--dm-muted); font-weight: 600; }

.dm-story-content .dm-eyebrow { display: block; margin-bottom: 10px; }
.dm-story-content h2 {
	font-size: 34px;
	font-weight: 800;
	margin: 0 0 18px;
	line-height: 1.15;
}
.dm-story-content > p {
	color: #4b5563;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 14px;
}
.dm-story-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 28px;
}
.dm-story-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--dm-border);
	border-radius: 14px;
	padding: 16px 18px;
	box-shadow: 0 4px 16px rgba(23, 26, 31, .04);
}
.dm-story-feature strong { font-size: 14px; font-weight: 800; }

/* About how — 4 steps with orange Trin badges */
.dm-how-about .dm-how-grid-4 { grid-template-columns: repeat(4, 1fr); padding-top: 12px; }
.dm-how-about .dm-how-card {
	padding-top: 40px;
	overflow: visible;
}
.dm-how-about .dm-how-num { display: none; }
.dm-how-step {
	position: absolute;
	top: -12px;
	left: 22px;
	background: var(--dm-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 6px 14px;
	border-radius: 999px;
	letter-spacing: .2px;
	box-shadow: 0 6px 14px rgba(242, 110, 33, .28);
}

.dm-benefits-about { background: #f7fbf7; }
.dm-why-grid-4 { grid-template-columns: repeat(4, 1fr); }
.dm-benefits-about .dm-why-card {
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.dm-transparency { padding: 24px 0 46px; background: #fff; }
.dm-transparency-inner {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 40px;
	align-items: center;
	background: linear-gradient(135deg, #45c34f 0%, #39bf4c 55%, #2fb646 100%);
	border-radius: 26px;
	padding: 48px 44px;
	box-shadow: 0 16px 40px rgba(57, 191, 76, .22);
}
.dm-transparency-left h2 {
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	margin: 18px 0 14px;
	line-height: 1.15;
}
.dm-transparency-left p {
	color: rgba(255, 255, 255, .95);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	max-width: 420px;
}
.dm-transparency-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.dm-transparency-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 999px;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 700;
	color: var(--dm-ink);
	line-height: 1.35;
}
.dm-transparency-list li i {
	color: var(--dm-green);
	font-size: 18px;
	flex-shrink: 0;
}

.dm-trust { padding: 82px 0; background: #f8faf9; }
.dm-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.dm-trust-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border-radius: 18px;
	padding: 26px 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}
.dm-trust-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.dm-trust-card p { margin: 0; color: var(--dm-muted); font-size: 14px; line-height: 1.5; }
.dm-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px 36px;
	margin-top: 42px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .8px;
}
.dm-trust-badges span { display: inline-flex; align-items: center; gap: 8px; }
.dm-trust-badges i { font-size: 14px; }

.dm-faq .dm-section-head a { color: var(--dm-green-dark); font-weight: 700; }
.dm-faq .dm-section-head a:hover { color: var(--dm-green-ink); }
.dm-faq .dm-faq-item { box-shadow: 0 4px 16px rgba(23, 26, 31, .04); border-radius: 16px; }

.dm-join { padding: 24px 0 70px; background: #fff; }
.dm-join-inner {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 40px;
	align-items: center;
	background: linear-gradient(120deg, #2fb646 0%, #45c34f 60%, #58c94f 100%);
	border-radius: 26px;
	padding: 48px 44px;
	box-shadow: 0 16px 40px rgba(57, 191, 76, .2);
}
.dm-join-left h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	margin: 18px 0 14px;
	line-height: 1.15;
}
.dm-join-left > p {
	color: rgba(255, 255, 255, .95);
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 520px;
}
.dm-join-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.dm-join-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}
.dm-join-checks i { margin-right: 6px; }
.dm-join .dm-plan-card { max-width: none; margin: 0; }

/* ============================================================
   PRODUCT PAGE (DK) — .dm-pdp
   ============================================================ */
.dm-pdp { font-family: 'Nunito', sans-serif; color: var(--dm-ink); padding: 24px 0 64px; }
.dm-pdp * { box-sizing: border-box; }
.dm-pdp a { text-decoration: none; }

.dm-breadcrumb { font-size: 13px; color: var(--dm-muted); margin-bottom: 22px; }
.dm-breadcrumb a { color: var(--dm-muted); }
.dm-breadcrumb a:hover { color: var(--dm-green-dark); }
.dm-breadcrumb-sep { margin: 0 8px; color: #c3c9c4; }
.dm-breadcrumb-current { color: var(--dm-ink); font-weight: 700; }

.dm-pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

/* Gallery */
.dm-pdp-main {
	background: #f4faf6;
	border: 1px solid var(--dm-border);
	border-radius: 20px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
}
.dm-pdp-main img { max-width: 100%; max-height: 440px; object-fit: contain; }
.dm-pdp-thumbs { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.dm-pdp-thumbs .extraImages {
	width: 88px; height: 88px;
	object-fit: contain;
	background: #f4faf6;
	border: 1px solid var(--dm-border);
	border-radius: 14px;
	padding: 8px;
	cursor: pointer;
	opacity: 1 !important;
	transition: border-color .15s ease;
}
.dm-pdp-thumbs .extraImages:hover { border-color: var(--dm-green); }
.dm-pdp-thumbs .dm-pdp-thumb-active { border-color: var(--dm-green); border-width: 2px; }

/* Info / buy box */
.dm-pdp-title { font-size: 30px; font-weight: 800; margin: 0 0 12px; line-height: 1.15; }
.dm-pdp-title a { color: inherit; }
.dm-pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.dm-pdp-reviews-count { color: var(--dm-muted); font-size: 14px; font-weight: 600; }

.dm-pdp .buy-box { border: none; padding: 0; margin: 0; background: none; box-shadow: none; }

.dm-pdp-prices {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0 0 20px;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(23, 26, 31, .05);
}
.dm-pdp .memberprice, .dm-pdp .normalprice {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	border: 1.5px solid var(--dm-border);
	padding: 18px 20px;
	background: #fff;
	cursor: pointer;
	position: relative;
	transition: background .15s ease, border-color .15s ease;
}
.dm-pdp .memberprice { border-radius: 16px 16px 0 0; }
.dm-pdp .normalprice { border-radius: 0 0 16px 16px; margin-top: -1.5px; }
.dm-pdp .memberprice:hover, .dm-pdp .normalprice:hover { background: #fafcfb; }
.dm-pdp .memberprice.active, .dm-pdp .normalprice.active {
	border-color: var(--dm-green);
	background: #f1faf3;
	z-index: 2;
}
.dm-pdp .memberprice.active:hover, .dm-pdp .normalprice.active:hover { background: #ecf8ef; }
.dm-pdp .checkbox { flex-shrink: 0; }
.dm-pdp .check {
	width: 26px; height: 26px;
	border-radius: 50%;
	border: 2px solid #d3d8d4;
	background: #fff;
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-size: 12px;
	transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.dm-pdp .check.active {
	background: var(--dm-green);
	border-color: var(--dm-green);
	box-shadow: 0 0 0 4px rgba(57, 191, 76, .16);
}
.dm-pdp-price-body { flex: 1; }
.dm-pdp-price-label { display: block; color: var(--dm-muted); font-size: 13px; font-weight: 700; letter-spacing: .2px; margin-bottom: 2px; }
.dm-pdp .memberprice .dm-pdp-price-label { color: var(--dm-green-dark); }
.dm-pdp-price-value { font-size: 26px; font-weight: 800; line-height: 1; }
.dm-pdp-price-value small { font-size: 14px; font-weight: 700; color: var(--dm-muted); margin-left: 2px; }
.dm-pdp-save-badge {
	margin-left: auto;
	background: linear-gradient(135deg, #43c34f 0%, #2fa843 100%);
	color: #fff;
	font-weight: 800;
	font-size: 12.5px;
	padding: 7px 14px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(47, 168, 67, .28);
}

.dm-pdp-subinfo { color: var(--dm-muted); font-size: 14px; line-height: 1.6; margin: 0 0 20px; }
.dm-pdp-subinfo strong { color: var(--dm-ink); font-weight: 800; }
.dm-pdp-subinfo a { color: var(--dm-green-dark); text-decoration: underline; }

.dm-pdp-variants { margin-bottom: 16px; }
.dm-pdp-variant-head { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.dm-pdp .chooseVariant { width: 100%; padding: 12px 14px; border: 1.5px solid var(--dm-border); border-radius: 12px; font-family: inherit; font-size: 15px; }

.dm-pdp-oos { color: var(--dm-orange-dark); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.dm-pdp-addbtn {
	width: 100%;
	display: flex; align-items: center; justify-content: center; gap: 10px;
	background: var(--dm-green); color: #fff;
	border: none; border-radius: 14px;
	padding: 18px; font-weight: 800; font-size: 15px;
	letter-spacing: .3px; text-transform: uppercase;
	cursor: pointer; transition: background .15s ease;
}
.dm-pdp-addbtn:hover { background: #33a847; }
.dm-pdp-addbtn-disabled { background: #c3c9c4; cursor: not-allowed; }
.dm-pdp-memberbtn {
	width: 100%;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	margin-top: 12px;
	background: #fff; color: var(--dm-orange);
	border: 1.5px solid var(--dm-orange); border-radius: 14px;
	padding: 15px; font-weight: 800; font-size: 14px;
	transition: background .15s ease;
}
.dm-pdp-memberbtn:hover { background: #fff5ef; color: var(--dm-orange); }
.dm-pdp-memberbtn i { font-size: 12px; }

.dm-pdp-secure { text-align: center; color: var(--dm-muted); font-size: 13px; font-weight: 700; margin-top: 18px; }
.dm-pdp-secure i { margin-right: 6px; }
.dm-pdp-pay { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 10px; }

/* Payment card logos (Visa / Mastercard) */
.dm-pay-logos {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	line-height: 0;
}
.dm-pay-logos img {
	display: block;
	width: auto;
	height: 25px;
	object-fit: contain;
}
.dm-pay-logos--sm img { height: 20px; }
.dm-pay-logos--md img { height: 25px; }
.dm-pay-logos--lg img { height: 31px; }
.dm-pay-logos--footer img { height: 28px; }
.dm-footer-brand .dm-pay-logos { margin-top: 18px; }
.dm-trust-card .dm-pay-logos { margin-top: 10px; }
.dm-reviews-trust .dm-pay-logos { margin-left: 4px; }
.dm-hero-pay .dm-pay-logos img { height: 28px; }

.dm-pdp-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; background: #f6faf7; border: 1px solid var(--dm-border); border-radius: 14px; padding: 18px 16px; }
.dm-pdp-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; font-size: 12px; font-weight: 700; color: #4b5563; }
.dm-pdp-trust-item i { color: var(--dm-green-dark); font-size: 18px; }

/* Member savings banner */
.dm-pdp-banner {
	margin-top: 40px;
	background: linear-gradient(120deg, #2fb646 0%, #45c34f 60%, #58c94f 100%);
	border-radius: 24px;
	padding: 40px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 30px;
	align-items: center;
}
.dm-pdp-banner-text h2 { color: #fff; font-size: 30px; font-weight: 800; margin: 14px 0 12px; line-height: 1.15; }
.dm-pdp-banner-text p { color: rgba(255, 255, 255, .95); font-size: 15px; margin: 0 0 16px; max-width: 520px; line-height: 1.5; }
.dm-pdp-banner-checks { display: flex; flex-wrap: wrap; gap: 8px 20px; color: #fff; font-size: 14px; font-weight: 700; }
.dm-pdp-banner-checks i { margin-right: 6px; }
.dm-pdp-banner-card { background: #fff; border-radius: 18px; padding: 26px; }
.dm-pdp-banner-card-top { display: flex; align-items: center; justify-content: space-between; }
.dm-pdp-banner-before { color: #8a9290; text-decoration: line-through; font-weight: 700; font-size: 14px; }
.dm-pdp-banner-price { font-size: 42px; font-weight: 800; color: var(--dm-green-dark); margin: 6px 0 4px; }
.dm-pdp-banner-price small { font-size: 18px; }
.dm-pdp-banner-save { color: var(--dm-muted); font-weight: 700; font-size: 13px; margin-bottom: 18px; }

/* Description + specifications */
.dm-pdp-lower { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; margin-top: 50px; align-items: start; }
.dm-pdp-desc h2 { font-size: 24px; font-weight: 800; margin: 0 0 16px; }
.dm-pdp-desc-body { color: #4b5563; font-size: 15px; line-height: 1.7; }
.dm-pdp-about-head { margin-top: 36px; }
.dm-pdp-video { margin-top: 20px; }
.dm-pdp-faq { max-width: none; }

.dm-pdp-specs { background: #fff; border: 1px solid var(--dm-border); border-radius: 18px; padding: 26px 28px; box-shadow: 0 4px 16px rgba(23, 26, 31, .04); }
.dm-pdp-specs h3 { font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.dm-pdp-specs-table { width: 100%; border-collapse: collapse; }
.dm-pdp-specs-table tr { border-bottom: 1px solid #eef1ef; }
.dm-pdp-specs-table tr:last-child { border-bottom: none; }
.dm-pdp-specs-label { color: var(--dm-muted); font-size: 14px; padding: 11px 0; }
.dm-pdp-specs-value { text-align: right; font-weight: 700; font-size: 14px; padding: 11px 0; }

@media (max-width: 991px) {
	.dm-pdp-grid, .dm-pdp-banner, .dm-pdp-lower { grid-template-columns: 1fr; }
	.dm-pdp-banner { padding: 28px; }
	.dm-pdp-main { min-height: 320px; }
	.dm-pdp-banner-text h2 { font-size: 26px; }
}
@media (max-width: 575px) {
	.dm-pdp-title { font-size: 24px; }
	.dm-pdp-trust { grid-template-columns: 1fr; }
	.dm-pdp-thumbs .extraImages { width: 70px; height: 70px; }
}

/* ============================================================
   FOOTER (DK home only)
   ============================================================ */
.dm-footer {
	font-family: 'Nunito', sans-serif;
	color: var(--dm-ink);
	background: #fff;
	border-top: 1px solid var(--dm-border);
	padding: 56px 0 24px;
}
.dm-footer * { box-sizing: border-box; }
.dm-footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}
.dm-footer-logo { max-width: 150px; height: auto; margin-bottom: 16px; }
.dm-footer-brand p { color: var(--dm-muted); font-size: 14px; line-height: 1.6; margin: 0; max-width: 300px; }
.dm-footer-head { font-weight: 800; font-size: 16px; margin-bottom: 16px; color: var(--dm-ink); }
.dm-footer-col ul { list-style: none; padding: 0; margin: 0; }
.dm-footer-col ul li { margin-bottom: 12px; }
.dm-footer-col ul li a { color: var(--dm-muted); text-decoration: none; font-size: 14px; transition: color .15s ease; }
.dm-footer-col ul li a:hover { color: var(--dm-green-dark); }
.dm-footer-hours { color: var(--dm-muted); font-size: 14px; line-height: 1.7; margin: 0; }

.dm-footer-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 22px;
	border-top: 1px solid var(--dm-border);
	color: #9aa1a9;
	font-size: 13px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
	.dm-hero-inner { flex-direction: column-reverse; text-align: center; padding: 46px 0 54px; }
	.dm-hero-left { flex-basis: auto; }
	.dm-hero-checks, .dm-hero-sub { margin-left: auto; margin-right: auto; }
	.dm-hero-cta, .dm-hero-trust, .dm-hero-pay { justify-content: center; }
	.dm-hero-title { font-size: 42px; }

	.dm-how-grid,
	.dm-why-grid,
	.dm-cats-grid,
	.dm-reviews-grid { grid-template-columns: repeat(2, 1fr); }
	.dm-products-grid { grid-template-columns: repeat(2, 1fr); }
	.dm-reviews-trust { grid-template-columns: repeat(2, 1fr); }

	.dm-calc-body { grid-template-columns: 1fr; }
	.dm-calc-features { grid-template-columns: 1fr; }

	.dm-cta-banner-inner { flex-direction: column; align-items: flex-start; text-align: left; }

	.dm-section-head h2 { font-size: 30px; }

	.dm-footer-top { grid-template-columns: 1fr 1fr; }

	.dm-compare-grid { grid-template-columns: 1fr; }
	.dm-perks-grid { grid-template-columns: repeat(2, 1fr); }
	.dm-final-inner h2 { font-size: 32px; }

	.dm-mission-grid { grid-template-columns: repeat(2, 1fr); }
	.dm-story-grid { grid-template-columns: 1fr; gap: 28px; }
	.dm-story-quote blockquote { font-size: 24px; }
	.dm-how-about .dm-how-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.dm-why-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.dm-transparency-inner { grid-template-columns: 1fr; padding: 36px 28px; }
	.dm-transparency-left h2 { font-size: 28px; }
	.dm-trust-grid { grid-template-columns: repeat(2, 1fr); }
	.dm-join-inner { grid-template-columns: 1fr; padding: 36px 28px; }
	.dm-join-left h2 { font-size: 30px; }
	.dm-hero-stats { justify-content: center; gap: 28px; }
}

@media (max-width: 575px) {
	.dm-hero-title { font-size: 34px; }
	.dm-hero-price { font-size: 32px; }
	.dm-hero-checks { grid-template-columns: 1fr; }

	.dm-how-grid,
	.dm-why-grid,
	.dm-cats-grid,
	.dm-reviews-grid,
	.dm-products-grid,
	.dm-reviews-trust { grid-template-columns: 1fr; }

	.dm-section-head h2 { font-size: 26px; }
	.dm-cta-banner-inner { padding: 30px 26px; }
	.dm-calc-card { padding: 16px; }
	.dm-calc-left { padding: 6px; }

	.dm-footer-top { grid-template-columns: 1fr; }
	.dm-footer-bottom { flex-direction: column; }
	.dm-hero-pay { justify-content: center; }

	.dm-plan-checks-2 { grid-template-columns: 1fr; }
	.dm-perks-grid { grid-template-columns: 1fr; }
	.dm-final-inner { padding: 36px 22px; }
	.dm-final-inner h2 { font-size: 28px; }

	.dm-mission-grid,
	.dm-how-about .dm-how-grid-4,
	.dm-why-grid-4,
	.dm-story-features,
	.dm-trust-grid { grid-template-columns: 1fr; }
	.dm-hero-stats { flex-direction: column; align-items: center; gap: 18px; text-align: center; }
	.dm-transparency-list li { border-radius: 18px; align-items: flex-start; }
	.dm-trust-badges { gap: 14px 20px; }
	.dm-join-cta { flex-direction: column; }
	.dm-join-cta .dm-btn { width: 100%; }
}
