/* =========================================================
   TRIBEC-IT — Coming Soon (ONE PAGE / ONE CSS)
   BASIC ONLY: no diagonals, no svg lines, no clickable UI
   ========================================================= */

:root {
  --bg-black: #0b0d12;

  /* 2 green gradients (pro / particuliers) */
  --pro: #1aa86a;
  --pro-deep: #128a57;
  --part: #43b96a;
  --part-deep: #2c9f57;

  /* neon underline + fluo badge */
  --neon-pink: #ff4bd8;
  --neon-violet: #8a4dff;


  --link-fluo: linear-gradient(90deg,
      #4fdcff,
      /* cyan fluo */
      #3aa9ff,
      /* electric blue */
      #7b5cff
      /* subtle violet edge */
    );

  --text: #0f172a;
  --muted: rgba(255, 255, 255, .72);
  --muted-dark: rgba(15, 23, 42, .72);

  /* Default */
  --icon-accent: #4fdcff;

  /* Pro section */
  .section-pro {
    --icon-accent: #4fdcff;
  }

  /* Particulier section (optioneel) */
  .section-part {
    --icon-accent: #4fdcff;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

/* containers */
.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(960px, calc(100% - 2rem));
}

/* header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.header-inner {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.brand {
  text-align: center;
  line-height: 1.2;
}

.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-tagline {
  display: block;
  font-size: .95rem;
  color: rgba(0, 0, 0, .55);
  margin-top: .25rem;
}

/* hero */
.hero {
  padding: 4rem 0;
}

.hero-black {
  background: var(--bg-black);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0;
  }
}

.kicker {
  margin: 0 0 .75rem 0;
  color: rgba(255, 255, 255, .70);
  font-size: 1rem;
}

.coming-soon-badge {
  display: inline-block;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .55rem .95rem;
  border-radius: 999px;
  color: #00ffcc;
  border: 1px solid rgba(0, 255, 204, .55);
  background: rgba(0, 255, 204, .10);
  box-shadow: 0 0 14px rgba(0, 255, 204, .22);
  margin-bottom: 1.15rem;
}

.hero h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  letter-spacing: -0.02em;
}

.hero h2 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 650;
  color: rgba(255, 255, 255, .88);
}

.muted {
  color: rgba(255, 255, 255, .72);
  margin: 0 0 1rem 0;
}

.small {
  font-size: .95rem;
}

.hero-media .media-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.media-placeholder {
  aspect-ratio: 16/9;
  display: grid;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.media-title {
  font-weight: 900;
  letter-spacing: .08em;
}

.media-sub {
  margin-top: .5rem;
  color: rgba(255, 255, 255, .70);
  font-size: .95rem;
}

/* sections */
.section-grad {
  padding: 3.5rem 0;
  color: #fff;
}

.section-pro {
  background: linear-gradient(180deg, var(--pro) 0%, var(--pro-deep) 100%);
}

.section-part {
  background: linear-gradient(180deg, var(--part) 0%, var(--part-deep) 100%);
}

.section-white {
  padding: 3.25rem 0;
  background: #fff;
  color: var(--text);
}

.section-white p {
  color: var(--muted-dark);
  line-height: 1.6;
}

.lead-soft {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.6;
  margin-top: .75rem;
}

/* Neon underline for H2 */
.h2-neon {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  padding-bottom: .35rem;
  position: relative;
  font-size: 1.35rem;
}

.h2-neon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
}

/* headings inside sections */
.section-grad h3,
.section-white h3 {
  margin: 1.25rem 0 .5rem 0;
  font-size: 1.05rem;
}

/* cards */
.cards {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  padding: 1.1rem 1.15rem;
}

.section-white .card {
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
}

.card h3 {
  margin: 0 0 .5rem 0;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, .80);
  line-height: 1.55;
}

.section-white .card p {
  color: var(--muted-dark);
}

/* mono-ish list line */
.mono-list {
  letter-spacing: .01em;
}

/* Coordonnées */
.coord-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
  padding: 1.25rem 1.25rem;
  background: #fff;
}

.coord-card p {
  margin: 0 0 .6rem 0;
  color: rgba(15, 23, 42, .86);
}

.coord-card p:last-child {
  margin-bottom: 0;
}

.coord-card .muted {
  color: rgba(15, 23, 42, .62);
}

/* footer */
.site-footer {
  background: var(--bg-black);
  color: #fff;
}

.footer-inner {
  padding: 2.75rem 0;
  text-align: center;
}

.footer-title {
  margin: 0 0 .4rem 0;
  font-weight: 800;
}

.footer-sub {
  margin: 0;
  color: rgba(255, 255, 255, .70);
}

/* HERO image */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* HERO anchor link (simple, non-aggressive) */
.hero-anchor {
  margin-top: 1.25rem;
}

.hero-anchor a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-weight: 600;
}

/* ZONE INTERVENTION italics */

#zone-intervention .muted {
  font-style: italic;
}

/* Communes list with dots */

.communes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
}

.communes-list li::after {
  content: "·";
  margin-left: .6rem;
}

.communes-list li:last-child::after {
  content: "";
}

/* Muted styling for communes list (Zone d’intervention) */
.communes-list {
  color: var(--muted-dark);
}

.section-grad .communes-list {
  color: rgba(255, 255, 255, .72);
}

/* Spacing after communes list (Zone d’intervention) */
.communes-list {
  margin-bottom: 1rem;
}

/* Card paragraph spacing */

.card p {
  margin: 0 0 .75rem 0;
}

.card p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   TRIBEC-IT — Clean links with fluo hover underline
   ========================================================= */

a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* underline (hidden by default) */
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--link-fluo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

/* hover / focus */
a:hover::after,
a:focus-visible::after {
  transform: scaleX(1);
}

/* =========================================================
   TRIBEC-IT — Cards with left icon layout
   ========================================================= */

.card-icon {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.card-icon-left {
  flex-shrink: 0;
  font-size: 2rem;
  /* grootte van het icoon */
  line-height: 1;
  color: #4fdcff;
  /* fluo blue (PRO) */
  opacity: 0.9;
  margin-top: .15rem;
  /* optische uitlijning */
}

/* Fixed icon column so text aligns perfectly across cards */
.card-icon-left {
  width: 2.6rem;
  /* vaste kolom-breedte */
  flex: 0 0 2.6rem;
  display: flex;
  justify-content: center;
  /* icoon gecentreerd */
  align-items: flex-start;
  margin-top: .15rem;
  line-height: 1;
  font-size: 2rem;
  color: var(--icon-accent, #4fdcff);
  opacity: .9;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: .35rem;
}

.card-content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   TRIBEC-IT — Credit d'Impôt mention styling
   ========================================================= */

.credit-mention{
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .15rem 0 .6rem;
  font-size: .85em;
  font-weight: 500;
  color: #4fdcff; /* fluo blauw */
}

.credit-icon{
  font-size: .95em;
  opacity: .9;
}

/* =========================================================
   TRIBEC-IT — Inline SVG Digger styling
   ========================================================= */

.icon-inline{
  display:inline-flex;
  align-items:center;
  margin:0 .15em;
  vertical-align:middle;
}

/* alleen jouw icoon */
.icon-inline .icon-digger{
  width:1.2em;
  height:1.2em;
  stroke:currentColor;
  fill:none;
  opacity:.85;
}


