/* Base */
:root {
	--bg: #0b1020;
	--card: #121a2f;
	--muted: #0f1528;
	--text: #e9eefc;
	--text-muted: #b7c0dc;
	--primary: #ffc107; /* amber */
	--primary-600: #ffb300; /* darker amber */
	--primary-200: #ffe082; /* light amber */
	--accent: #35c1a9;
	--border: #213055;
	--shadow: 0 10px 30px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	background: var(--bg);
	color: var(--text);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand-text { font-weight: 700; letter-spacing: 0.3px; position: relative; }
.brand-logo {
	width: 32px;
	height: 32px;
	border-radius: 0;
	background: transparent;
	padding: 0;
	box-shadow: none;
	object-fit: contain;
	display: block;
	filter: none;
	mix-blend-mode: normal;
}
.container {
	width: min(1200px, 92%);
	margin: 0 auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	backdrop-filter: saturate(160%) blur(8px);
	background: rgba(11, 16, 32, 0.8);
	border-bottom: 1px solid var(--border);
	z-index: 50;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
nav a { color: var(--text); text-decoration: none; margin-left: 18px; font-size: 0.95rem; }
nav a:hover { color: var(--primary); }
.cta-link { color: var(--accent); font-weight: 600; }

/* Hero */
.hero {
	min-height: 90vh;
	padding: 96px 0 60px;
	display: flex;
	align-items: center; /* vertical centering */
	/* Set your image here: place hero.jpg in the folder or use a URL */
	background:
		linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
		linear-gradient(0deg, rgba(255,193,7,0.10), rgba(255,193,7,0.05)),
		url('assets/hero.jpg');
	background-size: cover;
	background-position: center;
}
.hero .container {
	max-width: 900px;
	background: rgba(18, 26, 47, 0.55);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255,193,7,0.25);
	border-left: 4px solid var(--primary);
	border-radius: 14px;
	padding: 24px 22px;
	box-shadow: var(--shadow);
}
.hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; margin: 0 0 12px; }
.hero h1 { text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero p { color: var(--text-muted); font-size: 1.08rem; max-width: 840px; margin-bottom: 8px; }
.hero-cta { margin-top: 20px; }
/* CTA bar (used in hero and sections) */
.cta-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* Checklist bullets */
.checklist { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.checklist li { display: grid; grid-template-columns: 18px 1fr; align-items: center; column-gap: 10px; }
.checklist li::before { content: "✓"; color: var(--primary); font-weight: 800; line-height: 1; margin-top: 0; }

/* Badges */
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 999px; background: rgba(255,193,7,0.18); color: var(--text); border: 1px solid rgba(255,193,7,0.35); font-size: 0.9rem; }
.badge::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--primary); }

/* Buttons */
.btn { display: inline-block; padding: 12px 20px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1rem; letter-spacing: 0.02em; transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); filter: brightness(0.98); }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.btn-primary { background: var(--primary); color: #1a1200; border: 1px solid var(--primary-600); box-shadow: 0 6px 16px rgba(255,193,7,0.22); }
.btn-primary:hover { background: var(--primary-600); color: #1a1200; box-shadow: 0 10px 26px rgba(255,193,7,0.28); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-secondary:hover { border-color: var(--text); background: rgba(233,238,252,0.12); }

/* Sections */
.section { padding: 52px 0; scroll-margin-top: 80px; }
.section h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0 0 18px; position: relative; text-align: left; }
.section h2::after { content: ""; display: block; width: 56px; height: 3px; border-radius: 3px; background: var(--primary); margin-top: 8px; }
.section p { color: var(--text-muted); }
.muted { background: var(--muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Cards & Grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--shadow);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--text-muted); }
.card h3 { text-align: left; }
.card:hover { transform: translateY(-2px); border-color: rgba(255,193,7,0.4); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }

/* Benefits */
.benefits { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.benefits li { background: var(--card); border: 1px solid var(--border); padding: 12px 14px; border-radius: 12px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease; }
.step:hover { transform: translateY(-2px); border-color: rgba(255,193,7,0.35); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.step-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; background: var(--primary); color: #1a1200; font-weight: 800; margin-bottom: 10px; }
.step h3 { margin: 6px 0 10px; font-size: 1.1rem; text-align: left; }
.step p { margin: 0; color: var(--text-muted); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.price-card h3 { margin: 0 0 6px; }
.price { font-size: 1.4rem; font-weight: 700; color: var(--accent); margin: 4px 0 10px; }
.price-card ul { margin: 0 0 12px; padding-left: 18px; color: var(--text-muted); }
.price-card.highlight { border-color: var(--accent); box-shadow: 0 10px 30px rgba(53,193,169,0.25); }

/* Contact */
.contact-form { display: grid; gap: 14px; max-width: 720px; }
.form-row { display: grid; gap: 6px; }
label { font-size: 0.9rem; color: var(--text-muted); }
input, textarea { background: #0c1326; border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 10px 12px; }
input::placeholder, textarea::placeholder { color: #8fa0c7; }
.note { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

/* Utilities */
.stack > * + * { margin-top: clamp(12px, 2vw, 20px); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 26px 0; background: rgba(11,16,32,0.6); }
.site-footer p { margin: 0; color: var(--text-muted); }
.site-footer a { color: var(--primary); text-decoration: none; }
.site-footer a:hover { color: var(--primary-600); }
.site-footer a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* Centering for Offer and Final CTA sections */
#offre .card { width: clamp(320px, 60%, 760px); max-width: 100%; margin: 0; text-align: left; }
#offre .cta-bar { justify-content: flex-start; }
.final-cta .container { text-align: left; }
.final-cta .cta-bar { justify-content: flex-start; }
.final-cta .checklist { width: auto; margin: 14px 0 0; }
/* Ensure checklist in centered Offer card stays left-aligned and icons centered */
#offre .checklist { margin: 14px 0 0; }

/* Final CTA + Tagline */
.tagline { margin: 0; padding: 22px 24px; background: rgba(18,26,47,0.55); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 14px; box-shadow: var(--shadow); text-align: center; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.35; font-weight: 600; }

/* Key points list */
.keypoints { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.keypoints li { background: var(--card); border: 1px solid var(--border); padding: 12px 14px; border-radius: 12px; }
.keypoints strong { color: var(--primary); }

/* Responsive */
@media (max-width: 980px) {
	.grid, .steps, .pricing { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.grid, .steps, .pricing { grid-template-columns: 1fr; }
	nav { display: none; }
	.hero { padding-top: 56px; min-height: 80vh; }
	.hero .container { padding: 18px; }
	.hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .cta-bar { gap: 10px; }
    .checklist { gap: 6px; }
    #offre .card { width: 100%; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Subtle selection styling */
::selection { background: rgba(255,193,7,0.25); color: #000; }
