/* ==========================================================================
   Mef Temizlik — Modern Theme Styles
   ========================================================================== */

:root {
	--color-primary: #1e73be;
	--color-primary-dark: #155a96;
	--color-primary-light: #00d2ff;
	--color-accent: #00d2ff;
	--color-brand-black: #0a0a0a;
	--color-dark: #111827;
	--color-text: #334155;
	--color-text-light: #64748b;
	--color-bg: #ffffff;
	--color-bg-alt: #f4f8fc;
	--color-bg-muted: #eef4fa;
	--color-border: #dbeafe;
	--color-white: #ffffff;
	--gradient-brand: linear-gradient(135deg, #1e73be 0%, #00d2ff 100%);
	--shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(30, 115, 190, 0.1), 0 2px 4px -2px rgba(17, 24, 39, 0.05);
	--shadow-lg: 0 10px 25px -5px rgba(30, 115, 190, 0.15), 0 8px 10px -6px rgba(17, 24, 39, 0.05);
	--shadow-xl: 0 20px 40px -10px rgba(30, 115, 190, 0.2);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--header-height: 80px;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary-dark);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: 800px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

.btn--primary {
	background: var(--gradient-brand);
	color: var(--color-white);
	box-shadow: 0 4px 14px rgba(30, 115, 190, 0.35);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 115, 190, 0.45);
	color: var(--color-white);
}

.btn--outline {
	background: transparent;
	border-color: var(--color-border);
	color: var(--color-dark);
}

.btn--outline:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
	background: rgba(30, 115, 190, 0.06);
}

.btn--white {
	background: var(--color-white);
	color: var(--color-primary-dark);
}

.btn--white:hover {
	background: var(--color-bg-muted);
	color: var(--color-primary-dark);
	transform: translateY(-2px);
}

.btn--outline-white {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--color-white);
}

.btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--color-white);
	color: var(--color-white);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(10, 10, 10, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all var(--transition);
}

.site-header.is-scrolled {
	background: rgba(10, 10, 10, 0.96);
	border-bottom-color: rgba(0, 210, 255, 0.2);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--color-dark);
}

.site-logo .custom-logo-link {
	display: flex;
	align-items: center;
}

.site-logo .custom-logo,
.site-logo__img {
	max-height: 48px;
	width: auto;
}

.site-logo__img--footer {
	max-height: 42px;
	opacity: 1;
}

.site-logo__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--gradient-brand);
	color: var(--color-white);
	font-weight: 800;
	font-size: 14px;
	border-radius: var(--radius-sm);
	letter-spacing: -0.5px;
}

.site-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.site-logo__text strong {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-dark);
}

.site-logo__text small {
	font-size: 11px;
	font-weight: 500;
	color: var(--color-text-light);
	letter-spacing: 0.3px;
}

.site-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	display: block;
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
	color: var(--color-primary-light);
	background: rgba(30, 115, 190, 0.15);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: var(--color-bg-muted);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	border-radius: 2px;
	transition: all var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	padding: calc(var(--header-height) + 60px) 0 80px;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 115, 190, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 210, 255, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
	z-index: 0;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(30, 115, 190, 0.1);
	border: 1px solid rgba(30, 115, 190, 0.2);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-primary-dark);
	margin-bottom: 24px;
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	background: var(--color-primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--color-dark);
	margin: 0 0 24px;
	letter-spacing: -0.02em;
}

.hero__title span {
	display: block;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__desc {
	font-size: 18px;
	line-height: 1.7;
	color: var(--color-text-light);
	margin: 0 0 32px;
	max-width: 520px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 48px;
}

.hero__stats {
	display: flex;
	gap: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

.stat strong {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--color-dark);
	line-height: 1;
	margin-bottom: 4px;
}

.stat span {
	font-size: 13px;
	color: var(--color-text-light);
	font-weight: 500;
}

.hero__visual {
	position: relative;
	min-height: 420px;
}

.hero-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 28px;
}

.hero-card--main {
	position: relative;
	z-index: 2;
	max-width: 320px;
	margin: 40px auto 0;
	text-align: center;
}

