/* ============================================================
   FORM'AOU — 2026 PREMIUM DESIGN — SINGLE CSS FILE
   Typo : Sora (titres) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
	--ff-head: 'Sora', system-ui, sans-serif;
	--ff-body: 'Inter', system-ui, sans-serif;
	--color-bg: #f5f5f7;
	--color-surface: #fff;
	--color-surface-alt: #eef2f6;
	--color-text: #0b1120;
	--color-text-2: #3b4963;
	--color-text-3: #7b8ba5;
	--color-accent: #ea580c;
	--color-accent-2: #f97316;
	--color-accent-bg: #fff7ed;
	--color-teal: #0d9488;
	--color-indigo: #6366f1;
	--gradient-hero: linear-gradient(135deg, #0d9488 0%, #0891b2 40%, #4f46e5 100%);
	--gradient-cta: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	--border: #e0e5ec;
	--radius: 18px;
	--radius-sm: 10px;
	--radius-xs: 6px;
	--shadow-xs: 0 1px 2px rgba(0,0,0,.04);
	--shadow-sm: 0 2px 8px rgba(0,0,0,.06);
	--shadow: 0 8px 30px rgba(0,0,0,.07);
	--shadow-lg: 0 20px 50px rgba(0,0,0,.1);
	--shadow-xl: 0 30px 70px rgba(0,0,0,.14);
	--ease: cubic-bezier(.4,0,.2,1);
	--ease-out: cubic-bezier(.33,1,.68,1);
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--ff-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text-2);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
	font-family: var(--ff-head);
	color: var(--color-text);
	line-height: 1.15;
	letter-spacing: -0.025em;
}
a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color .2s var(--ease);
}
a:hover { color: var(--color-accent-2); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- TOP BAR ---- */
.top-bar {
	background: var(--color-text);
	color: rgba(255,255,255,.85);
	font-size: .8rem;
	padding: .45rem 1.5rem;
	position: relative;
	z-index: 110;
}
.top-bar-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: .6rem;
}
.top-bar a { color: rgba(255,255,255,.95); }
.top-bar a:hover { color: #fff; }
.top-bar-sep { opacity: .4; }

/* ---- HEADER ---- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: .65rem 1.5rem;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.transparent {
	position: absolute;
	left: 0; right: 0; top: auto;
	background: transparent;
	border-color: transparent;
	backdrop-filter: none;
}
.site-header.transparent .main-nav a { color: var(--color-accent); }
.site-header.transparent .main-nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
.site-header.transparent .logo img { filter: drop-shadow(0 1px 3px rgba(0,0,0,.25)); }
.site-header.transparent .nav-toggle {
	color: #f97316;
	border-color: rgba(249,115,22,.5);
	background: rgba(249,115,22,.15);
}
.site-header.transparent .nav-toggle:hover {
	color: #fb923c;
	border-color: rgba(251,146,60,.6);
	background: rgba(249,115,22,.25);
}

.header-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.logo img { height: 42px; transition: transform .2s var(--ease); }
.logo:hover img { transform: scale(1.03); }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px; height: 40px;
	background: var(--color-surface-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius-xs);
	cursor: pointer;
	padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 0 auto; transition: transform .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-close { display: none; }

.main-nav ul { display: flex; align-items: center; gap: .15rem; }
.main-nav a {
	display: block;
	padding: .55rem .9rem;
	font-family: var(--ff-head);
	font-size: .88rem;
	font-weight: 500;
	color: var(--color-text-2);
	border-radius: var(--radius-xs);
	transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--color-accent); background: var(--color-accent-bg); }

@media (max-width: 820px) {
	.nav-toggle { display: flex; }
	.nav-close {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 1.25rem;
		right: 1rem;
		width: 40px;
		height: 40px;
		padding: 0;
		background: var(--color-surface-alt);
		border: 1px solid var(--border);
		border-radius: var(--radius-xs);
		cursor: pointer;
		color: var(--color-text);
	}
	.nav-close span {
		display: block;
		position: absolute;
		width: 18px;
		height: 2px;
		background: currentColor;
		transition: transform .2s var(--ease);
	}
	.nav-close span:nth-child(1) { transform: rotate(45deg); }
	.nav-close span:nth-child(2) { transform: rotate(-45deg); }
	.nav-close:hover { color: var(--color-accent); }
	.main-nav {
		position: fixed; top: 0; right: 0; width: min(300px,90vw); height: 100vh;
		background: var(--color-surface);
		border-left: 1px solid var(--border);
		box-shadow: -6px 0 30px rgba(0,0,0,.1);
		padding: 5rem 1.5rem 2rem;
		transform: translateX(100%);
		transition: transform .35s var(--ease-out);
		z-index: 99;
	}
	.main-nav.is-open { transform: translateX(0); }
	.main-nav ul { flex-direction: column; align-items: stretch; }
	.main-nav a { padding: .75rem 1rem; color: var(--color-text); font-size: 1rem; }
}

/* ---- HERO ---- */
.hero {
	position: relative;
	min-height: min(92vh, 800px);
	display: flex;
	align-items: center;
	padding: 5.5rem 1.5rem 3rem;
	overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background-image: url('../img/home-background.jpg');
	background-size: cover;
	background-position: center;
}
.hero-bg::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(110deg, rgba(11,17,32,.92) 0%, rgba(13,148,136,.82) 45%, rgba(79,70,229,.78) 100%);
}

