/**
 * Yapısal Çözümler — «Blueprint / şasi» editoryal tema (frontend-design)
 * Yüzen başlık çubuğu: alt çizgi yok; bağlantılar metin içinde .link-inline ile altın vurgu
 */

:root {
	--ink: #071018;
	--ink-soft: #1a2d44;
	--slate: #3d5166;
	--mist: #e8eef4;
	--fog: #f2f5f8;
	--paper: #fbfcfe;
	--gold: #c9a227;
	--gold-deep: #9a7b1c;
	--gold-glow: rgba(201, 162, 39, 0.35);
	--white: #ffffff;

	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-ui: "Urbanist", system-ui, sans-serif;

	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;

	--r-sm: 10px;
	--r-md: 14px;
	--r-lg: 20px;
	--r-pill: 999px;

	--shadow-bar: 0 12px 40px rgba(7, 16, 24, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
	--shadow-float: 0 24px 60px rgba(7, 16, 24, 0.18);
	--ease: cubic-bezier(0.25, 0.8, 0.25, 1);
	--t: 220ms;

	--z-header: 200;
	--z-drawer: 250;
	--z-fab: 300;
	--z-skip: 1000;

	--noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.hero-rise,
	.hero-visual-rise {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 1rem;
	line-height: 1.62;
	color: var(--ink);
	background-color: var(--fog);
	background-image: var(--noise),
		radial-gradient(1200px 600px at 12% -8%, rgba(201, 162, 39, 0.14), transparent 52%),
		linear-gradient(165deg, var(--paper) 0%, var(--fog) 42%, #e4eaf1 100%);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Varsayılan: alt çizgi yok (header ve çoğu arayüz temiz kalır) */
a {
	color: var(--ink-soft);
	text-decoration: none;
}

a:hover {
	color: var(--ink);
}

/* Metin içi bağlantılar: ince altın çizgi animasyonu, klasik underline değil */
.link-inline {
	position: relative;
	font-weight: 600;
	color: var(--ink-soft);
	padding-bottom: 2px;
	background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat;
	transition: color var(--t) var(--ease), background-size var(--t) var(--ease);
}

.link-inline:hover {
	color: var(--gold-deep);
	background-image: linear-gradient(var(--gold), var(--gold));
	background-size: 100% 2px;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: var(--r-sm);
}

:focus:not(:focus-visible) {
	outline: none;
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: var(--space-4);
	padding: var(--space-3) var(--space-5);
	background: var(--gold);
	color: var(--ink);
	font-weight: 700;
	border-radius: var(--r-sm);
	z-index: var(--z-skip);
	font-size: 0.9375rem;
}

.skip-link:focus {
	left: var(--space-4);
}

.container {
	width: min(1160px, calc(100% - 2rem));
	margin-inline: auto;
}

/* ——— Yüzen başlık: alt kenar çizgisi YOK ——— */
.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	padding: var(--space-4) 0 var(--space-2);
	background: linear-gradient(to bottom, rgba(242, 245, 248, 0.94) 55%, transparent);
	backdrop-filter: blur(6px);
	border-bottom: none;
}

.site-header.is-scrolled .header-bar {
	box-shadow: var(--shadow-float), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.header-wrap {
	display: flex;
	justify-content: center;
}

.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-5);
	width: 100%;
	min-height: 68px;
	padding: var(--space-3) var(--space-5);
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(18px) saturate(1.6);
	border-radius: var(--r-pill);
	border: 1px solid rgba(255, 255, 255, 0.75);
	box-shadow: var(--shadow-bar);
	transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}

@media (max-width: 799px) {
	.header-bar {
		border-radius: var(--r-lg);
		padding-inline: var(--space-4);
	}
}

.brand {
	display: flex;
	align-items: center;
	gap: var(--space-4);
	min-width: 0;
	color: inherit;
	border-radius: var(--r-sm);
}

.brand-mark {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3px;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.brand-mark span:first-child {
	background: var(--ink);
	border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.brand-mark span:last-child {
	background: linear-gradient(160deg, #e4c04d, var(--gold));
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.brand-text strong {
	font-family: var(--font-ui);
	font-weight: 800;
	font-size: clamp(0.8125rem, 0.76rem + 0.2vw, 0.9375rem);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: block;
	line-height: 1.15;
}

.brand-text .w-navy {
	color: var(--ink);
}

.brand-text .w-gold {
	color: var(--gold-deep);
}

.brand-tag {
	display: none;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--slate);
	border-left: 3px solid var(--gold);
	padding-left: var(--space-4);
	line-height: 1.45;
	max-width: 30ch;
}

@media (min-width: 960px) {
	.brand-tag {
		display: block;
	}
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	padding: 0 var(--space-4);
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(7, 16, 24, 0.08);
	border-radius: var(--r-pill);
	cursor: pointer;
	touch-action: manipulation;
	transition: background var(--t), border-color var(--t), transform 0.12s ease;
}

.nav-toggle:hover {
	background: var(--white);
	border-color: var(--gold-glow);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: var(--space-1);
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 var(--space-5);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--slate);
	text-decoration: none;
	border-radius: var(--r-pill);
	transition: color var(--t), background var(--t), box-shadow var(--t);
}

.site-nav a:hover {
	color: var(--ink);
	background: rgba(7, 16, 24, 0.05);
}

.site-nav a.is-active {
	color: var(--ink);
	background: linear-gradient(135deg, rgba(201, 162, 39, 0.22), rgba(255, 255, 255, 0.9));
	box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.45);
}

@media (max-width: 799px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		inset: 92px var(--space-4) auto var(--space-4);
		flex-direction: column;
		align-items: stretch;
		padding: var(--space-3);
		gap: var(--space-1);
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(16px);
		border: 1px solid rgba(255, 255, 255, 0.9);
		border-radius: var(--r-lg);
		box-shadow: var(--shadow-float);
		z-index: var(--z-drawer);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px) scale(0.98);
		transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0) scale(1);
	}

	.site-nav a {
		border-radius: var(--r-md);
		justify-content: flex-start;
	}
}

