:root {
	--navy: #071343;
	--text: #10183f;
	--muted: #5d668a;
	--line: #e8ebf5;
	--purple: #7446ff;
	--cyan: #23c7d9;
	--blue: #3483ff;
	--bg: #f8faff;
	--gradient: linear-gradient(135deg, var(--purple), var(--blue) 55%, var(--cyan));
	--radius: 22px;
	--shadow: 0 24px 80px rgba(20, 30, 80, .12);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	background: #fff;
	color: var(--text)
}

a {
	text-decoration: none;
	color: inherit
}

.site-header {
	height: 92px;
	padding: 0 7vw;
	display: flex;
	align-items: center;
	gap: 42px;
	position: fixed;
	inset: 0 0 auto;
	z-index: 20;
	background: rgba(255, 255, 255, .76);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(232, 235, 245, .6)
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gradient);
	color: white;
	font-weight: 900;
	font-size: 25px
}

.brand strong {
	letter-spacing: 7px;
	font-size: 22px
}

.brand small {
	display: block;
	letter-spacing: 8px;
	font-size: 9px;
	font-weight: 900;
	color: var(--muted)
}

.nav {
	margin-left: auto;
	display: flex;
	gap: 42px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 900;
	color: var(--navy)
}

.nav a:hover {
	color: var(--purple)
}

.menu-toggle {
	display: none
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 16px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 900;
	border: 1px solid transparent
}

.btn-primary {
	background: var(--gradient);
	color: white
}

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

.btn-outline-black {
	border-color: black;
	color: black;
	background: white
}

.btn-light {
	background: rgba(255, 255, 255, .15);
	border-color: rgba(255, 255, 255, .7);
	color: white
}

.hero {
	min-height: 760px;
	padding: 90px 7vw 70px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	align-items: center;
	position: relative;
	overflow: hidden
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #fff 0 38%, rgba(255, 255, 255, .72) 50%, transparent 70%), radial-gradient(circle at 76% 20%, #ffe3bd, transparent 24%), linear-gradient(135deg, #ecf7ff, #f7edff);
	z-index: -2
}

.hero-content {
	max-width: 550px
}

.eyebrow,
.label {
	color: var(--purple);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em
}

.hero h1 {
	font-size: clamp(44px, 5.25vw, 74px);
	line-height: .98;
	margin: 20px 0 28px;
	color: var(--navy);
	letter-spacing: -.06em
}

.hero h1 span {
	background: var(--gradient);
	-webkit-background-clip: text;
	color: transparent
}

.hero p,
.section-copy p,
.news-card p {
	color: var(--muted);
	font-weight: 500;
	line-height: 1.8
}

.actions {
	display: flex;
	gap: 18px;
	margin-top: 34px
}

.hero-visual {
	position: relative;
	min-height: 590px;
	width: calc(100% + 40px);
    margin-right: -110px;
}