.hero-shape { position: absolute; pointer-events: none; z-index: 0; }
.hero-shape-1 {
	width: clamp(200px,30vw,400px); height: clamp(200px,30vw,400px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
	top: 4%; right: 8%;
	animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
	width: clamp(130px,20vw,240px); height: clamp(130px,20vw,240px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
	bottom: 12%; left: 4%;
	animation: float 10s ease-in-out infinite reverse;
}
.hero-geo { position: absolute; pointer-events: none; z-index: 0; opacity: .3; }
.hero-geo-circle { width: 52px; height: 52px; border: 2px solid rgba(255,255,255,.6); border-radius: 50%; top: 18%; left: 12%; animation: float 6s ease-in-out infinite; }
.hero-geo-plus { width: 32px; height: 32px; top: 70%; right: 16%; animation: float 7s ease-in-out infinite 1s; }
.hero-geo-plus::before,.hero-geo-plus::after { content: ''; position: absolute; background: rgba(255,255,255,.5); }
.hero-geo-plus::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.hero-geo-plus::after { height: 2px; width: 100%; top: 50%; transform: translateY(-50%); }
.hero-geo-line { width: 64px; height: 2px; background: rgba(255,255,255,.35); bottom: 28%; right: 22%; animation: float 9s ease-in-out infinite .5s; }
.hero-big-typo {
	position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
	font-family: var(--ff-head); font-size: clamp(5rem,14vw,12rem); font-weight: 800;
	color: rgba(255,255,255,.06); white-space: nowrap; user-select: none;
	animation: heroSlide 1s .2s var(--ease-out) both;
}
@keyframes heroSlide { from { opacity: 0; transform: translateY(-50%) translateX(40px); } to { opacity: 1; transform: translateY(-50%) translateX(0); } }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8px,-12px) scale(1.03); } }

.hero-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(2rem,5vw,4rem); }
.hero-copy { max-width: 640px; }

