/* ============================================================
   SetaConnect® — main.css
   Brand: Noir / Jaune-Or / Rouge · Sans-serif moderne
   ============================================================ */

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

:root {
  --black:    #000000;
  --black-s:  #0D0D0D;
  --black-m:  #161616;
  --black-l:  #1E1E1E;
  --yellow:   #F5B731;
  --yellow-d: #E8960A;
  --yellow-xs:#FDE9A8;
  --red:      #E31B1B;
  --red-d:    #B81515;
  --white:    #FFFFFF;
  --gray:     #888888;
  --gray-l:   #BBBBBB;
  --gray-xs:  #2A2A2A;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1140px;
  --side: clamp(1.25rem, 5vw, 4rem);
  --radius: 6px;
  --radius-lg: 12px;
  --tr: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side);
}
section { padding: clamp(4rem, 9vw, 7rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.display-xl { font-family:var(--font-head); font-size:clamp(2.8rem,7vw,5.5rem); font-weight:800; line-height:1.05; letter-spacing:-0.02em; }
.display-lg { font-family:var(--font-head); font-size:clamp(2rem,5vw,3.5rem); font-weight:800; line-height:1.1; letter-spacing:-0.02em; }
.display-md { font-family:var(--font-head); font-size:clamp(1.5rem,3.5vw,2.25rem); font-weight:700; line-height:1.2; }

/* ── RULE ───────────────────────────────────────────────── */
.rule-y { width:48px; height:4px; background:var(--yellow); border-radius:2px; }
.rule-r { width:48px; height:4px; background:var(--red); border-radius:2px; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side);
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,183,49,0.15);
  transition: box-shadow var(--tr);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.01em;
}
.nav-logo-hex {
  width: 22px; height: 22px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-l);
  letter-spacing: 0.04em;
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-lang {
  display: flex;
  gap: 0.35rem;
}
.lang-btn {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(245,183,49,0.3);
  border-radius: 3px;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--tr);
  font-family: var(--font-body);
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-nav {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.25rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  transition: background var(--tr);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--yellow-d); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--tr);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,183,49,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(227,27,27,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow { margin-bottom: 1rem; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title .hl { color: var(--yellow); }
.hero-title .hl-r { color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-l);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hex visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 8px;
  transform: rotate(-10deg);
}
.hex {
  width: 100px;
  height: 115px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem 0.5rem;
  transition: transform var(--tr);
}
.hex:hover { transform: scale(1.05); }
.hex-y { background: var(--yellow); color: var(--black); }
.hex-r { background: var(--red); color: var(--white); }
.hex-yd { background: var(--yellow-d); color: var(--black); }
.hex-dark { background: var(--gray-xs); color: var(--gray-l); }
.hex-empty { background: transparent; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all var(--tr);
  border: 2px solid var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-d);
  border-color: var(--yellow-d);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.25);
  transition: all var(--tr);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all var(--tr);
}
.btn-red:hover { background: var(--red-d); border-color: var(--red-d); }

/* ── SECTION STYLES ─────────────────────────────────────── */
.section-dark { background: var(--black); }
.section-mid  { background: var(--black-m); }
.section-card { background: var(--black-l); }

.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--black-m);
  border: 1px solid rgba(245,183,49,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--tr);
}
.card:hover {
  border-color: rgba(245,183,49,0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.card-accent { border-top: 3px solid var(--yellow); }
.card-red    { border-top: 3px solid var(--red); }

/* Format cards */
.format-card {
  background: var(--black-m);
  border: 1px solid rgba(245,183,49,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--tr);
}
.format-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 20px 50px rgba(245,183,49,0.1);
}
.format-card-header {
  background: var(--yellow);
  padding: 1.5rem 2rem;
}
.format-card-header.red { background: var(--red); }
.format-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.format-card-header.red h3 { color: var(--white); }
.format-card-header .tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.6);
}
.format-card-header.red .tag { color: rgba(255,255,255,0.7); }
.format-card-body { padding: 1.75rem 2rem; }
.format-card-body p { font-size: 0.9rem; color: var(--gray-l); line-height: 1.7; margin-bottom: 1.25rem; }
.format-card-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.format-card-detail:last-of-type { border-bottom: none; }
.format-card-detail span:first-child { color: var(--gray); }
.format-card-detail span:last-child { font-weight: 600; color: var(--yellow); }
.format-card-detail.red-val span:last-child { color: var(--red); }

/* ── NUMBERS ─────────────────────────────────────────────── */
.stat-block {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.03em;
}

/* ── SERVICE ITEM ────────────────────────────────────────── */
.service-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--tr);
}
.service-item:hover {
  border-color: rgba(245,183,49,0.25);
  background: rgba(245,183,49,0.03);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(245,183,49,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.service-icon.red { background: rgba(227,27,27,0.12); }
.service-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.service-item p {
  font-size: 0.875rem;
  color: var(--gray-l);
  line-height: 1.7;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.section-cta {
  background: var(--yellow);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text .eyebrow { color: rgba(0,0,0,0.5); }
.cta-text .display-md { color: var(--black); margin-top: 0.5rem; }
.cta-text p { color: rgba(0,0,0,0.65); margin-top: 0.5rem; font-size: 1rem; }

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  transition: all var(--tr);
  white-space: nowrap;
}
.btn-cta-dark:hover {
  background: transparent;
  color: var(--black);
}

.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all var(--tr);
  white-space: nowrap;
}
.btn-cta-red:hover { background: var(--red-d); border-color: var(--red-d); }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: var(--black);
  padding: 9rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%);
}
.page-header .eyebrow { margin-bottom: 0.75rem; }
.page-header .display-lg { margin-bottom: 1rem; }
.page-header p { color: var(--gray-l); max-width: 540px; font-size: 1.05rem; }

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial {
  background: var(--black-m);
  border: 1px solid rgba(245,183,49,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  position: absolute;
  top: 1rem; left: 1.5rem;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-l);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-y { background: rgba(245,183,49,0.15); color: var(--yellow); border: 1px solid rgba(245,183,49,0.3); }
.badge-r { background: rgba(227,27,27,0.15); color: var(--red); border: 1px solid rgba(227,27,27,0.3); }

/* ── FORM ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-l);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--black-l);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--tr);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--yellow); }
.form-group select option { background: var(--black-l); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black-s);
  border-top: 1px solid rgba(245,183,49,0.1);
  padding: 3.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 1rem;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--tr);
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-bottom .brand-r { color: var(--red); font-weight: 600; }

/* ── PROCESS STEP ────────────────────────────────────────── */
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}
.step-num.red { background: var(--red); color: var(--white); }
.process-step h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.process-step p { font-size: 0.875rem; color: var(--gray-l); line-height: 1.7; }

@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