.asset-placeholder {
	border: 1px dashed #b8c0dd;
	background: linear-gradient(135deg, #eef4ff, #fbf7ff);
	color: #8a92b2;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 800;
	border-radius: var(--radius);
	min-height: 180px
}

.hero-img {
	width: 100%;
	height: 600px;
	background-image: url("assets/hero-visual.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
    border: none;
    box-shadow: none;
	
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 50%
    );

    mask-image: linear-gradient(
        to right,
        transparent 5%,
        black 50%
    );
}

.icon-fiber {
    background: linear-gradient(135deg, #7c4dff, #4fc3f7);
}

.icon-peering {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.icon-datacenter {
    background: linear-gradient(135deg, #00d26a, #00a651);
}

.icon-redundancy {
    background: linear-gradient(135deg, #ff7b00, #ff3d00);
}

.floating-card {
	position: absolute;
	right: 2vw;
	top: 220px;
	width: 245px;
	padding: 26px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--shadow)
}

.floating-card div {
	display: flex;
	gap: 16px;
	align-items: center;
	margin: 17px 0;
	font-size: 13px;
	font-weight: 800
}

.floating-card i {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
	font-size: 16px;
    line-height: 1;
    color: white;
    flex-shrink: 0;
}

.trusted {
	padding: 24px 7vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-block: 1px solid var(--line);
	color: var(--navy)
}

.trusted span {
	color: var(--muted);
	font-size: 13px
}

.trusted strong {
	font-size: 18px
}

.section-grid {
	padding: 70px 7vw;
	display: grid;
	grid-template-columns: .85fr 1.05fr .58fr;
	gap: 45px;
	align-items: center;
	background: var(--bg)
}

h2 {
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.06;
	margin: 12px 0 22px;
	color: var(--navy);
	letter-spacing: -.04em
}

.map-card {
	position: relative;
	min-height: 430px
}

.map-card .map-img {
	position: absolute;
	height: 500px;
	inset: 0;
	background-image: url("assets/map-france.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
    border: none;
    box-shadow: none;
	opacity: .9
}

.map-card svg {
	position: absolute;
	inset: 20px;
	width: 90%;
	height: 90%;
	overflow: visible
}

.map-card path {
	fill: none;
	stroke: black;
	stroke-width: 4
}

.map-card circle {
	fill: #fff;
	stroke: #6844ff;
	stroke-width: 5
}

.map-card text {
	fill: #000;
	font-weight: 900;
	font-size: 22px
}

.map-card .map-card-circle-yellow circle {
	fill: yellow;
	stroke: #6844ff;
	stroke-width: 5
}

.map-card .map-card-circle-green circle {
	fill: green;
	stroke: #6844ff;
	stroke-width: 5
}

.presence-card {
	padding: 32px;
	border-radius: 20px;
	background: white;
	box-shadow: var(--shadow)
}

.presence-card li {
	list-style: none;
	margin: 20px 0;
	font-weight: 800
}

.presence-card li:before {
	content: "⌖";
	color: var(--purple);
	margin-right: 12px
}

.presence-card ul {
	padding: 0;
	margin: 20px 0 30px
}

.why {
	padding: 65px 7vw
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.cards article {
	padding: 36px 28px;
	border: 1px solid var(--line);
	border-radius: 14px;
	text-align: center;
	background: white
}

.cards span {
	font-size: 44px
}

.cards p {
	color: var(--muted);
	line-height: 1.7
}

.vision {
	margin: 0 7vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border-radius: 24px;
	background: var(--gradient);
	color: white
}

.vision>div:first-child {
	padding: 54px
}

.vision h2 {
	color: white
}

.vision li {
	margin: 14px 0
}

.vision-img {
	background-image: url("assets/as197676.png");
	background-size: cover;
		background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
    border: none;
    box-shadow: none;
	min-height: 390px;
	color: white
}

.stats {
	margin: 0 7vw;
	padding: 55px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	border-radius: 18px;
	background: linear-gradient(135deg, #09104a, #10165f);
	color: white
}

.stats b {
	display: block;
	font-size: 30px
}

.stats span {
	font-size: 13px;
	line-height: 1.6
}

.news {
	padding: 70px 7vw
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px
}

.news-card,
.connect {
	padding: 22px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(20, 30, 80, .09)
}

.news-card .asset-placeholder {
	min-height: 150px;
	margin: -22px -22px 20px;
	border-radius: 14px 14px 0 0
}

.news-card small {
	color: var(--purple);
	font-weight: 900;
	text-transform: uppercase
}

.news-card a {
	color: var(--blue);
	font-weight: 900;
	font-size: 12px
}

.connect {
	background: var(--gradient);
	color: white;
	padding: 36px
}

.footer {
	padding: 45px 7vw;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 30px;
	background: #f6f8ff;
	color: var(--muted)
}

.footer .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 16px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 900;
	border: 1px solid transparent
}	

.footer .btn-outline {
	border-color: var(--purple);
	color: var(--purple);
	background: white
}

.footer a {
	display: block;
	margin: 10px 0
}

.footer strong {
	color: var(--navy)
}

@media(max-width:980px) {
	.site-header {
		padding: 0 24px
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		border: 0;
		background: var(--navy);
		color: white;
		border-radius: 10px;
		padding: 10px 13px
	}

	.nav,
	.header-cta {
		display: none
	}

	.nav.open {
		display: flex;
		position: absolute;
		top: 92px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: white;
		padding: 24px
	}

	.hero,
	.section-grid,
	.vision {
		grid-template-columns: 1fr
	}

	.hero {
		padding: 125px 24px 45px
	}

	.hero-visual {
		min-height: 420px
	}

	.hero-img {
		inset: 0;
		border-radius: 28px
	}

	.floating-card {
		position: relative;
		right: auto;
		top: 170px;
		margin: auto
	}

	.trusted,
	.cards,
	.stats,
	.news-grid,
	.footer {
		grid-template-columns: 1fr;
		display: grid
	}

	.trusted {
		align-items: start
	}

	.section-grid,
	.why,
	.news {
		padding-left: 24px;
		padding-right: 24px
	}

	.vision,
	.stats {
		margin-left: 24px;
		margin-right: 24px
	}

	.actions {
		flex-wrap: wrap
	}
}

/* ===== Pages internes NODREX ===== */
.page-hero {
	min-height: 560px;
	padding: 150px 7vw 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8faff 0%, #eef4ff 48%, #f9ecff 100%);
}
.page-hero:after {
	content: "";
	position: absolute;
	right: -120px;
	top: 110px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(116,70,255,.23), rgba(35,199,217,.08) 55%, transparent 70%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
	font-size: clamp(42px, 5vw, 72px);
	line-height: .98;
	margin: 18px 0 24px;
	letter-spacing: -.06em;
	color: var(--navy);
}
.page-hero p { color: var(--muted); font-weight: 500; line-height: 1.8; max-width: 720px; }
.page-section { padding: 76px 7vw; }
.page-section > h2 { max-width: 860px; }
.network-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.network-panel article, .pop-card, .diagram-card, .quote-card, .incident-card, .lg-grid article, .ops-grid article, .values-grid article, .contact-grid article {
	background: rgba(255,255,255,.92);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(20, 30, 80, .08);
}
.network-panel article { padding: 28px; }
.network-panel b { display:block; color: var(--navy); font-size: 28px; margin-bottom: 10px; }
.network-panel span { color: var(--muted); font-weight: 700; }
.timeline-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pop-card { padding: 26px; }
.pop-card small { color: var(--purple); text-transform: uppercase; font-weight: 900; }
.pop-card h3 { color: var(--navy); font-size: 25px; margin: 14px 0; }
.pop-card p, .pop-card li { color: var(--muted); line-height: 1.65; }
.pop-card ul { padding-left: 18px; }
.pop-card.active { border-top: 5px solid #1abf70; }
.pop-card.planned { border-top: 5px solid #ffc247; }
.blueprint, .split-section {
	margin: 0 7vw;
	padding: 58px;
	border-radius: 24px;
	background: linear-gradient(135deg, #09104a, #10165f);
	color: white;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.blueprint h2, .split-section h2 { color: white; }
.blueprint p, .split-section p { color: rgba(255,255,255,.78); line-height: 1.8; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spec-grid article { padding: 22px; border-radius: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.spec-grid strong { display: block; font-size: 20px; margin-bottom: 8px; }
.spec-grid span { color: rgba(255,255,255,.75); }
.feature-cards article { text-align: left; }
.diagram-card { padding: 34px; display: grid; gap: 12px; background: white; color: var(--navy); }
.diagram-card div { padding: 18px 20px; border-radius: 14px; background: #f6f8ff; font-weight: 900; }
.diagram-card span { text-align: center; color: var(--purple); font-weight: 900; font-size: 24px; }
.ops-grid, .values-grid, .contact-grid, .lg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ops-grid article, .values-grid article, .contact-grid article, .lg-grid article { padding: 30px; }
.values-grid { grid-template-columns: repeat(4, 1fr); }
.lg-grid i { font-size: 32px; color: var(--purple); }
.lg-grid code { display: block; margin-top: 20px; padding: 14px; border-radius: 12px; background: #071343; color: #fff; overflow-x: auto; }
.status-banner {
	margin: 0 7vw 80px;
	padding: 34px;
	border-radius: 22px;
	background: var(--gradient);
	color: white;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
}
.status-banner div { display: grid; gap: 6px; min-width: 220px; }
.status-banner strong { font-size: 34px; }
.status-list { display: grid; gap: 16px; }
.status-list article { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 12px 40px rgba(20,30,80,.06); }
.status-list h3 { margin: 0 0 6px; color: var(--navy); }
.status-list p { margin: 0; color: var(--muted); }
.status-list strong { color: var(--navy); }
.dot { width: 16px; height: 16px; border-radius: 999px; display: inline-block; }
.dot.green { background: #1abf70; box-shadow: 0 0 0 8px rgba(26,191,112,.12); }
.dot.yellow { background: #ffc247; box-shadow: 0 0 0 8px rgba(255,194,71,.16); }
.incident-card { padding: 32px; }
.quote-card { padding: 46px; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.22); color: white; }
.quote-card p { font-size: 34px; font-weight: 900; color: white; }
.contact-grid a { color: var(--purple); font-weight: 900; }
@media(max-width:980px) {
	.page-hero, .network-panel, .timeline-grid, .blueprint, .split-section, .ops-grid, .values-grid, .contact-grid, .lg-grid, .spec-grid { grid-template-columns: 1fr; }
	.page-hero, .page-section { padding-left: 24px; padding-right: 24px; }
	.blueprint, .split-section, .status-banner { margin-left: 24px; margin-right: 24px; padding: 30px; }
	.status-banner { display: block; }
	.status-list article { grid-template-columns: auto 1fr; }
	.status-list strong { grid-column: 2; }
}


/* ===== Pages légales ===== */
.legal-hero { min-height: 520px; }
.legal-summary article b { font-size: 23px; word-break: break-word; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: start; background: var(--bg); }
.legal-toc { position: sticky; top: 120px; padding: 26px; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: 0 16px 48px rgba(20, 30, 80, .08); }
.legal-toc strong { display: block; color: var(--navy); margin-bottom: 16px; font-size: 18px; }
.legal-toc a { display: block; margin: 12px 0; color: var(--muted); font-weight: 800; font-size: 13px; }
.legal-toc a:hover { color: var(--purple); }
.legal-content { display: grid; gap: 22px; }
.legal-card { padding: 34px; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: 0 16px 48px rgba(20, 30, 80, .08); }
.legal-card h2 { font-size: clamp(28px, 3vw, 42px); margin-top: 0; }
.legal-card h3 { color: var(--navy); margin-top: 0; font-size: 24px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.8; font-weight: 500; }
.legal-card a { color: var(--purple); font-weight: 900; }
.legal-warning { border-left: 5px solid #ffc247; }
.legal-table { display: grid; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.legal-table div { display: grid; grid-template-columns: 1fr 1fr; }
.legal-table div:first-child { background: #071343; color: white; }
.legal-table strong, .legal-table span { padding: 16px; border-bottom: 1px solid var(--line); line-height: 1.6; }
.legal-table span { color: var(--muted); }
.footer small { color: var(--muted); font-weight: 800; }
.footer-legal { grid-template-columns: 1.3fr 1.15fr 1fr 1fr 1fr; }
@media(max-width:980px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-table div { grid-template-columns: 1fr; }
  .footer-legal { grid-template-columns: 1fr; }
}

/* ===== Services NODREX ===== */
.services-preview {
	padding: 76px 7vw;
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: 42px;
	align-items: center;
	background: #fff;
}
.services-preview-grid, .service-priority-grid, .service-grid, .services-panel {
	display: grid;
	gap: 18px;
}
.services-preview-grid { grid-template-columns: repeat(2, 1fr); }
.services-preview-grid article, .service-priority-grid article, .service-grid article, .services-panel article {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: white;
	box-shadow: 0 16px 48px rgba(20, 30, 80, .08);
}
.services-preview-grid span, .service-grid i {
	font-size: 38px;
	font-style: normal;
}
.services-preview-grid h3, .service-priority-grid h3, .service-grid h3, .services-panel strong {
	color: var(--navy);
}
.services-preview-grid p, .service-priority-grid p, .service-grid li, .category-title p, .services-panel span {
	color: var(--muted);
	line-height: 1.75;
}
.services-panel { grid-template-columns: repeat(2, 1fr); }
.services-panel strong { display: block; font-size: 22px; margin-bottom: 10px; }
.service-priority-grid { grid-template-columns: repeat(4, 1fr); }
.service-priority-grid article { border-top: 5px solid var(--purple); }
.service-priority-grid small { color: var(--purple); font-weight: 900; letter-spacing: .08em; }
.service-priority-grid a { color: var(--blue); font-weight: 900; font-size: 13px; }
.service-category.alt { background: var(--bg); }
.category-title { max-width: 850px; margin-bottom: 30px; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid ul { padding-left: 18px; }
.service-grid li { margin: 10px 0; font-weight: 600; }
.services-cta { margin-bottom: 76px; }
.footer-legal { grid-template-columns: 1.25fr 1.1fr repeat(4, 1fr); }
@media(max-width:980px) {
	.services-preview, .services-preview-grid, .services-panel, .service-priority-grid, .service-grid { grid-template-columns: 1fr; }
	.services-preview { padding-left: 24px; padding-right: 24px; }
}
.nav { gap: 30px; }
@media(max-width:1200px) { .nav { gap: 20px; } .site-header { gap: 24px; } }

/* ===== Ajouts conversion / SEO ===== */
.compact-section { padding-top: 54px; padding-bottom: 54px; }
.pricing-grid, .usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-grid article, .usecase-grid article, .offer-price, .contact-card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: 0 16px 48px rgba(20,30,80,.08); }
.pricing-grid small, .offer-price small { color: var(--purple); text-transform: uppercase; font-weight: 900; letter-spacing: .06em; }
.pricing-grid h3, .usecase-grid h3, .contact-card h3 { color: var(--navy); font-size: 24px; }
.pricing-grid b, .offer-price b { display:block; font-size: clamp(30px, 4vw, 52px); color: var(--navy); margin: 14px 0; letter-spacing: -.04em; }
.pricing-grid p, .usecase-grid p, .offer-price p, .contact-card p { color: var(--muted); line-height: 1.75; }
.pricing-grid a, .text-link { color: var(--black); font-weight: 900; }
.usecase-grid span { font-size: 36px; }
.offer-price { position: relative; z-index: 1; }
.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1050px; }
.quote-form label { color: var(--navy); font-weight: 900; display: grid; gap: 8px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 15px 16px; font: inherit; color: var(--text); background: white; }
.quote-form .full { grid-column: 1 / -1; }
.quote-form button { width: fit-content; }
.nav a:nth-child(n+4) { }
@media(max-width:1200px){ .pricing-grid, .usecase-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:980px){ .pricing-grid, .usecase-grid, .quote-form { grid-template-columns: 1fr; } .quote-form .full { grid-column: auto; } .header-cta { display:none; } }

.form-note{grid-column:1/-1;margin:0;color:var(--muted);font-size:.9rem}.form-note strong{color:var(--text)}