.hero-badge {
	display: inline-block; font-family: var(--ff-head); font-size: .78rem; font-weight: 700;
	color: #fff; text-transform: uppercase; letter-spacing: .12em;
	padding: .4rem .9rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px; margin-bottom: 1rem;
	animation: fadeUp .7s var(--ease-out) both;
}
.hero h1 {
	font-size: clamp(2.2rem,5.2vw,3.8rem); font-weight: 800; color: #fff;
	text-shadow: 0 2px 24px rgba(0,0,0,.2); margin-bottom: 1rem;
	animation: fadeUp .7s .08s var(--ease-out) both;
}
.hero-highlight {
	background: linear-gradient(120deg, #fde68a 0%, #fbbf24 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: none;
	font-style: normal;
}
.hero .lead {
	font-size: 1.05rem; color: rgba(255,255,255,.88); max-width: 50ch; margin-bottom: 1.5rem; line-height: 1.7;
	animation: fadeUp .7s .16s var(--ease-out) both;
}
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; animation: fadeUp .7s .24s var(--ease-out) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* Hero showcase */
.hero-showcase { position: relative; min-height: 260px; display: grid; place-items: center; animation: fadeUp .8s .3s var(--ease-out) both; }
.hero-showcase-main {
	width: min(420px,100%); padding: 1.6rem 1.4rem; border-radius: 22px;
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
	backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
	color: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.25);
	transform-style: preserve-3d;
}
.hero-showcase-main h3 { font-size: clamp(1.05rem,1.6vw,1.3rem); margin: .4rem 0; }
.hero-showcase-main p { font-size: .9rem; color: rgba(255,255,255,.85); }
.hero-pill {
	display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .65rem;
	border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22);
	font-family: var(--ff-head); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.hero-floating-card {
	position: absolute; display: flex; flex-direction: column; gap: .1rem;
	padding: .65rem .85rem; border-radius: 12px; background: #fff; color: var(--color-text);
	box-shadow: var(--shadow-lg); min-width: 140px;
	animation: floatCard 5s ease-in-out infinite;
}
.hero-floating-card strong { font-family: var(--ff-head); font-size: .85rem; }
.hero-floating-card span { font-size: .75rem; color: var(--color-text-3); }
.hero-floating-card-a { left: -12px; top: 6%; animation-delay: 0s; margin: -20px -10px; }
.hero-floating-card-b { right: -16px; bottom: 10%; animation-delay: 2.5s; margin: -19px -21px; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-showcase { min-height: 200px; margin-top: 1rem; }
	.hero-showcase-main { padding: 1.2rem 1rem; }
	.hero-floating-card-a { left: 4px; top: -8px; margin: -23px -10px; }
	.hero-floating-card-b { right: 4px; bottom: -8px; margin: -19px -21px; }
	.hero-big-typo { display: none; }
	.hero { min-height: auto; padding: 5rem 1.5rem 2.5rem; }
}