.hero-card__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(30, 115, 190, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
	border-radius: var(--radius-md);
	color: var(--color-primary);
}

.hero-card__icon svg {
	width: 32px;
	height: 32px;
}

.hero-card--main h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-dark);
}

.hero-card--main p {
	margin: 0;
	font-size: 14px;
	color: var(--color-text-light);
}

.hero-card--float {
	position: absolute;
	padding: 16px 24px;
	font-size: 14px;
	animation: float 4s ease-in-out infinite;
}

.hero-card--float strong {
	color: var(--color-dark);
}

.hero-card--top {
	top: 20px;
	right: 0;
	animation-delay: 0s;
}

.hero-card--bottom {
	bottom: 40px;
	left: 0;
	animation-delay: 2s;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* Trust Bar */
.trust-bar {
	padding: 24px 0;
	background: var(--color-white);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
}

.trust-item svg {
	width: 24px;
	height: 24px;
	color: var(--color-primary);
	flex-shrink: 0;
}

/* Sections */
.section {
	padding: 100px 0;
}

.section--alt {
	background: var(--color-bg-alt);
}

.section--page {
	padding: calc(var(--header-height) + 48px) 0 80px;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 64px;
}

.section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.section-header h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.section-header p {
	font-size: 17px;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.7;
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.product-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	transition: all var(--transition);
}

.product-card:hover {
	border-color: transparent;
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.product-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(30, 115, 190, 0.1) 0%, rgba(0, 210, 255, 0.08) 100%);
	border-radius: var(--radius-md);
	color: var(--color-primary);
	margin-bottom: 20px;
}

.product-card__icon svg {
	width: 28px;
	height: 28px;
}

.product-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-dark);
	margin: 0 0 10px;
	line-height: 1.3;
}

.product-card p {
	font-size: 14px;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.6;
}

/* About */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-content h2 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 24px;
	letter-spacing: -0.02em;
}

.about-content p {
	font-size: 16px;
	color: var(--color-text-light);
	margin: 0 0 16px;
	line-height: 1.7;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px;
}

.check-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	font-weight: 500;
	color: var(--color-dark);
}

.check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
	background: var(--color-primary);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}

.about-visual {
	position: relative;
}

.about-card {
	display: flex;
	align-items: center;
	gap: 24px;
	background: var(--gradient-brand);
	border-radius: var(--radius-xl);
	padding: 40px;
	color: var(--color-white);
	margin-bottom: 24px;
}

.about-card__number {
	font-size: 72px;
	font-weight: 800;
	line-height: 1;
	opacity: 0.9;
}

.about-card__text strong {
	display: block;
	font-size: 24px;
	font-weight: 700;
}

.about-card__text span {
	font-size: 15px;
	opacity: 0.9;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 20px;
	transition: all var(--transition);
}

.about-feature:hover {
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.about-feature svg {
	width: 28px;
	height: 28px;
	color: var(--color-primary);
	flex-shrink: 0;
}

.about-feature strong {
	display: block;
	font-size: 15px;
	color: var(--color-dark);
}

.about-feature span {
	font-size: 13px;
	color: var(--color-text-light);
}

/* CTA */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
}

.cta-section__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cta-section__content h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--color-white);
	margin: 0 0 12px;
}

.cta-section__content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 480px;
}

.cta-section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	flex-shrink: 0;
}

/* Footer */
.site-footer {
	background: var(--color-brand-black);
	color: rgba(255, 255, 255, 0.7);
	padding: 80px 0 0;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-logo--footer .site-logo__text strong {
	color: var(--color-white);
}

.site-logo--footer .site-logo__text small {
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__brand p {
	font-size: 14px;
	line-height: 1.7;
	margin: 20px 0 0;
	max-width: 300px;
}

.site-footer__col h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 20px;
}

.footer-links,
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
	color: var(--color-white);
}

.site-footer__bottom {
	padding: 24px 0;
	text-align: center;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* Page Content */
.page-header {
	margin-bottom: 32px;
}

.page-header h1 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--color-dark);
	margin: 0;
	letter-spacing: -0.02em;
}

