/**
 * Anasayfa bölümleri — Hero, Özellikler şeridi, CTA
 * Tasarım: sections1.html
 */

.site-main--front {
	padding: 0;
	max-width: none;
}

/* Anasayfa bölümleri için ek renk */
.emc-home-sections {
	--cream: #FAF8F5;
}

/* HERO */
.hero {
	position: relative;
	min-height: 70vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	background: var(--dark, #2D3748);
}

.hero-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 70px 80px 80px;
	background: linear-gradient(135deg, rgba(45,55,72,1) 0%, rgba(45,55,72,0.97) 40%, rgba(33,83,135,0.92) 100%);
}

/* Resim arka plan */
.hero-content.hero-content--image {
	background-image: var(--hero-bg-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Video arka plan */
.hero-content-bg-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-content-bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--hero-overlay, 0.45));
	pointer-events: none;
	z-index: 1;
}

.hero-content--image .hero-content-overlay {
	background: rgba(0, 0, 0, var(--hero-overlay, 0.45));
}

.hero-content-inner {
	position: relative;
	z-index: 2;
}

.hero-content::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 50px;
	width: 80px;
	height: 80px;
	border-top: 1.5px solid rgba(245,165,36,0.2);
	border-left: 1.5px solid rgba(245,165,36,0.2);
	opacity: 0;
	animation: emcCornerReveal 1s 1.2s ease forwards;
}

.hero-content::after {
	content: '';
	position: absolute;
	bottom: 50px;
	right: 40px;
	width: 60px;
	height: 60px;
	border-bottom: 1.5px solid rgba(245,165,36,0.15);
	border-right: 1.5px solid rgba(245,165,36,0.15);
	opacity: 0;
	animation: emcCornerReveal 1s 1.4s ease forwards;
}

@keyframes emcCornerReveal {
	from { opacity: 0; transform: scale(0.5); }
	to { opacity: 1; transform: scale(1); }
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 30px;
	opacity: 0;
	animation: emcFadeSlideUp 0.8s 0.3s ease forwards;
}

.hero-eyebrow-line {
	width: 40px;
	height: 1.5px;
	background: var(--gold, #f5a524);
}

.hero-eyebrow-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--gold, #f5a524);
}

.hero-heading {
	font-family: 'Playfair Display', serif;
	font-size: clamp(38px, 4.2vw, 68px);
	font-weight: 700;
	line-height: 1.08;
	color: #fff;
	margin-bottom: 28px;
	opacity: 0;
	animation: emcFadeSlideUp 0.9s 0.5s ease forwards;
}

.hero-heading em {
	font-style: italic;
	color: var(--gold, #f5a524);
	position: relative;
}

.hero-heading em::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(245,165,36,0.12);
	border-radius: 4px;
	z-index: -1;
}

.hero-heading .line-break { display: block; }

.hero-subtext {
	font-size: 16.5px;
	font-weight: 300;
	color: rgba(255,255,255,0.5);
	line-height: 1.75;
	max-width: 460px;
	margin-bottom: 44px;
	opacity: 0;
	animation: emcFadeSlideUp 0.9s 0.7s ease forwards;
}

.hero-subtext strong {
	color: rgba(255,255,255,0.8);
	font-weight: 500;
}

.hero-cta-group {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 60px;
	opacity: 0;
	animation: emcFadeSlideUp 0.9s 0.9s ease forwards;
}

.hero-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: linear-gradient(135deg, var(--gold, #f5a524), #DDA944);
	color: var(--dark, #2D3748);
	font-size: 14.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 14px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
	border: none;
	cursor: pointer;
}

.hero-cta-primary::before {
	content: '';
	position: absolute;
	top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
	transition: left 0.6s ease;
}

.hero-cta-primary:hover::before { left: 100%; }

.hero-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(245,165,36,0.4);
}

.hero-cta-primary svg {
	width: 18px;
	height: 18px;
	transition: transform 0.35s ease;
}

.hero-cta-primary:hover svg { transform: translateX(4px); }

.hero-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 17px 28px;
	border: 1.5px solid rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.7);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.35s ease;
	cursor: pointer;
	background: none;
}

