/* DIMO Téléconsultation — Landing Premium */

.dt-land {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--dt-text);
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.dt-land * { box-sizing: border-box; }

/* ============ HERO ============ */
.dt-land__hero {
	background: linear-gradient(135deg, #1e6091 0%, #154868 60%, #0d324a 100%);
	color: #fff;
	padding: 80px 24px 100px;
	position: relative;
	overflow: hidden;
}
.dt-land__hero::before {
	content: '';
	position: absolute;
	top: -20%; right: -10%;
	width: 700px; height: 700px;
	background: radial-gradient(circle, rgba(135,169,107,0.22) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.dt-land__hero::after {
	content: '';
	position: absolute;
	bottom: -30%; left: -5%;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(30,96,145,0.5) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.dt-land__hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}
@media (min-width: 960px) {
	.dt-land__hero-inner { grid-template-columns: 1.3fr 1fr; gap: 60px; }
}
.dt-land__eyebrow {
	display: inline-block;
	background: rgba(255,255,255,0.14);
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	backdrop-filter: blur(8px);
}
.dt-land__h1 {
	font-size: clamp(36px, 6vw, 60px);
	line-height: 1.05;
	font-weight: 800;
	margin: 0 0 22px;
	letter-spacing: -1px;
	color: #fff;
}
.dt-accent { color: var(--dt-sage); }
.dt-land__lead {
	font-size: clamp(16px, 2vw, 20px);
	opacity: 0.95;
	margin: 0 0 32px;
	line-height: 1.55;
	max-width: 580px;
}
.dt-land__cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}
.dt-btn--light { color: #fff; border-color: rgba(255,255,255,0.4); }
.dt-btn--light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.dt-land__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	font-size: 14px;
	opacity: 0.88;
}

/* Phone mockup */
.dt-land__hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.dt-land__phone {
	width: 280px;
	max-width: 100%;
	background: #0f1822;
	border-radius: 36px;
	padding: 14px 8px;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
	border: 8px solid #1a1f2c;
	transform: rotate(-3deg);
}
.dt-land__phone-screen {
	background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
	border-radius: 24px;
	padding: 16px 12px;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.dt-land__chat-msg {
	padding: 10px 14px;
	border-radius: 16px;
	font-size: 13px;
	line-height: 1.4;
	max-width: 85%;
	animation: dt-slidein 0.5s ease backwards;
}
.dt-land__chat-msg--pro {
	background: var(--dt-blue-soft);
	color: var(--dt-text);
	align-self: flex-start;
	border-bottom-left-radius: 4px;
	animation-delay: 0.2s;
}
.dt-land__chat-msg--patient {
	background: var(--dt-sage);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
	animation-delay: 0.5s;
}
.dt-land__phone-rx {
	background: #fff;
	border: 2px solid var(--dt-sage);
	border-radius: 12px;
	padding: 12px;
	margin-top: auto;
	text-align: center;
	font-weight: 700;
	color: var(--dt-blue);
	font-size: 13px;
	animation: dt-slidein 0.5s ease 1s backwards;
}
.dt-land__phone-rx small { display: block; font-weight: 500; font-family: monospace; letter-spacing: 1px; color: var(--dt-text-soft); margin-top: 4px; font-size: 11px; }
@keyframes dt-slidein {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ============ SEALS ============ */
.dt-land__seals {
	max-width: 1100px;
	margin: -50px auto 0;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	position: relative;
	z-index: 2;
}
@media (min-width: 720px) { .dt-land__seals { grid-template-columns: repeat(4, 1fr); } }
.dt-land__seal {
	background: #fff;
	border-radius: var(--dt-radius);
	padding: 22px 14px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(30,96,145,0.10);
	transition: transform 0.18s, box-shadow 0.18s;
}
.dt-land__seal:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,96,145,0.16); }
.dt-land__seal-num {
	font-size: 32px;
	font-weight: 800;
	color: var(--dt-blue);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -0.5px;
}
.dt-land__seal-label {
	font-size: 12px;
	color: var(--dt-text-soft);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ============ SECTIONS ============ */
.dt-land__section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 24px;
}
.dt-land__section--alt {
	background: var(--dt-ivory);
	max-width: 100%;
	margin: 80px 0 0;
	padding: 80px 24px;
}
.dt-land__section--alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.dt-land__section-head {
	text-align: center;
	margin-bottom: 48px;
}
.dt-land__kicker {
	display: inline-block;
	color: var(--dt-sage);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.dt-land__section-head h2 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.5px;
	color: var(--dt-text);
}
.dt-land__section-sub {
	font-size: 16px;
	color: var(--dt-text-soft);
	margin: 12px 0 0;
}

/* ============ STEPS ============ */
.dt-land__steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 720px) { .dt-land__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dt-land__steps { grid-template-columns: repeat(4, 1fr); } }
.dt-land__step {
	background: #fff;
	border-radius: var(--dt-radius);
	padding: 28px;
	box-shadow: var(--dt-shadow);
	position: relative;
	transition: transform 0.18s, box-shadow 0.18s;
}
.dt-land__step:hover { transform: translateY(-4px); box-shadow: var(--dt-shadow-lg); }
.dt-land__step-num {
	width: 44px; height: 44px;
	background: linear-gradient(135deg, var(--dt-blue) 0%, var(--dt-blue-dark) 100%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 18px;
	margin-bottom: 16px;
}
.dt-land__step h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.dt-land__step p { font-size: 14px; line-height: 1.55; color: var(--dt-text-soft); margin: 0; }

/* ============ SPECS ============ */
.dt-land__specs {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
@media (min-width: 720px) { .dt-land__specs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dt-land__specs { grid-template-columns: repeat(4, 1fr); } }
.dt-land__spec {
	background: #fff;
	border-radius: var(--dt-radius);
	padding: 28px 22px;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--dt-shadow);
	transition: transform 0.18s, box-shadow 0.18s;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	overflow: hidden;
}
.dt-land__spec:hover { transform: translateY(-4px); box-shadow: var(--dt-shadow-lg); }
.dt-land__spec--midwife {
	background: linear-gradient(135deg, #87a96b 0%, #6f8f57 100%);
	color: #fff;
}
.dt-land__spec--midwife .dt-land__spec-cta { color: #fff; opacity: 0.9; }
.dt-land__spec-icon { font-size: 40px; line-height: 1; margin-bottom: 4px; }
.dt-land__spec h3 { font-size: 18px; font-weight: 700; margin: 0; }
.dt-land__spec p { font-size: 14px; line-height: 1.5; color: var(--dt-text-soft); margin: 0; flex: 1; }
.dt-land__spec--midwife p { color: rgba(255,255,255,0.92); }
.dt-land__spec-cta {
	font-weight: 600;
	color: var(--dt-blue);
	margin-top: 8px;
	font-size: 14px;
}

/* ============ PROS GRID (landing variant) ============ */
.dt-grid--landing { grid-template-columns: 1fr; }
@media (min-width: 640px) { .dt-grid--landing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dt-grid--landing { grid-template-columns: repeat(3, 1fr); } }
.dt-card--land .dt-card__top { position: relative; }
.dt-card__pulse {
	width: 12px; height: 12px;
	background: var(--dt-sage);
	border-radius: 50%;
	position: absolute;
	top: 4px; right: 4px;
	box-shadow: 0 0 0 0 rgba(135,169,107, 0.5);
	animation: dt-pulse-dot 2s infinite;
}
@keyframes dt-pulse-dot {
	0% { box-shadow: 0 0 0 0 rgba(135,169,107, 0.6); }
	70% { box-shadow: 0 0 0 14px rgba(135,169,107, 0); }
	100% { box-shadow: 0 0 0 0 rgba(135,169,107, 0); }
}
.dt-land__center { text-align: center; margin-top: 32px; }
.dt-empty--alt { padding: 48px 24px; text-align: center; background: #fff; border-radius: var(--dt-radius); }

/* ============ PILLARS ============ */
.dt-land__pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
@media (min-width: 720px) { .dt-land__pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dt-land__pillars { grid-template-columns: repeat(4, 1fr); } }
.dt-land__pillar {
	background: #fff;
	padding: 28px;
	border-radius: var(--dt-radius);
	text-align: center;
	box-shadow: var(--dt-shadow);
	transition: transform 0.18s, box-shadow 0.18s;
}
.dt-land__pillar:hover { transform: translateY(-3px); box-shadow: var(--dt-shadow-lg); }
.dt-land__pillar-icon {
	font-size: 38px;
	margin-bottom: 14px;
}
.dt-land__pillar h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.dt-land__pillar p { font-size: 13.5px; line-height: 1.5; color: var(--dt-text-soft); margin: 0; }

/* ============ TESTIS ============ */
.dt-land__testis {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 960px) { .dt-land__testis { grid-template-columns: repeat(3, 1fr); } }
.dt-land__testi {
	background: #fff;
	border-radius: var(--dt-radius);
	padding: 28px;
	margin: 0;
	box-shadow: var(--dt-shadow);
	border-top: 4px solid var(--dt-sage);
}
.dt-land__testi p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 16px;
	color: var(--dt-text);
	font-style: italic;
}
.dt-land__testi footer {
	font-size: 13px;
	color: var(--dt-text-soft);
}
.dt-land__testi footer strong { color: var(--dt-blue); }

/* ============ FAQ ============ */
.dt-land__faq {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.dt-land__faq-item {
	background: #fff;
	border-radius: var(--dt-radius-sm);
	padding: 0;
	box-shadow: var(--dt-shadow);
	overflow: hidden;
}
.dt-land__faq-item summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 600;
	font-size: 15px;
	color: var(--dt-text);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.dt-land__faq-item summary::after {
	content: '+';
	font-size: 24px;
	color: var(--dt-blue);
	font-weight: 300;
	transition: transform 0.2s;
}
.dt-land__faq-item[open] summary::after { transform: rotate(45deg); }
.dt-land__faq-item summary::-webkit-details-marker { display: none; }
.dt-land__faq-item p {
	padding: 0 22px 18px;
	margin: 0;
	color: var(--dt-text-soft);
	line-height: 1.6;
	font-size: 14.5px;
}

/* ============ PRO REDIRECT (sage-femme connectée arrive sur /teleconsultation/) ============ */
.dt-land__pro-redirect {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, #1e6091 0%, #154868 100%);
	color: #fff;
}
.dt-land__pro-redirect-inner {
	max-width: 600px;
	width: 100%;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.14);
}
.dt-land__pro-redirect-icon { font-size: 60px; margin-bottom: 12px; }
.dt-land__pro-redirect h2 { font-size: 26px; margin: 0 0 10px; color: #fff; }
.dt-land__pro-redirect p { opacity: 0.92; font-size: 15px; line-height: 1.5; margin: 0 0 24px; }
.dt-land__pro-redirect-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 20px;
}
@media (max-width: 540px) { .dt-land__pro-redirect-cards { grid-template-columns: 1fr; } }
.dt-land__pro-redirect-card {
	background: rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 18px 16px;
	color: #fff;
	text-decoration: none;
	transition: all 0.18s;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid transparent;
}
.dt-land__pro-redirect-card:hover {
	background: rgba(255,255,255,0.22);
	transform: translateY(-2px);
	border-color: #87a96b;
}
.dt-land__pro-redirect-emoji { font-size: 32px; }
.dt-land__pro-redirect-card strong { font-size: 16px; font-weight: 700; }
.dt-land__pro-redirect-card span { font-size: 12.5px; opacity: 0.85; }
.dt-land__pro-redirect-hint { font-size: 13px; opacity: 0.7; margin-top: 18px; }
.dt-land__pro-redirect-hint a { color: #87a96b; font-weight: 600; }

/* ============ FINAL CTA ============ */
.dt-land__final {
	background: linear-gradient(135deg, #154868 0%, #0d324a 100%);
	padding: 80px 24px;
	color: #fff;
}
.dt-land__final-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 720px) { .dt-land__final-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.dt-land__final-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	backdrop-filter: blur(10px);
	border-radius: var(--dt-radius);
	padding: 36px 32px;
	text-align: left;
}
.dt-land__final-card h2 {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #fff;
}
.dt-land__final-card p {
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 24px;
	opacity: 0.92;
}
.dt-land__final-card--pro {
	background: linear-gradient(135deg, rgba(135,169,107,0.16) 0%, rgba(135,169,107,0.04) 100%);
	border-color: var(--dt-sage);
}