.page-thumbnail {
	margin-bottom: 32px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.entry-content {
	font-size: 17px;
	line-height: 1.8;
	color: var(--color-text);
}

.entry-content h2,
.entry-content h3 {
	color: var(--color-dark);
	margin-top: 2em;
}

.entry-content p {
	margin-bottom: 1.5em;
}

/* Visual Hero */
.hero--visual {
	min-height: 720px;
	padding-bottom: 100px;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.78) 38%, rgba(30, 115, 190, 0.45) 72%, rgba(0, 210, 255, 0.25) 100%);
}

.hero--visual .hero__title,
.hero--visual .hero__desc,
.hero--visual .stat strong,
.hero--visual .stat span {
	color: var(--color-white);
}

.hero--visual .hero__title span {
	background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero--visual .hero__desc {
	color: rgba(255, 255, 255, 0.85);
}

.hero--visual .hero__stats {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.hero--visual .hero__badge {
	background: rgba(30, 115, 190, 0.25);
	border-color: rgba(0, 210, 255, 0.35);
	color: var(--color-primary-light);
}

.hero__panel {
	position: relative;
}

.hero__catalog-cover {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	border: 4px solid rgba(255,255,255,0.9);
}

.hero__panel-card {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: -24px;
	background: var(--color-white);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	box-shadow: var(--shadow-lg);
}

.hero__panel-card strong {
	display: block;
	font-size: 18px;
	color: var(--color-primary-dark);
	margin-bottom: 6px;
}

.hero__panel-card p {
	margin: 0;
	font-size: 14px;
	color: var(--color-text-light);
}

/* Sectors */
.sectors {
	padding: 28px 0 8px;
	background: var(--color-bg-alt);
}

.sectors__label {
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: var(--color-text-light);
	margin: 0 0 16px;
}

.sectors__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.sector-pill {
	display: inline-flex;
	padding: 10px 18px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
}

/* Visual Product Cards */
.product-grid--visual {
	grid-template-columns: repeat(3, 1fr);
}

.product-card--visual {
	padding: 0;
	overflow: hidden;
}

.product-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #ffffff;
	border-bottom: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.product-card--visual:hover .product-card__media img {
	transform: scale(1.06);
}

.product-card__body {
	padding: 24px;
}

.product-card__tags {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 8px;
}

/* Showcase */
.showcase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.showcase-item {
	margin: 0;
}

.showcase-item__media {
	aspect-ratio: 1;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.showcase-item__media img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.showcase-item figcaption {
	margin-top: 12px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
}

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	transition: all var(--transition);
}

.service-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: transparent;
	transform: translateY(-4px);
}

.service-card__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	margin-bottom: 18px;
	background: linear-gradient(135deg, rgba(30,115,190,0.12), rgba(0,210,255,0.1));
	position: relative;
}

.service-card__icon::after {
	content: '';
	position: absolute;
	inset: 14px;
	background: var(--color-primary);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.service-card__icon--education::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-width='2' d='M12 14l9-5-9-5-9 5 9 5z'/%3E%3Cpath stroke-width='2' d='M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z'/%3E%3C/svg%3E"); }
.service-card__icon--consult::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-width='2' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z'/%3E%3C/svg%3E"); }
.service-card__icon--plan::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-width='2' d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2'/%3E%3C/svg%3E"); }
.service-card__icon--delivery::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-width='2' d='M13 16V6a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h1m8-1a1 1 0 01-1 1H9m4-1V8a1 1 0 011-1h2.586a1 1 0 01.707.293l3.414 3.414a1 1 0 01.293.707V16a1 1 0 01-1 1h-1m-6-1a1 1 0 001 1h1M5 17a2 2 0 104 0m-4 0a2 2 0 114 0m6 0a2 2 0 104 0m-4 0a2 2 0 114 0'/%3E%3C/svg%3E"); }

.service-card h3 {
	margin: 0 0 10px;
	font-size: 17px;
	color: var(--color-dark);
}

.service-card p {
	margin: 0;
	font-size: 14px;
	color: var(--color-text-light);
	line-height: 1.6;
}

/* About visual */
.about-grid--visual {
	grid-template-columns: 1.05fr 0.95fr;
}

.about-visual--photo {
	position: relative;
}

.about-visual__photo {
	width: 100%;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	min-height: 480px;
	object-fit: cover;
}

.about-card--overlay {
	position: absolute;
	left: 24px;
	bottom: 24px;
	right: auto;
	margin: 0;
	min-width: 220px;
}

/* Catalog cards */
.catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.catalog-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: inherit;
	transition: all var(--transition);
}