.hero-cta-secondary:hover {
	border-color: rgba(255,255,255,0.4);
	color: #fff;
	background: rgba(255,255,255,0.05);
}

.hero-cta-secondary svg { width: 18px; height: 18px; }

.hero-stats {
	display: flex;
	gap: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.06);
	opacity: 0;
	animation: emcFadeSlideUp 0.9s 1.1s ease forwards;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-number {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--gold, #f5a524);
	line-height: 1;
	margin-bottom: 4px;
	display: flex;
	align-items: baseline;
	gap: 2px;
}

.hero-stat-number .stat-suffix {
	font-size: 16px;
	font-weight: 500;
	color: #DDA944;
}

.hero-stat-label {
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.5px;
}

.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-visual-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.5) 0%, transparent 55%),
		radial-gradient(ellipse at 70% 30%, rgba(245,165,36,0.06) 0%, transparent 50%),
		linear-gradient(180deg, #f5f6f8 0%, #e8eaee 50%, #f0f1f4 100%);
}

.geo-ring {
	position: absolute;
	border: 1px solid rgba(245,165,36,0.08);
	border-radius: 50%;
	animation: emcGeoFloat 20s ease-in-out infinite;
}

.geo-ring:nth-child(1) {
	width: 500px; height: 500px;
	top: -100px; right: -100px;
	animation-delay: 0s;
}

.geo-ring:nth-child(2) {
	width: 350px; height: 350px;
	bottom: -80px; left: -60px;
	border-color: rgba(33,83,135,0.1);
	animation-delay: -7s;
	animation-duration: 25s;
}

.geo-ring:nth-child(3) {
	width: 200px; height: 200px;
	top: 30%; right: 20%;
	border-color: rgba(245,165,36,0.05);
	animation-delay: -12s;
	animation-duration: 18s;
}

@keyframes emcGeoFloat {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(15px, -20px) rotate(5deg); }
	66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

.showcase {
	position: relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 60px 50px;
	width: 100%;
}

.showcase-main {
	width: 380px;
	max-width: 90%;
	aspect-ratio: 7/5;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 10px 20px rgba(0,0,0,0.15);
	opacity: 0;
	animation: emcCardReveal 1s 0.6s ease forwards;
	transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
}

.showcase-main:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 15px 30px rgba(0,0,0,0.2);
}

@keyframes emcCardReveal {
	from { opacity: 0; transform: translateY(30px) scale(0.95); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.showcase-main-inner {
	position: absolute;
	inset: 0;
	background: var(--preview-color, #1a1a1e);
	transition: background 0.6s ease;
}

.carpet-texture {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.1) 8px, rgba(255,255,255,0.1) 9px),
		repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.1) 8px, rgba(255,255,255,0.1) 9px);
	background-size: auto, auto;
}

/* Eklentideki doku görseli varsa ön izlemede kullan (--showcase-texture inline’da set edilir) */
.showcase-main-inner .carpet-texture {
	background-image: var(--showcase-texture, none), repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.1) 8px, rgba(255,255,255,0.1) 9px);
	background-size: cover, auto;
	background-position: center, 0 0;
}

.showcase-main-inner--has-texture .carpet-texture {
	opacity: 0.5;
}

.carpet-frame {
	position: absolute;
	inset: 8px;
	border: 1.5px solid rgba(255,255,255,0.12);
	border-radius: 14px;
	pointer-events: none;
	transition: border-color 0.6s ease;
}

.carpet-logo-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
	text-align: center;
}

.carpet-logo-icon {
	width: 52px;
	height: 52px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	backdrop-filter: blur(4px);
	background: rgba(255,255,255,0.05);
}

.carpet-logo-icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: rgba(255,255,255,0.4);
	stroke-width: 1.5;
}

.carpet-logo-text {
	font-family: 'Playfair Display', serif;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,0.25);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.carpet-logo-img {
	max-width: 200px;
	max-height: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(0.95) contrast(1.05);
}

.carpet-bottom-text {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.2);
	white-space: nowrap;
}

.showcase-size-tag {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(12px);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,0.7);
	letter-spacing: 0.5px;
}

.color-preview-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0;
	animation: emcFadeSlideUp 0.8s 1s ease forwards;
}

