/* =========================================================
   DELIVERY & INSTALLATION PAGE
   ========================================================= */

.di-wrap {
	padding-top: 60px;
	padding-bottom: 80px;
	max-width: 900px;
}

.di-intro {
	font-size: 17px;
	line-height: 1.75;
	color: var(--gray-700);
	margin-bottom: 40px;
}
.di-intro strong { color: var(--navy); }

.di-section { margin: 56px 0; padding-top: 8px; }
.di-section h2 {
	font-family: var(--font-head);
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 8px;
	padding-left: 14px;
	border-left: 4px solid var(--orange);
}
.di-section .di-kicker {
	font-size: 14px;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 24px 18px;
}
.di-section .di-body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--gray-700);
	margin: 0 0 16px;
}

/* Two-column cards */
.di-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 24px 0;
}
.di-card {
	background: #F4F6F8;
	border: 1px solid #EEF0F3;
	border-left: 3px solid var(--orange);
	border-radius: 10px;
	padding: 20px 22px;
}
.di-card h3 {
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 8px;
}
.di-card p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--gray-700);
	margin: 0;
}

/* Checklist */
.di-checklist {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}
.di-checklist li {
	position: relative;
	padding: 12px 0 12px 34px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-700);
	border-bottom: 1px solid #EEF0F3;
}
.di-checklist li:last-child { border-bottom: none; }
.di-checklist li strong { color: var(--navy); }
.di-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 20px;
	height: 20px;
	background: var(--orange);
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
	background-size: 14px 14px;
	background-repeat: no-repeat;
	background-position: center;
}

/* Numbered timeline */
.di-timeline { margin: 24px 0; counter-reset: di-step; }
.di-timeline-step {
	position: relative;
	padding: 18px 0 18px 64px;
	border-bottom: 1px solid #EEF0F3;
	counter-increment: di-step;
}
.di-timeline-step:last-child { border-bottom: none; }
.di-timeline-step::before {
	content: counter(di-step);
	position: absolute;
	left: 0;
	top: 18px;
	width: 44px;
	height: 44px;
	background: var(--navy);
	color: var(--orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 18px;
}
.di-timeline-step h4 {
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	text-transform: uppercase;
	margin: 0 0 4px;
}
.di-timeline-step p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--gray-700);
}
.di-timeline-step a {
	color: var(--orange);
	font-weight: 700;
	text-decoration: none;
}
.di-timeline-step a:hover { color: var(--orange-dark); }

/* Navy callout */
.di-callout {
	background: var(--navy);
	color: #fff;
	padding: 32px 28px;
	border-radius: 12px;
	margin: 48px 0;
	position: relative;
	overflow: hidden;
}
.di-callout::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(242,101,34,0.18) 0%, transparent 70%);
	pointer-events: none;
}
.di-callout h3 {
	font-family: var(--font-head);
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 10px;
	position: relative;
}
.di-callout p {
	color: rgba(255,255,255,0.82);
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 20px;
	position: relative;
}
.di-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange);
	color: #fff;
	padding: 12px 22px;
	border-radius: 6px;
	font-family: var(--font-head);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	position: relative;
	transition: background 0.2s, transform 0.2s;
}
.di-btn:hover {
	background: var(--orange-dark);
	color: #fff;
	transform: translateY(-1px);
}

/* FAQ */
.di-faq-item {
	border-bottom: 1px solid #EEF0F3;
	padding: 18px 0;
}
.di-faq-item:last-child { border-bottom: none; }
.di-faq-item h4 {
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 6px;
}
.di-faq-item p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--gray-700);
	margin: 0;
}

/* Footer note */
.di-footer-note {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid #EEF0F3;
	font-size: 15px;
	color: var(--gray-500);
	text-align: center;
}
.di-footer-note a {
	color: var(--orange);
	font-weight: 700;
	text-decoration: none;
}
.di-footer-note a:hover { color: var(--orange-dark); }

/* Responsive */
@media (max-width: 680px) {
	.di-grid-2 { grid-template-columns: 1fr; }
	.di-section h2 { font-size: 24px; }
	.di-timeline-step { padding-left: 54px; }
	.di-timeline-step::before { width: 38px; height: 38px; font-size: 16px; }
}