.catalog-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: transparent;
	color: inherit;
}

.catalog-card__cover {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--color-bg-muted);
}

.catalog-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.catalog-card__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.catalog-card__body h3 {
	margin: 0 0 10px;
	font-size: 18px;
	color: var(--color-dark);
}

.catalog-card__body p {
	margin: 0 0 16px;
	font-size: 14px;
	color: var(--color-text-light);
	flex: 1;
}

.catalog-card__link {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
}

/* CTA visual */
.cta-section--visual {
	position: relative;
	overflow: hidden;
}

.cta-section__bg {
	position: absolute;
	inset: 0;
}

.cta-section__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-section--visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(21, 90, 150, 0.94) 0%, rgba(30, 115, 190, 0.88) 50%, rgba(0, 210, 255, 0.85) 100%);
	z-index: 1;
}

.cta-section--visual .cta-section__inner {
	position: relative;
	z-index: 2;
}

.cta-contact {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
}

.cta-contact li {
	margin-bottom: 8px;
	font-size: 15px;
	color: rgba(255,255,255,0.9);
}

.cta-contact a {
	color: var(--color-white);
	text-decoration: underline;
}

/* Contact / Quote */
.section--contact {
	background: var(--color-bg-alt);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: start;
}

.contact-info h2 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 16px;
}

.contact-info > p {
	color: var(--color-text-light);
	margin: 0 0 28px;
	line-height: 1.7;
}

.contact-cards {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	gap: 16px;
}

.contact-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 18px 20px;
}

.contact-card__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-primary);
	margin-bottom: 6px;
}

.contact-card a {
	color: var(--color-dark);
	font-weight: 600;
}

.contact-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.contact-form-wrap {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	padding: 32px;
	box-shadow: var(--shadow-lg);
}

.quote-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.quote-form .form-group {
	margin-bottom: 16px;
}

.quote-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-size: 15px;
	color: var(--color-dark);
	background: var(--color-bg);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.15);
}

.btn--block {
	width: 100%;
}

.mef-notice {
	position: fixed;
	top: calc(var(--header-height) + 12px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1100;
	max-width: 560px;
	width: calc(100% - 48px);
	padding: 14px 20px;
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 600;
	box-shadow: var(--shadow-lg);
}

.mef-notice--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.mef-notice--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* Animations */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: var(--delay, 0s);
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
	.product-grid,
	.product-grid--visual {
		grid-template-columns: repeat(2, 1fr);
	}

	.showcase-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.catalog-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.quote-form .form-row {
		grid-template-columns: 1fr;
	}

	.about-grid,
	.about-grid--visual {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 72px;
	}

	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: var(--color-brand-black);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 16px 24px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all var(--transition);
	}

	.site-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.nav-menu a {
		padding: 14px 16px;
	}

	.site-header__actions .btn--primary {
		display: none;
	}

	.hero--visual {
		min-height: auto;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero__panel {
		order: -1;
	}

	.hero__panel-card {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin-top: 16px;
	}

	.hero__visual {
		min-height: 280px;
		order: -1;
	}

	.hero-card--main {
		margin-top: 0;
	}

	.showcase-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.hero__stats {
		gap: 24px;
	}

	.trust-bar__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.cta-section__inner {
		flex-direction: column;
		text-align: center;
	}

	.cta-section__actions {
		justify-content: center;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 480px) {
	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.hero__stats {
		flex-direction: column;
		gap: 16px;
	}

	.trust-bar__inner {
		grid-template-columns: 1fr;
	}
}