.color-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
	border: 2.5px solid transparent;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.color-dot:hover {
	transform: scale(1.2);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.color-dot.active {
	border-color: #fff;
	transform: scale(1.15);
}

.color-dot::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1.5px solid transparent;
	transition: border-color 0.3s ease;
}

.color-dot.active::after {
	border-color: rgba(255,255,255,0.2);
}

.color-label {
	font-size: 12.5px;
	color: rgba(255,255,255,0.4);
	font-weight: 400;
	margin-left: 4px;
	transition: color 0.3s ease;
}

.float-card {
	position: absolute;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0,0,0,0.25);
	pointer-events: none;
}

.float-card-1 {
	width: 140px;
	height: 100px;
	top: 12%;
	right: 8%;
	opacity: 0;
	animation: emcFloatCardIn 1s 1.2s ease forwards, emcFloatSlow 15s 2.2s ease-in-out infinite;
}

.float-card-2 {
	width: 120px;
	height: 85px;
	bottom: 15%;
	left: 5%;
	opacity: 0;
	animation: emcFloatCardIn 1s 1.5s ease forwards, emcFloatSlow 18s 2.5s ease-in-out infinite;
}

@keyframes emcFloatCardIn {
	from { opacity: 0; transform: translateY(20px) scale(0.9); }
	to { opacity: 0.7; transform: translateY(0) scale(1); }
}

@keyframes emcFloatSlow {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.float-card-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.float-card-inner .fc-texture {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(255,255,255,0.15) 6px, rgba(255,255,255,0.15) 7px),
		repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(255,255,255,0.15) 6px, rgba(255,255,255,0.15) 7px);
}

.float-card-tag {
	position: absolute;
	bottom: 8px;
	left: 8px;
	font-size: 9px;
	font-weight: 600;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

@keyframes emcFadeSlideUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

/* FEATURES RIBBON */
.features-ribbon {
	background: #fff;
	padding: 0;
	position: relative;
	z-index: 20;
	border-bottom: 1px solid rgba(45,55,72,0.06);
}

.features-ribbon-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1400px;
	margin: 0 auto;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 28px 32px;
	position: relative;
	transition: background 0.3s ease;
	cursor: default;
}

.feature-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(45,55,72,0.08);
}

.feature-item:hover { background: rgba(33,83,135,0.02); }

.feature-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(245,165,36,0.08), rgba(221,169,68,0.04));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon svg {
	width: 22px;
	height: 22px;
	color: #DDA944;
	stroke-width: 1.8;
}

.feature-text strong {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--dark, #2D3748);
	margin-bottom: 1px;
}

.feature-text span {
	font-size: 12px;
	color: rgba(45,55,72,0.45);
}

/* CTA SECTION */
.cta-section {
	padding: 110px 80px;
	background: var(--cream, #FAF8F5);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245,165,36,0.04) 0%, transparent 70%);
	pointer-events: none;
}

.cta-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.cta-visual { position: relative; }

.step-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.step-card {
	padding: 28px 22px;
	background: #fff;
	border-radius: 18px;
	border: 1px solid rgba(45,55,72,0.06);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
	cursor: default;
}

.step-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(45,55,72,0.1);
	border-color: rgba(245,165,36,0.15);
}

.step-card:nth-child(2) { transform: translateY(20px); }
.step-card:nth-child(2):hover { transform: translateY(14px); }
.step-card:nth-child(3) { transform: translateY(-10px); }
.step-card:nth-child(3):hover { transform: translateY(-16px); }
.step-card:nth-child(4) { transform: translateY(10px); }
.step-card:nth-child(4):hover { transform: translateY(4px); }

.step-card-number {
	font-family: 'Playfair Display', serif;
	font-size: 38px;
	font-weight: 700;
	color: rgba(45,55,72,0.05);
	position: absolute;
	top: 12px;
	right: 16px;
	line-height: 1;
}

.step-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.step-card:nth-child(1) .step-card-icon { background: rgba(33,83,135,0.08); }
.step-card:nth-child(2) .step-card-icon { background: rgba(245,165,36,0.1); }
.step-card:nth-child(3) .step-card-icon { background: rgba(45,55,72,0.06); }
.step-card:nth-child(4) .step-card-icon { background: rgba(221,169,68,0.1); }