/* ——— Kahraman ——— */
.hero {
	position: relative;
	padding: var(--space-8) 0 var(--space-16);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
			105deg,
			transparent 0%,
			transparent 46%,
			rgba(201, 162, 39, 0.06) 46%,
			rgba(201, 162, 39, 0.06) 47%,
			transparent 47%
		),
		radial-gradient(ellipse 80% 50% at 100% 0%, rgba(26, 45, 68, 0.06), transparent);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-10);
	align-items: center;
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1.08fr 0.92fr;
		gap: var(--space-12);
		align-items: center;
	}
}

.hero-rise {
	animation: hero-rise 0.85s var(--ease) both;
}

.hero-visual-rise {
	animation: hero-rise 0.95s var(--ease) 0.12s both;
}

@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-copy h1 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.35rem, 1.6rem + 2.4vw, 3.5rem);
	line-height: 1.05;
	color: var(--ink);
	margin: 0 0 var(--space-5);
	letter-spacing: -0.02em;
}

.hero-copy h1 .accent {
	color: var(--gold-deep);
	font-style: italic;
	font-weight: 600;
}

.hero-lead {
	margin: 0 0 var(--space-8);
	color: var(--slate);
	font-size: 1.125rem;
	max-width: 36rem;
	font-weight: 500;
}

.service-row {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: var(--space-3);
}

.service-card {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(7, 16, 24, 0.06);
	border-radius: var(--r-lg);
	padding: var(--space-5) var(--space-4);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-3);
	min-height: 100%;
	box-shadow: 0 4px 20px rgba(7, 16, 24, 0.04);
	transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 162, 39, 0.35);
	box-shadow: 0 16px 40px rgba(7, 16, 24, 0.1);
}

.service-card svg {
	width: 34px;
	height: 34px;
	color: var(--ink-soft);
}

.service-card span {
	font-family: var(--font-ui);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ink);
	line-height: 1.3;
}