/* ---- BUTTONS ---- */
.btn {
	display: inline-flex; align-items: center; gap: .45rem;
	padding: .8rem 1.6rem; font-family: var(--ff-head); font-size: .92rem; font-weight: 600;
	border: none; border-radius: var(--radius-sm); cursor: pointer;
	background: var(--color-accent); color: #fff;
	transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { background: var(--color-accent-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,.3); color: #fff; }
.btn:active { transform: translateY(0); }
.btn-hero {
	padding: .95rem 2rem; font-size: 1rem;
	background: var(--gradient-cta); box-shadow: 0 4px 22px rgba(245,158,11,.35);
}
.btn-hero:hover { box-shadow: 0 8px 30px rgba(234,88,12,.4); transform: translateY(-2px); }
.btn-hero-outline { border: 2px solid rgba(255,255,255,.85); color: #fff; background: transparent !important; }
.btn-hero-outline:hover { background: rgba(255,255,255,.95) !important; color: var(--color-teal); border-color: #fff; }
.btn-secondary { background: var(--color-surface); color: var(--color-accent); border: 2px solid var(--color-accent); }
.btn-secondary:hover { background: var(--color-accent-bg); box-shadow: 0 4px 16px rgba(234,88,12,.12); }
.btn-secondary.btn-hero-outline { background: transparent !important; color: #fff !important; border-color: rgba(255,255,255,.85) !important; }
.btn-secondary.btn-hero-outline:hover { background: rgba(255,255,255,.95) !important; color: var(--color-teal); border-color: #fff; }
.hero .btn-hero-outline { background: transparent !important; color: #fff !important; border: 2px solid rgba(255,255,255,.85) !important; }
.hero .btn-hero-outline:hover { background: rgba(255,255,255,.95) !important; color: var(--color-teal); border-color: #fff !important; }
.magnetic { will-change: transform; transition: transform .15s ease; }

/* ---- STATS ---- */
.section-stats {
	background: var(--color-text); padding: 2.5rem 1.5rem;
	border-bottom: 3px solid var(--color-accent);
}
.stats-grid {
	max-width: 1240px; margin: 0 auto; padding: 0 1rem;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1.5rem; text-align: center;
}
.stat-item { padding: 1rem .5rem; }
.stat-number {
	display: inline-block; font-family: var(--ff-head); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800;
	background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix { font-family: var(--ff-head); font-size: inherit; font-weight: 800; background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; margin-top: .25rem; font-size: .88rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* ---- MARQUEE ---- */
.section-marquee { padding: .75rem 0; background: var(--color-text); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee-wrap { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; min-width: 100%; animation: marquee 22s linear infinite; }
.marquee-track span { color: rgba(255,255,255,.92); font-family: var(--ff-head); font-weight: 700; letter-spacing: .12em; font-size: clamp(.7rem, 1vw, .85rem); padding-right: 2.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTIONS ---- */
.main-content { min-height: 60vh; }
.section { padding: 2rem 1.5rem; max-width: 1240px; margin: 0 auto; }
.section.section-stats,
.section.section-marquee { width: 100%; max-width: none; box-sizing: border-box; }
.section-header { margin-bottom: 2.5rem; }
.section-title { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; margin-bottom: .4rem; }
.section-lead { color: var(--color-text-2); font-size: 1.05rem; max-width: 56ch; }

.section-contrast {
	background: var(--color-surface); border: 1px solid var(--border);
	border-radius: var(--radius); box-shadow: var(--shadow);
	padding: 3.5rem 2rem; margin-top: 2rem; margin-bottom: 2rem;
}
@media (max-width: 820px) { .section-contrast { padding: 2rem 1.2rem; border-radius: 14px; } }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }
.reveal-delay-4 { transition-delay: .24s; }
.reveal-delay-5 { transition-delay: .30s; }
.reveal-delay-6 { transition-delay: .36s; }

/* ---- FEATURES ---- */
.features { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.feature {
	background: var(--color-surface); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 1.75rem; box-shadow: var(--shadow-xs);
	transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--color-accent); }
.feature-icon {
	width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
	background: var(--gradient-hero); border-radius: var(--radius-xs);
	color: #fff; font-size: 1.1rem; margin-bottom: .85rem;
	transition: transform .25s var(--ease-out);
}
.feature:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature p { color: var(--color-text-2); font-size: .93rem; }

/* ---- ABOUT STEPS ---- */
.about-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-top: 2.5rem; max-width: 920px; margin-left: auto; margin-right: auto; }
.about-step {
	display: flex; align-items: flex-start; gap: .85rem; padding: 1.2rem;
	background: var(--color-surface); border: 1px solid var(--border); border-radius: var(--radius);
	box-shadow: var(--shadow-xs); transition: transform .2s var(--ease), box-shadow .2s;
}
.about-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.about-step-num {
	flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
	background: var(--gradient-hero); color: #fff; font-family: var(--ff-head); font-size: 1rem; font-weight: 800; border-radius: var(--radius-xs);
}
.about-step-title { font-family: var(--ff-head); font-weight: 700; font-size: .95rem; margin-bottom: .15rem; }
.about-step-desc { font-size: .88rem; color: var(--color-text-3); }
.about-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-visual img { width: 100%; }
.section-badge { text-align: center; padding: 2rem 1.5rem; }
.section-badge img { max-width: 180px; margin: 0 auto; border-radius: var(--radius-xs); }

/* ---- BENTO CARDS ---- */
.bento { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.bento-card {
	background: var(--color-surface); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 0; overflow: hidden; box-shadow: var(--shadow-xs);
	transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.bento-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); }
.bento-card a { color: inherit; display: block; }
.bento-card .card-img {
	width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--color-surface-alt);
	transition: transform .45s var(--ease-out);
}
.bento-card:hover .card-img { transform: scale(1.06); }
.bento-card .card-title { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin: .65rem 1rem .2rem; }
.bento-card .card-meta { font-size: .85rem; color: var(--color-text-3); padding: 0 1rem .85rem; }

.team-bento { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
.team-card { text-align: center; padding: 1.25rem; overflow: visible; }
.team-card img {
	width: 90px; height: 90px; object-fit: cover; border-radius: 50%;
	margin: 0 auto .65rem; background: var(--color-surface-alt);
	border: 3px solid var(--border);
	transition: transform .3s var(--ease-out), border-color .3s;
}
.team-card:hover img { transform: scale(1.08); border-color: var(--color-accent); }
.team-card .card-title { padding: 0; margin: 0 0 .15rem; font-size: .92rem; }
.team-card .card-meta { padding: 0; font-size: .82rem; }

/* ---- NEWS ---- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.news-card {
	background: var(--color-surface); border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow-xs);
	transition: transform .22s var(--ease), box-shadow .22s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--color-surface-alt); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 1.3rem; }
.news-date { display: inline-block; font-family: var(--ff-head); font-size: .78rem; font-weight: 700; color: var(--color-accent); margin-bottom: .4rem; }
.news-card-title { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.3; }
.news-card-excerpt { font-size: .9rem; color: var(--color-text-2); margin-bottom: .65rem; }
.news-link { font-family: var(--ff-head); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.news-link:hover { gap: .55rem; }

/* ---- CTA BLOCK ---- */
.cta-block {
	position: relative; padding: 4.5rem 1.5rem; text-align: center;
	background: var(--gradient-hero); overflow: hidden; max-width: none;
}
.cta-block::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,255,255,.08) 0%, transparent 50%);
}
.cta-block h2 { color: #fff; position: relative; }
.cta-block .lead { color: rgba(255,255,255,.88); max-width: 52ch; margin: .5rem auto 1.5rem; position: relative; }
.cta-block .btn { position: relative; background: #fff; color: var(--color-teal); }
.cta-block .btn:hover { background: #f0fdfa; box-shadow: 0 6px 24px rgba(255,255,255,.2); }

/* ---- TESTIMONIALS ---- */
.section-testimonials { background: var(--color-text); padding: 5rem 1.5rem; max-width: none; border-radius: 0; }
.section-testimonials .section-title { color: #fff; }
.section-testimonials .section-lead { color: rgba(255,255,255,.7); }
.testimonials-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.25rem; }
.testimonial-card {
	margin: 0; padding: 1.75rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius); position: relative;
	transition: transform .2s var(--ease), background .2s;
}
.testimonial-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); }
.testimonial-card::before {
	content: '"'; position: absolute; top: .7rem; left: 1.1rem;
	font-size: 2.8rem; line-height: 1; color: rgba(255,255,255,.1); font-family: Georgia, serif;
}
.testimonial-quote { font-size: 1rem; color: rgba(255,255,255,.9); padding-left: .8rem; font-style: italic; margin-bottom: .85rem; line-height: 1.6; }
.testimonial-author { padding-left: .8rem; font-size: .9rem; display: flex; flex-direction: column; gap: .1rem; }
.testimonial-author strong { color: #fff; }
.testimonial-author span { color: rgba(255,255,255,.55); font-weight: 500; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; margin-bottom: .3rem; color: var(--color-text); }
.form-group input,.form-group textarea {
	width: 100%; padding: .7rem 1rem; font-family: var(--ff-body); font-size: .95rem;
	color: var(--color-text); background: var(--color-surface);
	border: 1px solid var(--border); border-radius: var(--radius-xs);
	transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,.form-group textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(234,88,12,.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input::placeholder,.form-group textarea::placeholder { color: var(--color-text-3); }
.alert { padding: .85rem 1.1rem; border-radius: var(--radius-xs); margin-bottom: 1rem; }
.alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---- PAGE HERO (contact etc) ---- */
.page-hero { padding: 4rem 1.5rem 2rem; text-align: center; background: var(--gradient-hero); }
.page-hero h1 { color: #fff; margin-bottom: .35rem; }
.page-hero p { color: rgba(255,255,255,.8); }
.contact-layout { display: grid; gap: 2rem; max-width: 1000px; margin: 2rem auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-form-wrap { background: var(--color-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-info h3 { font-family: var(--ff-head); margin-bottom: .85rem; }
.contact-info ul { list-style: none; }
.contact-info li { margin-bottom: .65rem; color: var(--color-text-2); display: flex; align-items: flex-start; gap: .45rem; }

/* ---- FOOTER ---- */
.site-footer { background: var(--color-text); padding: 3rem 1.5rem 1.5rem; margin-top: 0; }
.footer-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.footer-logo { margin: 0 auto 1.5rem; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-block { display: flex; flex-direction: column; align-items: center; gap: .3rem; color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-block a { color: rgba(255,255,255,.85); }
.footer-block a:hover { color: #fff; }
.footer-icon { opacity: .7; filter: brightness(0) invert(1); }
.footer-europe { margin-bottom: 1.5rem; }
.footer-europe p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: .85rem; }
.footer-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.footer-logos img { display: inline-block; max-height: 48px; opacity: .9; }
.footer-legal { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: .85rem; }
.footer-legal a { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-legal a:hover { color: rgba(255,255,255,.85); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ---- PRELOADER ---- */
.preloader { position: fixed; inset: 0; background: var(--color-text); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .4s, visibility .4s; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,.15); border-top-color: var(--color-accent); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- TILT ---- */
.tilt-card { will-change: transform; transition: transform .15s ease; }
