.hero-section {
	position: relative;
}

.hero-title {
	font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
	line-height: 1.15;
	max-width: 18ch;
}

.hero-subtitle {
	color: var(--text-muted);
	font-size: 1.07rem;
	max-width: 54ch;
}

.meta-card {
	height: 100%;
	border-radius: 1rem;
	border: 1px solid rgba(11, 49, 66, 0.12);
	background: rgba(255, 255, 255, 0.82);
	padding: 1rem 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	box-shadow: 0 8px 20px rgba(10, 45, 60, 0.08);
}

.meta-card i {
	color: var(--brand-sea);
	font-size: 1.15rem;
}

.meta-card strong {
	font-size: 1rem;
}

.meta-card small {
	color: var(--text-muted);
}

.speaker-card {
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(11, 49, 66, 0.12);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform 0.25s ease;
}

.speaker-body {
	padding: 1.4rem;
}

.speaker-label {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand-sea);
	font-weight: 700;
	font-size: 0.76rem;
}

.countdown-section {
	margin-top: 0.3rem;
}

.countdown-card {
	border-radius: var(--radius-xl);
	background: linear-gradient(130deg, rgba(27, 3, 3, 0.93), rgba(111, 39, 15, 0.92));
	color: #fff;
	padding: 1.55rem;
	box-shadow: 0 20px 40px rgba(9, 39, 52, 0.25);
}

.countdown-card h3,
.countdown-card p {
	color: #fff;
}

.countdown-label {
	opacity: 0.86;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
}

.count-box {
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.85rem 0.45rem;
	height: 100%;
}

.count-box span {
	display: block;
	font-size: clamp(1.5rem, 1.8vw + 1rem, 2rem);
	font-weight: 700;
	line-height: 1;
}

.count-box small {
	text-transform: uppercase;
	font-size: 0.72rem;
	opacity: 0.86;
	letter-spacing: 0.06em;
}

.schedule-section {
	position: relative;
}

.section-header h2 {
	font-size: clamp(1.6rem, 2vw + 1rem, 2.3rem);
}

.schedule-list {
	display: grid;
	gap: 1rem;
}

.schedule-item {
	border-radius: 1rem;
	border: 1px solid rgba(11, 49, 66, 0.14);
	background: rgba(255, 255, 255, 0.85);
	padding: 1rem;
	display: grid;
	gap: 0.8rem;
	box-shadow: 0 8px 22px rgba(12, 52, 71, 0.08);
}

.schedule-hour {
	font-weight: 700;
	color: var(--brand-sea);
	letter-spacing: 0.03em;
}

.schedule-content h3 {
	margin-bottom: 0.35rem;
	font-size: 1.2rem;
}

.schedule-content p {
	color: var(--text-muted);
}

.benefits-section {
	padding-top: 0.7rem;
}

.benefit-card {
	height: 100%;
	border-radius: var(--radius-lg);
	background: #fff;
	border: 1px solid rgba(11, 49, 66, 0.1);
	box-shadow: 0 10px 25px rgba(16, 56, 76, 0.08);
	padding: 1.2rem;
}

.benefit-card i {
	font-size: 1.45rem;
	color: var(--brand-gold);
}

.benefit-card h3 {
	margin-top: 0.8rem;
	font-size: 1.2rem;
}

.benefit-card p {
	margin-bottom: 0;
	color: var(--text-muted);
}

.cta-strip {
	border-radius: var(--radius-xl);
	border: 1px solid rgba(11, 49, 66, 0.13);
	background: linear-gradient(120deg, rgba(244, 248, 250, 0.95), rgba(255, 255, 255, 0.98));
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 1.3rem;
}

.cta-strip p {
	color: var(--text-muted);
}

@media (min-width: 768px) {
	.schedule-item {
		grid-template-columns: 180px 1fr;
		align-items: center;
	}
}

@media (max-width: 767.98px) {
	.cta-strip {
		text-align: center;
		justify-content: center;
	}
}