/* Görsel: altın «şasi» çerçeve + hafif rotasyon */
.hero-visual {
	position: relative;
	margin: 0;
	border-radius: var(--r-lg);
	isolation: isolate;
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: -10px -8px -14px -14px;
	background: linear-gradient(145deg, var(--gold), #f0d875 45%, var(--gold-deep));
	border-radius: calc(var(--r-lg) + 6px);
	transform: rotate(-2.5deg);
	z-index: -1;
	opacity: 0.92;
	box-shadow: 0 30px 60px var(--gold-glow);
}

.hero-visual-inner {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-float);
}

.hero-visual-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-visual-inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, transparent 35%, rgba(7, 16, 24, 0.65) 100%);
	pointer-events: none;
}

.hero-visual figcaption.hero-badge {
	font-style: normal;
}

.hero-badge {
	position: absolute;
	left: var(--space-5);
	right: var(--space-5);
	bottom: var(--space-5);
	z-index: 1;
	margin: 0;
	padding: var(--space-4) var(--space-5);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	border-radius: var(--r-md);
	font-family: var(--font-ui);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	line-height: 1.45;
	box-shadow: 0 8px 28px rgba(7, 16, 24, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ——— CTA ——— */
.cta-band {
	position: relative;
	background: var(--ink);
	color: #e2e8f0;
	padding: var(--space-10) 0;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: linear-gradient(180deg, #f0d875, var(--gold), var(--gold-deep));
}

.cta-inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-6);
	padding-left: var(--space-4);
}

.cta-icon {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: var(--r-md);
	background: rgba(255, 255, 255, 0.06);
	display: grid;
	place-items: center;
	border: 1px solid rgba(201, 162, 39, 0.4);
}

.cta-icon svg {
	width: 28px;
	height: 28px;
	color: var(--gold);
}

.cta-text {
	flex: 1 1 280px;
	font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
	line-height: 1.5;
	margin: 0;
	font-weight: 500;
	font-family: var(--font-ui);
}

.cta-text .hl {
	color: #fde68a;
	font-weight: 800;
}

/* ——— Sektörler ——— */
.sectors {
	padding: var(--space-16) 0;
	background: var(--white);
	position: relative;
}

.sectors::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(7, 16, 24, 0.08), transparent);
}

.sectors h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.75rem, 1.35rem + 1vw, 2.35rem);
	color: var(--ink);
	margin: 0 auto var(--space-10);
	max-width: 34rem;
	text-align: center;
	line-height: 1.2;
}

.sector-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
	gap: var(--space-4);
}

.sector-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-3);
	padding: var(--space-6) var(--space-3);
	background: var(--fog);
	border: 1px solid rgba(7, 16, 24, 0.05);
	border-radius: var(--r-lg);
	transition: border-color var(--t), transform var(--t) var(--ease);
}

.sector-item:hover {
	border-color: rgba(201, 162, 39, 0.3);
	transform: translateY(-2px);
}

.sector-item .sector-icon {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border-radius: var(--r-pill);
	background: var(--white);
	border: 1px solid rgba(7, 16, 24, 0.06);
	color: var(--ink-soft);
	box-shadow: 0 4px 14px rgba(7, 16, 24, 0.06);
}

.sector-item svg {
	width: 24px;
	height: 24px;
}

/* Sektör adı (ikon dışındaki doğrudan span) */
.sector-item > span:not(.sector-icon) {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--slate);
	font-family: var(--font-ui);
}

.sector-more-label {
	display: block;
	line-height: 1.35;
}

.sector-more-sub {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-top: 2px;
	color: var(--slate);
	opacity: 0.9;
}

/* ——— Güven ——— */
.trust-strip {
	background: linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
	color: #cbd5e1;
	position: relative;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-5);
	padding: var(--space-12) 0;
}

.trust-card {
	display: flex;
	gap: var(--space-4);
	align-items: flex-start;
	padding: var(--space-5);
	border-radius: var(--r-md);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color var(--t), background var(--t);
}