.step-card-icon svg {
	width: 22px;
	height: 22px;
	stroke-width: 1.8;
}

.step-card:nth-child(1) .step-card-icon svg { color: var(--navy, #215387); }
.step-card:nth-child(2) .step-card-icon svg { color: var(--gold, #f5a524); }
.step-card:nth-child(3) .step-card-icon svg { color: var(--dark, #2D3748); }
.step-card:nth-child(4) .step-card-icon svg { color: #DDA944; }

.step-card-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark, #2D3748);
	margin-bottom: 6px;
}

.step-card-desc {
	font-size: 13px;
	color: rgba(45,55,72,0.5);
	line-height: 1.6;
}

.cta-text { padding-left: 20px; }

.cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.cta-eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold, #f5a524);
}

.cta-eyebrow-label {
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	color: #DDA944;
	font-weight: 600;
}

.cta-heading {
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 3.2vw, 50px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--dark, #2D3748);
	margin-bottom: 20px;
}

.cta-heading em {
	font-style: italic;
	color: var(--navy, #215387);
}

.cta-desc {
	font-size: 16px;
	color: rgba(45,55,72,0.5);
	line-height: 1.8;
	margin-bottom: 36px;
	max-width: 440px;
}

.cta-features-list {
	list-style: none;
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cta-features-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14.5px;
	color: var(--dark, #2D3748);
	font-weight: 400;
}

.cta-features-list li .check-icon {
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(245,165,36,0.12), rgba(221,169,68,0.06));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cta-features-list li .check-icon svg {
	width: 13px;
	height: 13px;
	color: var(--gold, #f5a524);
	stroke-width: 2.5;
}

.cta-btn-group {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cta-main-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: linear-gradient(135deg, #141d2b 0%, #152536 50%, #162d47 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 14px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: all 0.45s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(22, 45, 71, 0.4);
}

.cta-main-btn::before {
	content: '';
	position: absolute;
	top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(245,165,36,0.12), transparent);
	transition: left 0.5s ease;
}

.cta-main-btn:hover::before { left: 100%; }

.cta-main-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(45,55,72,0.25);
}

.cta-main-btn svg {
	width: 18px; height: 18px;
	transition: transform 0.3s ease;
	color: #ffffff !important;
	stroke: #ffffff !important;
	fill: none;
}

.cta-main-btn:hover svg { transform: translateX(4px); }

.cta-sample-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 17px 24px;
	border: 1.5px solid rgba(45,55,72,0.15);
	border-radius: 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark, #2D3748);
	text-decoration: none;
	transition: all 0.3s ease;
	background: none;
	cursor: pointer;
}

.cta-sample-btn:hover {
	border-color: var(--navy, #215387);
	color: var(--navy, #215387);
	background: rgba(33,83,135,0.03);
}

.cta-sample-btn svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 1100px) {
	.hero { grid-template-columns: 1fr; min-height: auto; }
	.hero-content { padding: 60px 40px 50px; }
	.hero-visual { min-height: 50vh; }
	.showcase-main { width: 320px; }
	.cta-grid { grid-template-columns: 1fr; gap: 50px; }
	.cta-section { padding: 70px 40px; }
	.cta-text { padding-left: 0; }
}

@media (max-width: 768px) {
	.hero-content { padding: 50px 24px 40px; }
	.hero-content::before,
	.hero-content::after { display: none; }
	.hero-stats { gap: 24px; flex-wrap: wrap; }
	.hero-cta-group { flex-direction: column; align-items: flex-start; }
	.features-ribbon-inner { grid-template-columns: 1fr 1fr; }
	.feature-item:nth-child(2)::after { display: none; }
	.cta-section { padding: 50px 24px; }
	.step-cards { grid-template-columns: 1fr; }
	.step-card:nth-child(n) { transform: none !important; }
	.step-card:nth-child(n):hover { transform: translateY(-4px) !important; }
	.cta-btn-group { flex-direction: column; align-items: flex-start; }
	.float-card { display: none; }
}

@media (max-width: 500px) {
	.features-ribbon-inner { grid-template-columns: 1fr; }
	.feature-item::after { display: none !important; }
	.showcase-main { width: 260px; }
}