.trust-card:hover {
	border-color: rgba(201, 162, 39, 0.25);
	background: rgba(255, 255, 255, 0.05);
}

.trust-card svg {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	color: var(--gold);
}

.trust-card p {
	margin: 0;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: #f1f5f9;
	font-family: var(--font-ui);
}

/* ——— İletişim ——— */
.contact {
	padding: var(--space-16) 0;
	background: linear-gradient(180deg, var(--fog), var(--mist));
}

.contact h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.75rem, 1.35rem + 1vw, 2.35rem);
	color: var(--ink);
	margin: 0 0 var(--space-3);
}

.contact-lead {
	margin: 0 0 var(--space-8);
	color: var(--slate);
	max-width: 40rem;
	font-size: 1.0625rem;
	font-weight: 500;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5);
}

@media (min-width: 880px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-card {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	border-radius: var(--r-lg);
	padding: var(--space-8);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 50px rgba(7, 16, 24, 0.08);
	height: 100%;
}

.contact-card-title {
	margin: 0 0 var(--space-5);
	font-size: 1.25rem;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--ink);
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.contact-detail {
	margin: 0 0 var(--space-4);
	font-size: 1rem;
	line-height: 1.55;
	color: var(--ink-soft);
}

.contact-detail:last-of-type {
	margin-bottom: 0;
}

.contact-detail strong {
	color: var(--ink);
	font-weight: 700;
}

.contact-meta {
	margin: var(--space-6) 0 0;
	font-size: 0.875rem;
	color: var(--slate);
}

/* ——— Düğmeler ——— */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: 48px;
	padding: 0 var(--space-6);
	font-family: var(--font-ui);
	font-weight: 800;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--r-pill);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	touch-action: manipulation;
	transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t),
		transform 0.12s ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn-gold {
	background: linear-gradient(165deg, #e8cf6a, var(--gold) 45%, var(--gold-deep));
	color: var(--ink);
	border-color: rgba(7, 16, 24, 0.15);
	box-shadow: 0 6px 22px var(--gold-glow);
}

.btn-gold:hover {
	filter: brightness(1.05);
	box-shadow: 0 10px 32px rgba(201, 162, 39, 0.45);
	color: var(--ink);
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	border-color: rgba(7, 16, 24, 0.12);
}

.btn-outline:hover {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
}

.btn-ghost-on-navy {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-on-navy:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--white);
}

.site-footer {
	background: var(--ink);
	color: #94a3b8;
	padding: var(--space-10) 0 calc(var(--space-10) + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
}

.footer-brand {
	font-family: var(--font-ui);
	font-weight: 800;
	font-size: 0.875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f8fafc;
}

.footer-meta {
	font-size: 0.875rem;
	margin: var(--space-2) 0 0;
	line-height: 1.5;
}

.footer-credit {
	margin: var(--space-6) 0 0;
	padding-top: var(--space-5);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.8125rem;
	color: #64748b;
	text-align: center;
	font-family: var(--font-ui);
}

.footer-credit-link {
	color: #cbd5e1;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color var(--t), border-color var(--t);
}

.footer-credit-link:hover {
	color: var(--gold);
	border-bottom-color: rgba(201, 162, 39, 0.6);
}

.whatsapp-fab {
	position: fixed;
	right: max(var(--space-4), env(safe-area-inset-right));
	bottom: max(var(--space-4), env(safe-area-inset-bottom));
	z-index: var(--z-fab);
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	min-width: 58px;
	min-height: 58px;
	border-radius: 50%;
	background: linear-gradient(145deg, #22c55e, #0f766e);
	color: #fff;
	box-shadow: 0 16px 40px rgba(15, 118, 110, 0.45);
	border: 2px solid rgba(255, 255, 255, 0.35);
	text-decoration: none;
	touch-action: manipulation;
	transition: transform var(--t) var(--ease), box-shadow var(--t);
}

.whatsapp-fab:hover {
	transform: scale(1.06) rotate(-4deg);
	box-shadow: 0 22px 50px rgba(15, 118, 110, 0.55);
}
